mdi子窗体最大化窗口状态-边界样式
本文关键字:边界 样式 状态 窗口 窗体 最大化 mdi | 更新日期: 2023-09-27 18:12:08
我想用最大化的窗口状态在父窗体中打开一个子窗体。
我不想让用户最小化/最大化/关闭子窗口,
所以我设置BorderStyle = None
为子窗口,也设置MaximizeBox
和MinimizeBox
属性为False
,也设置WindowState = Maximized
但是当我运行程序时,它显示了所有的Minimize
, Restore
和Close
按钮的childForm在最大化状态。
但是如果我点击Restore Down
那么这个childForm就没有边框了。现在也没有办法将它恢复到最大化状态了。
我错过了什么吗?这是臭虫吗?让它正常工作的正确方法是什么?
试试这个
protected override void WndProc(ref Message m)
{
const int WM_SYSCOMMAND = 0x0112;
const int SC_MOVE = 0xf010;
switch (m.Msg)
{
case WM_SYSCOMMAND:
int command = m.WParam.ToInt32() & 0xfff0;
if (command == SC_MOVE)
return;
break;
}
base.WndProc(ref m);
}
您可以创建自己的表单(自定义表单),然后将自定义表单继承到mdi子表单
你必须把下面的代码放在"custom Form"
public partial class BaseForm : Form
{
public BaseForm()
{
InitializeComponent();
StartPosition = FormStartPosition.WindowsDefaultLocation;
MaximizeBox = false;
Width = 806;
//Width = 850;
//Height = 760;
Height = 730;
//Width = 790;
//Height = 617;
}
//[DllImport("user32.dll")]
//[return: MarshalAs(UnmanagedType.Bool)]
//private static extern bool ShowScrollBar(IntPtr hWnd, int wBar, bool bShow);
//private enum ScrollBarDirection { SB_HORZ = 0, SB_VERT = 1, SB_CTL = 2, SB_BOTH = 3 }
protected override void WndProc(ref Message m)
{
const int WM_SYSCOMMAND = 0x0112;
const int SC_MOVE = 0xF010;
//ShowScrollBar(this.Handle, (int)ScrollBarDirection.SB_BOTH, false);
switch (m.Msg)
{
case WM_SYSCOMMAND:
int command = m.WParam.ToInt32() & 0xfff0;
if (command == SC_MOVE)
return;
break;
}
base.WndProc(ref m);
}
}
您必须并且应该将您的mdi子窗体minimum size to '0'
和size to Width = 806; Height = 730;
不要设置为最大化,只需设置MdiParent的宽度和高度…
Height = this.Height;
Width = this.Width;
。宽度应为父窗体
希望这有助于,如果它没有。给我发邮件吧
beanlovin@gmail.com
Form1 fr = new Form1();
fr.MdiParent = this; //set form's parent to Mdiform
fr.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; //set form without maximize,minimize and close button
fr.Dock = DockStyle.Fill; //set form's dock property to fill
fr.Show();