我做了一个简单的 WindowsFormsApplication 但我遇到了一些困难。在表单中,我有 10 个文本框和一个按钮。该程序的目的是在我单击按钮时在每个框中生成不同的数字。这是代码的一部分:
private void button1_Click(object sender, EventArgs e)
{
int p = 0;
int[] array = GeneratingArray();
foreach (Control c in tableLayoutPanel1.Controls)
{
if (c.GetType().ToString() == "System.Windows.Forms.TextBox")
{
c.Text = array[p].ToString();
p++;
}
}
}
public int GeneratingInt()
{
int random;
Contract.Ensures(Contract.Result<int>() > -11, "Array out of Bounds(-10 ; 10)");
Contract.Ensures(Contract.Result<int>() < 11, "Array out of Bounds(-10 ; 10)");
Random gnr = new Random();
random = gnr.Next(20);
return random;
}
public int[] GeneratingArray()
{
int[] array = new int[10];
int random;
for (int i = 0; i < 10; i++)
{
random = GeneratingInt();
array[i] = random;
}
return array;
}
问题是当我使用调试器时一切正常,但是当我在所有框中启动应用程序时生成相同的数字。我找不到导致这种问题的原因,所以我问你。谢谢。