-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.cs
More file actions
43 lines (37 loc) · 1.08 KB
/
MainForm.cs
File metadata and controls
43 lines (37 loc) · 1.08 KB
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
using System;
using System.Windows.Forms;
namespace ECCryptoSystem
{
public partial class MainF : Form
{
public MainF()
{
InitializeComponent();
}
private void выйтиToolStripMenuItem_Click(object sender, EventArgs e)
{
Close();
}
private void оПрограммеToolStripMenuItem_Click(object sender, EventArgs e)
{
About ab = new About();
ab.ShowDialog();
}
private void генерацияКлючейToolStripMenuItem_Click(object sender, EventArgs e)
{
//
KeysGen f7 = new KeysGen();
f7.ShowDialog();
}
private void шифрованиеToolStripMenuItem_Click(object sender, EventArgs e)
{
Encryption f2 = new Encryption();
f2.ShowDialog();
}
private void расшифрованиеToolStripMenuItem_Click_1(object sender, EventArgs e)
{
Decryption f6 = new Decryption();
f6.ShowDialog();
}
}
}