I am new to Windows-8 metro app development, I am developing my app using XAML and C#. My objective is to create a screen (or some dialog) which will show some contents and user have to accept or exit.
On button Accept click further pages in application will appear and on exit, app will be terminated.
This screen(terms and condition screen) will never appear again after accepting for one time.
My question is, what is the best way to develop this type of screen, using Popup or XAML page or some other better way?
I am able to create a Popup (which doesn’t look good) and XAML (which looks great).
Please advice.
Thanks,
Rahul
You decide which page shows up when the app first opens, so you can check whether your legal info page was already shown and accepted to decide whether to show it or not, so it can just be your first page after the application starts.