建立可調整大小的無邊框 WinForm:完整指南
在自訂 Windows 窗體外觀時,您可能需要移除預設邊框並允許調整大小。雖然 "FormBorderStyle" 屬性允許隱藏邊框,但它也停用了調整大小功能。
為了解決這個問題,請考慮以下自訂程式碼,它允許在沒有邊框的情況下進行移動和調整大小:
<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>
此程式碼包含以下關鍵元素:
透過實作此程式碼,您現在可以享受無邊框 WinForm 的好處,並且可以輕鬆調整其大小。
以上是如何調整無邊框 WinForm 的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!