在C#中使用ComboBox控件显示值和参数有几种常用的方法:
// 假设有一个包含值和参数的数据源
List<KeyValuePair<string, int>> data = new List<KeyValuePair<string, int>>
{
new KeyValuePair<string, int>("Value1", 1),
new KeyValuePair<string, int>("Value2", 2),
new KeyValuePair<string, int>("Value3", 3)
};
// 绑定数据源
comboBox.DataSource = data;
// 设置显示值和参数的字段名
comboBox.DisplayMember = "Key";
comboBox.ValueMember = "Value";
comboBox.Items.Add(new KeyValuePair<string, int>("Value1", 1));
comboBox.Items.Add(new KeyValuePair<string, int>("Value2", 2));
comboBox.Items.Add(new KeyValuePair<string, int>("Value3", 3));
// 获取选中项的参数值
int param = ((KeyValuePair<string, int>)comboBox.SelectedItem).Value;
public class CustomItem
{
public string DisplayValue { get; set; }
public int ParamValue { get; set; }
public override string ToString()
{
return DisplayValue;
}
}
// 创建自定义类的集合
List<CustomItem> items = new List<CustomItem>
{
new CustomItem { DisplayValue = "Value1", ParamValue = 1 },
new CustomItem { DisplayValue = "Value2", ParamValue = 2 },
new CustomItem { DisplayValue = "Value3", ParamValue = 3 }
};
// 绑定数据源
comboBox.DataSource = items;
comboBox.DisplayMember = "DisplayValue";
comboBox.ValueMember = "ParamValue";
以上是几种常用的方法来在C#中使用ComboBox控件显示值和参数,可以根据具体需求选择合适的方式来实现。