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 namespace Handbrake\r
8 {\r
9     using System;\r
10     using System.Windows.Forms;\r
11 \r
12     public partial class frmAbout : Form\r
13     {\r
14         public frmAbout()\r
15         {\r
16             InitializeComponent();\r
17             lbl_HBBuild.Text = Properties.Settings.Default.hb_version + " (" + Properties.Settings.Default.hb_build +\r
18                                ") - " + Properties.Settings.Default.hb_platform;\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 }