我有一组文本框和组合框,我想根据我要进行的循环设置它们的值。preinput1 和 postinput1 是文本框,但是 preinput5 和 postinput5 是组合框。试图将组合框称为文本框的错误:“TextBox tb”。
var StringInput = new object[] { preInput1, preInput5, postInput1, postInput5};
int stringCount1 = 0;
int toto = (ArrayCount + StringInput.Length);
foreach (TextBox tb in StringInput)
{
tb.Text = Convert.ToString(energyCalculation.Cells[place[xCSV]].Value);
xCSV++;
//stringCount1++;
ArrayCount++;
}
我想避免分解它来一一解决。我还能写什么来代替TextBox,或者有更好的方法。
干杯,