我是 C# 的初学者,我真的需要一些线索来解决这个问题。
我在 c# 中创建了一个项目,在一种形式中,我有组合框,其值为 9-20 之间的数字和一个文本框。
all i want is whenever ComboBox is selected, then TextBox will be set to ComboBox value plus 1. for example: If ComboBox1 is selected and the value is 11, then TextBox1.Text will be set to 12.
这是我一直在处理的代码。
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e
{
textBox1.Text = comboBox1.SelectedIndex.ToString() +1;
}
代码没有问题,但我没有得到我想要的值,因为结果就像选择了值 = 11 的组合框,并且 textBox1.Text 是 21,而不是 12。
谢谢之前:)