C# 清除选择框并动态构建它 - Windows 窗体应用程序
如何在C#(Windows窗体应用程序)中清除选择框中的所有选项? 有什么简单的事情或者代码需要循环所有项目吗?
如何动态添加一个选项到这个选择框?
How to clear all the options in a select box in C# (Windows form application)?
Is there something easy or does the code need to loop over all the items?
How to dynamically add an option to this select box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
Items
属性上的Clear()
方法这适用于 ListBox 或 组合框
http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.aspx
call the
Clear()
method on theItems
PropertyThis will work for a ListBox or a ComboBox
http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.aspx
如果它是 Windows 窗体 ListBox 控件,您可以使用 ListBox.Items.Clear()
If it's a Windows Forms ListBox control you can use ListBox.Items.Clear()