如何仅从组合框 C# 中获取第一个索引
How to take only first index from combobox c#
我的组合框上有两个索引。
我只想获取第一个索引?
我能举个例子吗?
代码:
foreach (DataRow dr2 in dt2.Rows)
{
comboBox1.Items.Add(dr2["Station"].ToString() + " - " + dr2["Ime"].ToString());
}
我想参加 dr2["Station"].ToString()
?
Win Forms ComboBox
有 SelectedIndex
和 SelectedText
属性。
列表中载入项目后,您可以像这样选择一个:
// selected by position in the list
comboBox1.SelectedIndex = 0;
// ... by value
comboBox1.SelectedText = "some value";
我的组合框上有两个索引。
我只想获取第一个索引?
我能举个例子吗?
代码:
foreach (DataRow dr2 in dt2.Rows)
{
comboBox1.Items.Add(dr2["Station"].ToString() + " - " + dr2["Ime"].ToString());
}
我想参加 dr2["Station"].ToString()
?
Win Forms ComboBox
有 SelectedIndex
和 SelectedText
属性。
列表中载入项目后,您可以像这样选择一个:
// selected by position in the list
comboBox1.SelectedIndex = 0;
// ... by value
comboBox1.SelectedText = "some value";