我有根据用户输入(1-5)创建多个 NumericUpDowns 的程序。我知道如何获得总价值,但如何获得每个 NumericUpDown 的价值。我试图使用 label1 对此进行测试,但出现 NullReferenceException 错误。
NumericUpDown test= new NumericUpDown();
test.Name = "mynum" + Convert.ToString(count2);
numericUpDown.Add(test);
System.Drawing.Point i = new System.Drawing.Point(8, 20+ i * 25);
test.Location = i;
test.Size = new System.Drawing.Size(50, 20);
this.Controls.Add(test);
test.ValueChanged += new EventHandler(mytotal);
在这一行抛出 NullReferenceException 错误。
label1.Text = test.Controls["mynum0"].Text;