如何自動選擇ListBox
中的某個項目,然後將其設置爲TextBox
中的文本,然後等待3秒鐘並移至下一行並重復?在列表框中循環並設置文本框文本
private void button2_Click(object sender, EventArgs e)
{
timer.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
foreach (var item in listBox1.Items)
{
textBox2.Text = listBox1.Text;
}
}
增量的'SelectedIndex'在'timer1_Tick'。您不需要在那裏進行循環,因爲您一次只需處理一個項目。 –