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 { "SILENT", "RIZZ", "BLSSDY", "YUEEJKE" }); } } }