我试图根据我在组合框中选择的内容更改表单中的标签。它不起作用,有人可以帮忙。
这是我的代码:
private void cmbItems_SelectionChangeCommitted(object sender, EventArgs e)
{
int index = cmbItems.SelectedIndex;
if (index == 1 && index == 2)
{
lblAmount.Text = "Weight in gram";
}
}