How to create menu items in Metro apps in windows8

I am trying to develop subway applications in Windows8 using visual studio 2012RC. I need menu items, such as columns, and each item should move on a separate page if the user clicks on it. So I tried to give a script to my application. Any working examples are really helpful to me.

Thanks.

MetroApplication:

---------------------------------- | | | | Item1 |-->Page1 | |========= | | |-->Page2 | | Item2 | | |========= | | | | | Item3 |-->Page3 | |========= | | Item4 |-->Page4 | | | | ---------------------------------- 
+4
source share
1 answer

You can use the vertical StackPanel, which contains a bunch of buttons: each button then goes to the highlighted page.

0
source

Source: https://habr.com/ru/post/1416584/


All Articles