blob: 16a7ae6f0ceca07e3817f491d8dde32521929357 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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();
}
}
}
|