1
我有一個計時器,可以改變每個標記的標籤文字。對於某些共振,它會停止並且不會繼續循環。爲什麼?C#中的循環文本標籤?
private int count = 0;
private void timer1_Tick(object sender, EventArgs e)
{
string[] arr4 = new string[3]; // 4
arr4[0] = "one";
arr4[1] = "two";
arr4[2] = "three";
if (count == 4)
{
count = 0;
}
toolStripStatusLabel1.Text = arr4[count];
count++;
}
蜱很短。也許你的UI渲染無法跟上它? – devlord
我編輯了刻度到5000毫秒或5秒 –
您是否設置了Enabled = True? – adatapost