Proper way to make a wizard in a UWP application?

人盡茶涼 提交于 2019-12-05 22:36:11

Instead of implementing the whole wizard logic by myself, I was wondering if there's any template or best practice for this scenario within a UWP application?

You could use Windows Template Studio to create UWP project and enable the 'First Run Prompt' feature.

Besides, I have some other things to share with you. It's impossible to set the position of the UWP window. So what you said 'open in a new window that is non-resizable and located at the center of the screen' was impossible.

In general, if you want to show prompt for your app's users when they first run it, you could make a separate page. Then, you could directly navigate to this page when they first open your app, instead of open a new window.

In the prompt page, you could use some controls to show different information. For example, Flip view control. You could use it to make a FlipView Page Indicator like the following:

I see many apps use such way to show their startup page. Please try it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!