C # Mouse on the control to drag the Move Form Move window

Source: Internet
Author: User

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 #region 移动窗体 移动窗口 private Point _mousePoint; private int topA(Control cc) {     if (cc == null || cc == this) return 0;     if (cc.Parent == null || cc.Parent == this)         return cc.Top;     else         return topA(cc.Parent) + cc.Top; } private int leftA(Control cc) {     if (cc == null || cc == this) return 0;     if (cc.Parent == null || cc.Parent == this)         return cc.Left;     else         return leftA(cc.Parent) + cc.Left; } private void labTitle_MouseDown(object sender, MouseEventArgs e) {     Control cc = (Control)sender;     if (e.Button == MouseButtons.Left)     {         _mousePoint.X = e.X + leftA(cc);         _mousePoint.Y = e.Y + topA(cc);     } } private void labTitle_MouseMove(object sender, MouseEventArgs e) {     if (e.Button == MouseButtons.Left)     {         Top = MousePosition.Y - _mousePoint.Y;         Left = MousePosition.X - _mousePoint.X;     } } #endregion

  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.