OSDN Git Service

CLI: add iso639-2 language code to audio track information display
[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             lbl_HBBuild.Text = Properties.Settings.Default.hb_version + "  " + Properties.Settings.Default.hb_build;\r
18         }\r
19 \r
20         private void btn_close_Click(object sender, EventArgs e)\r
21         {\r
22             this.Close();\r
23         }\r
24 \r
25   \r
26     }\r
27 }