Kicker
Kicker

Reputation: 606

UWP App example with commandbar, splitview and title

I am looking for a example code which use top commandbar, splitview with hamburgericon and title of page with backbutton near humbergericon. Something like a MSN Weaher app:

enter image description here

I am looking exactly the same top bar with title and backbutton and left splitview. Do you know about something like this?

Upvotes: 0

Views: 985

Answers (1)

You can use Template10 to get an implementation of the SplitView with Burger Icon.

Special consideration about the BackButton : in this sample, this is just a simple button, when clicked you have to call the following code:

if (this.Frame.CanGoBack) this.Frame.GoBack(); 

If you plan to implement this feature, be carefull when your application will be executed in tablet mode or running on a mobile phone. In these situations, you have to manage also hardware/soft back button. Please check Back button navigation documentation.

Upvotes: 1

Related Questions