【发布时间】:2012-01-24 20:11:12
【问题描述】:
这是我想要缩短的代码,它使用一个进度条和一个倒计时的标签:我使用的是 VB 语言
If ProgressBar1.Value = 33 And Label2.Text = "Now: Hold down power button (3 seconds)" Then
Label2.Text = "Now: Hold down power button (2 seconds)"
End If
If ProgressBar1.Value = 66 And Label2.Text = "Now: Hold down power button (2 seconds)" Then
Label2.Text = "Now: Hold down power button (1 seconds)"
End If
If ProgressBar1.Value = 99 And Label2.Text = "Now: Hold down power button (1 seconds)" Then
Label2.Text = "Now: Hold down power button (0 seconds)"
End If
If ProgressBar1.Value = 100 And Label2.Text = "Now: Hold down power button (0 seconds)" Then
Label2.Text = "Now: Also hold down the home button (10 seconds)"
Label2.Location = New Point(30, Label2.Location.Y)
Label3.Text = "Next: Release the power button only (15 seconds)"
ProgressBar1.Value = 0
End If
【问题讨论】:
标签: vb.net text progress-bar countdown