C#中实现鼠标拖动窗体的方法
生活随笔
收集整理的這篇文章主要介紹了
C#中实现鼠标拖动窗体的方法
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
用C#實(shí)現(xiàn)鼠標(biāo)拖動窗體,方法可能有很多,不過我想最好多還應(yīng)該是直接記錄鼠標(biāo)的位置,進(jìn)而完成操作:
private void AddList_MouseDown(object sender, MouseEventArgs e){// Gets the x-coordinate and y-coordinate of a mouse click based on the the client area of the form mouse_offset = new Point(-e.X, -e.Y); }private void AddList_MouseMove(object sender, MouseEventArgs e){if (e.Button == MouseButtons.Left){// Gets the position of the mouse cursor in screen coordinates Point mousePos = Control.MousePosition;// Translates this Point by the specified amount. mousePos.Offset(mouse_offset.X, mouse_offset.Y);Location = mousePos;} }轉(zhuǎn)載于:https://www.cnblogs.com/MicroGoogle/archive/2010/04/03/1703898.html
總結(jié)
以上是生活随笔為你收集整理的C#中实现鼠标拖动窗体的方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 托管模块的组成部分
- 下一篇: .NET c# Color对象的使用介绍