如何在c#2017中从组合框填充文本框

时间:2018-05-19 18:05:10

标签: c# database combobox

嗨,谢谢你。我有一个组合框,显示项目的名称,我想显示在texbox中选择的项目的价值或成本。

1 个答案:

答案 0 :(得分:0)

鉴于ComboBox的ValueMember是“Cost”;

private void comboBox1_SelectedValueChanged(object sender, EventArgs e)
{
    textBox1.Text = comboBox1.SelectedValue.ToString();
}

以上解决方案适用于Winforms ComboBox;