-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cs
35 lines (29 loc) · 968 Bytes
/
Main.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
using System;
using System.Windows.Forms;
namespace Erkist.Clipboarder
{
public partial class Main : Form
{
private GlobalHotkeys hotkeys = new GlobalHotkeys();
private Provider provider = new Provider();
public Main()
{
InitializeComponent();
hotkeys.KeyPressed += new EventHandler<KeyPressedEventArgs>(GlobalHotkeyPressed);
hotkeys.RegisterHotKey(Clipboarder.ModifierKeys.Control | Clipboarder.ModifierKeys.Shift, Keys.C);
provider.Initialize();
NextData();
}
internal void GlobalHotkeyPressed(object sender, KeyPressedEventArgs eventArgs)
{
NextData();
}
private void NextData()
{
string nextData = provider.NextData();
Clipboard.SetText(nextData);
ClipboardText.Text = nextData;
HumanFriendlyText.Text = provider.DescribeData();
}
}
}