0

嗨,在我的应用程序中,我希望我的按钮闪烁片刻,以提示按哪个按钮按哪个顺序。任何人都知道如何做到这一点,我在想也许隐藏按钮然后暂停一段时间然后再次启用它,但不确定这是一个好主意。

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?

    }
4

1 回答 1

1

这里最好的方法是使用一个故事板,在完成时切换目标。这里有一些资源可以帮助您开始:

于 2012-10-02T17:23:03.333 回答