创建无边框可调整大小的WinForms窗体
在WinForms中,创建无边框且可调整大小的窗体并非易事。然而,只需少量修改,即可实现无边框和可调整大小的功能。
要禁用默认的Windows边框,需将"FormBorderStyle"属性设置为"None"。但这也会移除调整窗体大小的功能。为此,需要进行代码调整。
以下代码示例定义了用于绘制调整大小手柄和模拟标题栏的自定义处理程序,同时重写"WndProc"以处理WM_NCHITTEST消息:
<code class="language-c#">public partial class Form1 : Form { public Form1() { InitializeComponent(); this.FormBorderStyle = FormBorderStyle.None; this.DoubleBuffered = true; this.SetStyle(ControlStyles.ResizeRedraw, true); } private const int cGrip = 16; // 手柄大小 private const int cCaption = 32; // 标题栏高度 protected override void OnPaint(PaintEventArgs e) { // 绘制手柄 Rectangle rc = new Rectangle(this.ClientSize.Width - cGrip, this.ClientSize.Height - cGrip, cGrip, cGrip); ControlPaint.DrawSizeGrip(e.Graphics, this.BackColor, rc); // 绘制标题栏 rc = new Rectangle(0, 0, this.ClientSize.Width, cCaption); e.Graphics.FillRectangle(Brushes.DarkBlue, rc); } protected override void WndProc(ref Message m) { if (m.Msg == 0x84) // WM_NCHITTEST { Point pos = new Point(m.LParam.ToInt32()); pos = this.PointToClient(pos); if (pos.X >= this.ClientSize.Width - cGrip && pos.Y >= this.ClientSize.Height - cGrip) { m.Result = (IntPtr)17; // HTBOTTOMRIGHT return; } } base.WndProc(ref m); } }</code>
通过这段代码,您可以创建一个无边框窗体,仍然可以通过拖动右下角的手柄和模拟的标题栏来调整其大小。
以上是如何使无边框 WinForms 调整大小?的详细内容。更多信息请关注PHP中文网其他相关文章!