26 lines
545 B
C#
26 lines
545 B
C#
namespace TestForms
|
|
{
|
|
public partial class TestFrame : Form
|
|
{
|
|
|
|
public TestFrame()
|
|
{
|
|
InitializeComponent();
|
|
listBox.ValueChanged += new EventHandler()
|
|
}
|
|
|
|
private void clearButton_Click(object sender, EventArgs e)
|
|
{
|
|
listBox.Clear();
|
|
}
|
|
|
|
private void fillButton_Click(object sender, EventArgs e)
|
|
{
|
|
listBox.PopulateList(new List<string> { "SILENT", "RIZZ", "BLSSDY", "YUEEJKE" });
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
} |