24 lines
461 B
C#
Raw Normal View History

2023-09-09 14:11:29 +04:00
namespace TestForms
{
public partial class TestFrame : Form
{
2023-09-21 17:03:20 +04:00
2023-09-09 14:11:29 +04:00
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" });
}
2023-09-21 17:03:20 +04:00
2023-09-19 18:59:55 +04:00
2023-09-09 14:11:29 +04:00
}
}