C\#Winform 은 창 전 체 를 끌 수 있 도록 합 니 다.

오늘 인터넷 에서 자 료 를 찾 았 을 때 본의 아니 게 다른 방법 을 발 견 했 습 니 다.매우 편리 합 니 다.시스템 의 API 를 호출 하여 이 루어 졌 고 효과 도 좋 습 니 다.빨리 소장 하 세 요~
 
[DllImport("user32.dll")]
public static extern bool ReleaseCapture();

[DllImport("user32.dll")]
public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam);

private void frmMain_MouseDown(object sender, MouseEventArgs e)
{
ReleaseCapture();
SendMessage(this.Handle, 0x0112, 0xF012, 0);
}

좋은 웹페이지 즐겨찾기