CommunityToolkit / WindowsCommunityToolkit

The Windows Community Toolkit is a collection of helpers, extensions, and custom controls. It simplifies and demonstrates common developer tasks building .NET apps with UWP and the Windows App SDK / WinUI 3 for Windows 10 and Windows 11. The toolkit is part of the .NET Foundation.
https://docs.microsoft.com/windows/communitytoolkit/
Other
5.89k stars 1.38k forks source link

Multipage Wizard Control #1057

Closed SuperJMN closed 7 years ago

SuperJMN commented 7 years ago

I'm currently developing a UWP application.

Some interactions are driving along page-to-page flows that collect information from the user, having a "Continue" and a "Cancel" button. Usually, the last step performs an action after all the information is collection.

In short, the user navigates forward (and optionally back) providing the required information and, in the last step, an action is performed.

Usually, there's also a "pager" at the top/bottom that often consists of aligned circles that correspond to each steps in the process, with a different colors for both completed/remaining steps.

This is a sample control from Android: Sample

Is there a control for this kind of flows?

Thank you.

Odonno commented 7 years ago

@SuperJMN I am not sure of what you ask but is it not similar to a FlipView control? I mean, a FlipView control where each item has a custom template, by using a TemplateSelector.

xied75 commented 7 years ago

A simple Pivot should also work

jamesmcroft commented 7 years ago

Personally think this is a very niche control and won't be commonly adopted in most UWP applications. As others suggest, there are alternatives that could work for the requirements.

deltakosh commented 7 years ago

I agree. Let's close it for now