嗨,谢谢你。我有一个组合框,显示项目的名称,我想显示在texbox中选择的项目的价值或成本。
答案 0 :(得分:0)
鉴于ComboBox的ValueMember是“Cost”;
private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
{
textBox1.Text = comboBox1.SelectedValue.ToString();
}
以上解决方案适用于Winforms ComboBox;