我有一个combobox list
,我希望在dropdown list
中显示combobox
的悬停项目。
在上图中,如果我将鼠标悬停在卡车上,combobox
文字应显示为卡车,与汽车和自行车相同。任何帮助表示赞赏。
示例代码:
var carTypes = new Dictionary<int, string>();
carTypes.Add(1, "Car");
carTypes.Add(2, "Truck");
carTypes.Add(3, "Bike");
comboBox1.DisplayMember = "Value";
comboBox1.ValueMember = "Key";
comboBox1.DataSource = carTypes.ToList();