diff options
author | sr55 <[email protected]> | 2007-07-08 18:29:26 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-07-08 18:29:26 +0000 |
commit | 3e669fc96e687340cc17ecd8d0894457905f9cfe (patch) | |
tree | 8034a9519b58acf6cf43d8f5de41c3684580d44e /win/C#/frmAbout.cs | |
parent | 218db228fba662be9aacfaf2c120e1e61b04bfd7 (diff) |
WinGui:
- All Supported Files (for File dialog window)
- Few other minor changes.
Initial C# code project which is due to replace current vb.net code. Partially functional.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@658 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmAbout.cs')
-rw-r--r-- | win/C#/frmAbout.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs new file mode 100644 index 000000000..d34ff6567 --- /dev/null +++ b/win/C#/frmAbout.cs @@ -0,0 +1,29 @@ +using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Text;
+using System.Windows.Forms;
+
+namespace Handbrake
+{
+ public partial class frmAbout : Form
+ {
+ public frmAbout()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+
+ private void About_Load(object sender, EventArgs e)
+ {
+ Version.Text = Properties.Settings.Default.GuiVersion;
+ }
+ }
+}
\ No newline at end of file |