處理無邊框窗體的調整大小
行動無邊框 Windows 窗體很簡單,但調整這類窗體的大小卻是獨特的挑戰。透過將“FormBorderStyle”屬性設為“None”,預設邊框消失,從而無法調整大小。
解:
為了克服這個問題,在窗體的右下角使用自訂繪製的控制柄,模擬調整大小的句柄。此外,實作「WndProc」方法以攔截「WM_NCHITTEST」訊息並確定遊標相對於窗體的位置。如果遊標位於模擬的標題列或控制柄內,則相應地更新「m.Result」值。
以下是一個範例程式碼片段:
<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>
透過這些修改,您的無邊框窗體現在可以輕鬆移動和調整大小了。
以上是如何調整無邊框 Windows 窗體的大小?的詳細內容。更多資訊請關注PHP中文網其他相關文章!