크기 조정이 가능한 Borderless WinForm 만들기: 전체 가이드
Windows Forms의 모양을 사용자 정의할 때 기본 테두리를 제거하고 크기 조정을 허용할 수 있습니다. "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의 이점을 누리고 크기를 쉽게 조정할 수 있습니다.
위 내용은 Borderless WinForm의 크기를 조정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!