目录
- 前言
- 一、对象就用对象数组管理
- 更新时间
前言
自己的感想
一开始,自己没弄懂C# winform中的testBox是什么,导致创建多个testBox的时候要用很笨的方法来进行管理。
就是下面这种:用数组一个一个掉用里面的单独属性。
string[] str = new string[4];
str[0] = txtVar1.Text.ToString();
str[1] = txtVar2.Text.ToString();
str[2] = txtVar3.Text.ToString();
str[3] = txtVar4.Text.ToString();
一、对象就用对象数组管理
- 发现testBox是个系统中的对象
- 那么创建对应的对象数组来管理就行了
private TextBox[] txtBoxes;
txtBoxes = new TextBox[] { txtVar1, txtVar2, txtVar3, txtVar4, txt_dint, txt_date, txt_dword, txt_real, txt_time };
foreach(TextBox txtBox in txtBoxes)
{txtBox.Text.ToString();
}
更新时间
- 2024.08.01:创建