summaryrefslogtreecommitdiffstats
path: root/win/C#/frmAbout.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-05-23 15:35:57 +0000
committersr55 <[email protected]>2010-05-23 15:35:57 +0000
commita28717d0b3d41674934d6e0e24ee70344576fb1e (patch)
treef82bcc5c983d0de0bf83a4fc65800926a83cbe76 /win/C#/frmAbout.cs
parentf89416ee188a36566bd420d36488d1110a7ca1d5 (diff)
WinGui:
- Added some new events to the Queue for future refactoring. - Refactor / Cleanup / Remove more stylecop warnings. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3315 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAbout.cs')
-rw-r--r--win/C#/frmAbout.cs18
1 files changed, 16 insertions, 2 deletions
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs
index d5576210d..6531cf13b 100644
--- a/win/C#/frmAbout.cs
+++ b/win/C#/frmAbout.cs
@@ -1,6 +1,5 @@
/* frmAbout.cs $
-
- This file is part of the HandBrake source code.
+ This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
@@ -9,8 +8,14 @@ namespace Handbrake
using System;
using System.Windows.Forms;
+ /// <summary>
+ /// The About Window
+ /// </summary>
public partial class frmAbout : Form
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="frmAbout"/> class.
+ /// </summary>
public frmAbout()
{
InitializeComponent();
@@ -18,6 +23,15 @@ namespace Handbrake
") - " + Properties.Settings.Default.hb_platform;
}
+ /// <summary>
+ /// Button - Close the window
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The e.
+ /// </param>
private void btn_close_Click(object sender, EventArgs e)
{
this.Close();