如何在 c# windows 表单中获取所有动态 numericupdown 值

How to get all dynamic numericupdown values in c# windows forms

我想从将迭代N次的for循环生成的NumericUpDown中获取值。但是在我的代码中,我只能获取第一个 NumericUpDown 值,它是通过单击按钮触发的。

显示 NumericUpDown 工具的代码:

for (int i = 0; i < 6; i++) // should be i < n
{
    NumericUpDown note = new NumericUpDown();
    note.Name = "Note" + i.ToString();
    note.Location = new System.Drawing.Point(20, 40 + (40 * i));
    note.Size = new System.Drawing.Size(40, 25);
    note.Maximum = new decimal(new int[] { 10, 0, 0, 0 });
    this.Controls.Add(note);
}

取值代码:

var numericUpDown = this.Controls["note0"] as NumericUpDown;
var value = numericUpDown.Value;
MessageBox.Show(value.ToString());

如何获取所有值?非常感谢您的帮助。

希望您正在寻找这样的东西:

foreach (NumericUpDown ctlNumeric in this.Controls.OfType<NumericUpDown>())
{
    var value = ctlNumeric.Value;
    MessageBox.Show(value.ToString());
}