CraftSynth.ImageEditor – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System; |
2 | using System.Windows.Forms; |
||
3 | |||
4 | namespace CraftSynth.ImageEditor |
||
5 | { |
||
6 | internal partial class FrmAbout : Form |
||
7 | { |
||
8 | public FrmAbout() |
||
9 | { |
||
10 | InitializeComponent(); |
||
11 | } |
||
12 | |||
13 | private void FrmAbout_Load(object sender, EventArgs e) |
||
14 | { |
||
15 | Text = "About " + Application.ProductName; |
||
16 | |||
17 | lblText.Text = "Program: " + Application.ProductName + "\n" + |
||
18 | "Version: " + Application.ProductVersion; |
||
19 | } |
||
20 | |||
21 | private void btnOK_Click(object sender, EventArgs e) |
||
22 | { |
||
23 | Close(); |
||
24 | } |
||
25 | } |
||
26 | } |