嗨,在我的应用程序中,我希望我的按钮闪烁片刻,以提示按哪个按钮按哪个顺序。任何人都知道如何做到这一点,我在想也许隐藏按钮然后暂停一段时间然后再次启用它,但不确定这是一个好主意。
private void display_combination()
{
for (int i = 0; i < MAX_INPUT; i++)
{
switch(combination[i])
{
case 0: button_flash(this.Up_Button); break;
case 1: button_flash(this.Down_Button); break;
case 2: button_flash(this.Left_Button); break;
case 3: button_flash(this.Right_Button); break;
}
}
}
void button_flash(Button b)
{
b.IsEnabled.Equals(0);
//perhaps a pause her and then enable the button again?
}