diff options
author | sr55 <[email protected]> | 2007-07-11 13:18:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-07-11 13:18:24 +0000 |
commit | 639d590f4463da1cc1a6e5e0d6db0da4a58dbeb7 (patch) | |
tree | c9f7bae2fd7eb8b77a29d3f702d85b5f70e56650 /win/C#/frmDvdInfo.cs | |
parent | 407b71dfd22e7d0d7b2d0abba4e5c3c0995875e8 (diff) |
WinGui:
few other small changes + new form for hbcli's encode output
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@673 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmDvdInfo.cs')
-rw-r--r-- | win/C#/frmDvdInfo.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/win/C#/frmDvdInfo.cs b/win/C#/frmDvdInfo.cs new file mode 100644 index 000000000..da1b653ac --- /dev/null +++ b/win/C#/frmDvdInfo.cs @@ -0,0 +1,28 @@ +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 frmDVDData : Form
+ {
+
+ /*
+ * This window should be used to display the RAW output of the handbrake CLI which is produced during the scan.
+ */
+
+ public frmDVDData()
+ {
+ InitializeComponent();
+ }
+
+ private void btn_close_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
\ No newline at end of file |