组合框中的默认加载
例如,如果我想在组合框显示时加载默认国家/地区(“国家/地区:黎巴嫩”),我该怎么做? 我使用的是VS2008(C#)。谢谢。
If I want to load for example a default country when the combobox shows up ("Country: Lebanon"), how do I do so?
I am using VS2008 (C#). Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
将一些项目添加到组合框...这只是一个示例,您也可以运行循环来添加项目。
现在您的组合框有四个项目。要选择特定国家/地区,请尝试以下操作:
要根据指数选择一个国家/地区,请尝试以下操作:
希望有帮助。
Add some items to the Combobox...it is just a sample, you can run a loop also to add items.
Now your Combobox has four items. To select a specific country try this:
To select a on the index basis, try this:
Hope it helps.
您可以使用另一种方法在组合框中添加项目:
You can use another method to add items in comboBox:
您通常只需在表单加载后立即设置
myCombo.SelectedValue = "Whatever value"
即可。You would usually just set
myCombo.SelectedValue = "Whatever value"
as soon as the form is loaded.使用
ComboBox
控件。Use one of
SelectedValue
,SelectedIndex
,SelectedItem
orSelectedText
properties of theComboBox
control.你可以试试这个:
You could try this:
您可以使用 Items 集合中的 IndexOf 来设置它
You can set it by using IndexOf in the Items collection
这可行。将此代码复制到 appsettings 内的 app.config 文件中。
并将其复制到您想要查看的 win 表单中。
This could work. Copy this code in your app.config file within appsettings.
and copy this at ur win form where you want to view it.
您可以在表单加载事件中设置选定索引
如果黎巴嫩在
comboboxItem selectedIndex = 0
中位于第一个;例子:
You can set selected index in Form load event
If Lebanon is first in
comboboxItem selectedIndex = 0
;Example: