winform项目实例
时间: 2023-07-29 20:13:07 浏览: 254
WinForm项目实例可以包括使用ListBox和ComboBox控件的示例。在使用ListBox控件的示例中,可以通过点击按钮向列表框中添加爱好,并且可以删除选中的列表项。以下是一个示例代码:
```csharp
public partial class ListBoxForm : Form
{
public ListBoxForm()
{
InitializeComponent();
}
// 单击“确定”按钮事件
private void button1_Click(object sender, EventArgs e)
{
string msg = "";
for (int i = 0; i < listBox1.SelectedItems.Count; i++)
{
msg = msg + " " + listBox1.SelectedItems\[i\].ToString();
}
if (msg != "")
{
MessageBox.Show("您选择的爱好是:" + msg, "提示");
}
else
{
MessageBox.Show("您没有选择爱好", "提示");
}
}
}
```
在运行ListBoxForm窗体后,可以通过点击按钮选择爱好,并在弹出的消息框中显示所选的项目。同时,还可以通过添加按钮向列表框中添加爱好,以及通过删除按钮删除选中的列表项。\[1\]\[2\]\[3\]
#### 引用[.reference_title]
- *1* *2* *3* [C#编写WinForm窗体应用程序(第五期)](https://blog.csdn.net/weixin_41102528/article/details/114155523)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文