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 -

Socket.connect doesn't throw exception in Android -

iphone - How do I keep MDScrollView from truncating my row headers and making my cells look bad? -