21 lines
458 B
C#

namespace TestForms
{
public partial class TestFrame : Form
{
public TestFrame()
{
InitializeComponent();
}
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" });
}
}
}