具體代碼如下所示:
#region 無邊框拖動效果 [DllImport("user32.dll")]//拖動無窗體的控件 public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); public const int WM_SYSCOMMAND = 0x0112; public const int SC_MOVE = 0xF010; public const int HTCAPTION = 0x0002; private void Start_MouseDown(object sender, MouseEventArgs e) { //拖動窗體 ReleaseCapture(); SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE + HTCAPTION, 0); } #endregion
在窗口屬性界面添加事件服務
#5d7fb145af0014018d28d004e099a77c#
總結
以上所述是小編給大家介紹的C# 實現窗口無邊框,可拖動效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!
新聞熱點
疑難解答