-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppFormBase.cs
70 lines (63 loc) · 2 KB
/
AppFormBase.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
///
/// https://stackoverflow.com/questions/7286837/how-to-move-form-in-c-net
///
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace FSTimeSync
{
public class AppFormBase : Form
{
protected override void OnLoad(EventArgs e)
{
if (this.FormBorderStyle == System.Windows.Forms.FormBorderStyle.None)
{
this.MouseDown += new MouseEventHandler(AppFormBase_MouseDown);
this.MouseMove += new MouseEventHandler(AppFormBase_MouseMove);
this.MouseUp += new MouseEventHandler(AppFormBase_MouseUp);
}
base.OnLoad(e);
}
public void RegisterMoveableControl(Control c)
{
if (this.FormBorderStyle == System.Windows.Forms.FormBorderStyle.None)
{
c.MouseDown += new MouseEventHandler(AppFormBase_MouseDown);
c.MouseMove += new MouseEventHandler(AppFormBase_MouseMove);
c.MouseUp += new MouseEventHandler(AppFormBase_MouseUp);
}
}
void AppFormBase_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button != MouseButtons.Left)
{
return;
}
downPoint = new Point(e.X, e.Y);
}
void AppFormBase_MouseMove(object sender, MouseEventArgs e)
{
if (downPoint == Point.Empty)
{
return;
}
Point location = new Point(
this.Left + e.X - downPoint.X,
this.Top + e.Y - downPoint.Y);
this.Location = location;
}
void AppFormBase_MouseUp(object sender, MouseEventArgs e)
{
if (e.Button != MouseButtons.Left)
{
return;
}
downPoint = Point.Empty;
}
public Point downPoint = Point.Empty;
}
}