OSDN Git Service

6531cf13b383200b0505c3098bd26a6c921af224
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmAbout.cs
1 /*  frmAbout.cs $\r
2    This file is part of the HandBrake source code.\r
3     Homepage: <http://handbrake.fr>.\r
4     It may be used under the terms of the GNU General Public License. */\r
5 \r
6 namespace Handbrake\r
7 {\r
8     using System;\r
9     using System.Windows.Forms;\r
10 \r
11     /// <summary>\r
12     /// The About Window\r
13     /// </summary>\r
14     public partial class frmAbout : Form\r
15     {\r
16         /// <summary>\r
17         /// Initializes a new instance of the <see cref="frmAbout"/> class.\r
18         /// </summary>\r
19         public frmAbout()\r
20         {\r
21             InitializeComponent();\r
22             lbl_HBBuild.Text = Properties.Settings.Default.hb_version + " (" + Properties.Settings.Default.hb_build +\r
23                                ") - " + Properties.Settings.Default.hb_platform;\r
24         }\r
25 \r
26         /// <summary>\r
27         /// Button - Close the window\r
28         /// </summary>\r
29         /// <param name="sender">\r
30         /// The sender.\r
31         /// </param>\r
32         /// <param name="e">\r
33         /// The e.\r
34         /// </param>\r
35         private void btn_close_Click(object sender, EventArgs e)\r
36         {\r
37             this.Close();\r
38         }\r
39     }\r
40 }