枠なしのサイズ変更可能な WinForms フォームを作成する
WinForms でボーダーレスでサイズ変更可能なフォームを作成するのは簡単ではありません。ただし、少し修正するだけで、フチなしにしたり、サイズを変更したりすることができます。
デフォルトの Windows 境界線を無効にするには、「FormBorderStyle」プロパティを「None」に設定します。ただし、これによりフォームのサイズを変更する機能も削除されます。これを行うには、コードの調整が必要です。
次のコード例は、Wm_NCHITTEST メッセージを処理するために「WndProc」をオーバーライドしながら、サイズ変更ハンドルを描画し、タイトル バーをシミュレートするためのカスタム ハンドラーを定義します。
<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 中国語 Web サイトの他の関連記事を参照してください。