summaryrefslogtreecommitdiffstats
path: root/win/C#/frmQueue.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-07-13 19:37:44 +0000
committersr55 <[email protected]>2007-07-13 19:37:44 +0000
commitb47ce2fd53ca839974b2f4277b01918fb34b6d6e (patch)
tree36ea205cd8fba36fb7bd2a1a0774888f2f8a258d /win/C#/frmQueue.cs
parent0afde9331de7d41babe11e7d76ed76c691c84ecb (diff)
WinGui:
- Some C# Code fixes. Parser.cs is currently missing in action. Will appear soon hopefully. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@675 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r--win/C#/frmQueue.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs
index 16a7ae6f0..e806ad879 100644
--- a/win/C#/frmQueue.cs
+++ b/win/C#/frmQueue.cs
@@ -10,19 +10,31 @@ namespace Handbrake
{
public partial class frmQueue : Form
{
- public frmQueue()
+ private string query = "";
+
+ public frmQueue(string query)
{
InitializeComponent();
+ this.query = query;
}
public void addItem(String item)
{
list_queue.Items.Add(item);
+ MessageBox.Show("test");
}
private void btn_Close_Click(object sender, EventArgs e)
{
this.Close();
}
+
+ private void frmQueue_Load(object sender, EventArgs e)
+ {
+ addItem(query);
+ MessageBox.Show("test");
+ }
+
+
}
} \ No newline at end of file