用C#為Windows窗體創建向導我是在C#.NET中創建Windows窗體應用程序向導的新手。所以我不知道巫師的創造。請給我一些關于創建多個向導的想法。你好,拉維
3 回答
慕碼人2483693
TA貢獻1860條經驗 獲得超9個贊
using System;using System.Windows.Forms;class WizardPages : TabControl {
protected override void WndProc(ref Message m) {
// Hide tabs by trapping the TCM_ADJUSTRECT message
if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
else base.WndProc(ref m);
}}- 3 回答
- 0 關注
- 736 瀏覽
添加回答
舉報
0/150
提交
取消
