OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmAbout.cs
1 /*  frmAbout.cs $\r
2         \r
3            This file is part of the HandBrake source code.\r
4            Homepage: <http://handbrake.fr>.\r
5            It may be used under the terms of the GNU General Public License. */\r
6 \r
7 using System;\r
8 using System.Windows.Forms;\r
9 \r
10 namespace Handbrake\r
11 {\r
12     public partial class frmAbout : Form\r
13     {\r
14         public frmAbout()\r
15         {\r
16             InitializeComponent();\r
17             Version.Text = Properties.Settings.Default.hb_version;\r
18             lbl_build.Text = Properties.Settings.Default.hb_build.ToString();\r
19         }\r
20 \r
21         private void btn_close_Click(object sender, EventArgs e)\r
22         {\r
23             this.Close();\r
24         }\r
25     }\r
26 }