要在WinForm窗体中添加一个列表框控件,可以按照以下步骤操作:
// 添加选项
listBox1.Items.Add("Option 1");
listBox1.Items.Add("Option 2");
listBox1.Items.Add("Option 3");
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
// 处理选项选择事件
MessageBox.Show("选中项:" + listBox1.SelectedItem.ToString());
}
通过以上步骤,可以在WinForm窗体中添加一个列表框控件,并对其进行设置和操作。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 如何测试Winform的WndProc函数