OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmAbout.cs
1 using System;\r
2 using System.Collections.Generic;\r
3 using System.ComponentModel;\r
4 using System.Data;\r
5 using System.Drawing;\r
6 using System.Text;\r
7 using System.Windows.Forms;\r
8 \r
9 namespace Handbrake\r
10 {\r
11     public partial class frmAbout : Form\r
12     {\r
13         public frmAbout()\r
14         {\r
15             InitializeComponent();\r
16         }\r
17 \r
18         private void btn_close_Click(object sender, EventArgs e)\r
19         {\r
20             this.Close();\r
21         }\r
22 \r
23       \r
24         private void About_Load(object sender, EventArgs e)\r
25         {\r
26             Version.Text = Properties.Settings.Default.GuiVersion;\r
27         }\r
28     }\r
29 }