c# - How do I show, then hide the AppBar after a page loads? -


after page visible user, want topappbar show second or two, set isopen false close appbar. in essence want briefly show user functionality hiding in topappbar. i'm not sure place code or how implement timer in xaml/c#.

thank help!

nevermind, figured out, call function in loadstate:

    private async void delayedappbarhide()     {         await task.delay(1000);         this.topappbar.isopen = true;         await task.delay(3000);         this.topappbar.isopen = false;      } 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -