경계선 없이 크기 조절이 가능한 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>
이 코드를 사용하면 오른쪽 하단 핸들과 시뮬레이션된 제목 표시줄을 드래그하여 크기를 조정할 수 있는 테두리 없는 양식을 만들 수 있습니다.
위 내용은 Borderless WinForms의 크기를 조정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!