gpt4 book ai didi

c# - 在C#中初始化comboBox中的一个值

转载 作者:太空狗 更新时间:2023-10-30 00:20:27 25 4
gpt4 key购买 nike

我意识到程序启动时我的组合框总是空的。我必须单击旁边的箭头来选择一个值。我们如何做才能让组合框在程序启动时显示一个值?

最佳答案

您可以设置以下 4 个属性:

// Gets or sets the index specifying the currently selected item.
comboBox1.SelectedIndex = someIndex; //int

// Gets or sets currently selected item in the ComboBox.
comboBox1.SelectedItem = someItem; // object

// Gets or sets the text that is selected in the editable portion of a ComboBox.
comboBox1.SelectedText = someItemText; // string

// Gets or sets the value of the member property specified by the ValueMember property.
comboBox1.SelectedValue = someValue; // object

直接来自 MSDN 的评论行:http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx

关于c# - 在C#中初始化comboBox中的一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11629123/

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