diff options
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs new file mode 100644 index 000000000..16a7ae6f0 --- /dev/null +++ b/win/C#/frmQueue.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 frmQueue : Form
+ {
+ public frmQueue()
+ {
+ InitializeComponent();
+ }
+
+ public void addItem(String item)
+ {
+ list_queue.Items.Add(item);
+ }
+
+ private void btn_Close_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
\ No newline at end of file |