-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.cs
44 lines (37 loc) · 1.17 KB
/
About.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
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Floating_Controller
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
private void picCloseAbout_Click(object sender, EventArgs e)
{
this.Hide();
}
private void bunifuGradientPanel1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
private void picAbout_Click(object sender, EventArgs e)
{
string github = "https://github.com/NattyXO/Floating-Controller";
Process.Start(github);
}
}
}