gpt4 book ai didi

c# - VS2010/C# : How do you set the default value of a ComboBox in the IDE?

转载 作者:太空狗 更新时间:2023-10-29 17:55:26 24 4
gpt4 key购买 nike

我正在使用 Visual Studio 2010 用 C# 编写 Windows 窗体应用。

它有一个组合框。我已将 DropDownStyle 设置为“DropDownList”,并向“Items”添加了几行。

问:有什么方法可以让我在“属性”编辑器中设置 SelectedItemIndex,以便在出现组合框时“项目”集合中的那一行作为默认值显示?

我知道我可以在我的 Form_Load 方法中以编程方式设置“myComboBox.SelectedItemIndex = NNN”,但我确定在 MSVS IDE 中可能也有一些方法可以做到这一点。

有什么想法吗?

提前致谢!

最佳答案

我不确定这是否是您的要求,但如果您希望将特定项目设置为默认 I.E,您加载表单并且已经为您选择了一个值。

只需将其放入您的 public Form1() 方法中即可。

comboBox1.SelectedItem = "Test1"; 
//comboBox1 change to the name of
//your combobox
//Test1 change to the item in your list of items that you want
//defaulted.

我认为这是迄今为止最好的方法。

关于c# - VS2010/C# : How do you set the default value of a ComboBox in the IDE?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8025136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com