用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 关注
- 684 浏览
添加回答
举报
0/150
提交
取消