13-05-17, 12:12 AM
PHP كود :
private void button1_Click(object sender, EventArgs e)
{
System.Random rnd = new System.Random();
int[] rndIndexes = Enumerable.Range(0, this.listBox1.Items.Count).OrderBy(r => rnd.Next()).ToArray();
this.textBox1.Text = this.listBox1.Items[rndIndexes[0]].ToString();
this.textBox2.Text = this.listBox1.Items[rndIndexes[1]].ToString();
this.textBox3.Text = this.listBox1.Items[rndIndexes[2]].ToString();
this.textBox4.Text = this.listBox1.Items[rndIndexes[3]].ToString();
this.textBox5.Text = this.listBox1.Items[rndIndexes[4]].ToString();
this.textBox6.Text = this.listBox1.Items[rndIndexes[5]].ToString();
this.textBox7.Text = this.listBox1.Items[rndIndexes[6]].ToString();
this.textBox8.Text = this.listBox1.Items[rndIndexes[7]].ToString();
}
