A wizard control is an interactive, customizable user interface that can hold more than one page. It is useful in showcasing step-by-step processes, and also helps break a complex task into simple steps. Using a wizard interface in a project simplifies the design and code work of developers. In this blog, we are going to create a simple walk-through page (wizard view) for a scheduler component using the Syncfusion Xamarin Rotator control.
Our Xamarin Rotator control is a UI that provides an interactive way to move from one image to another and navigate through a collection of views. It supports various navigation options like swiping, autoplay, and tapping. It has all the necessary features that a wizard control possesses. So, let’s design a beautiful wizard view with it!
Follow these steps to create a wizard view using the Xamarin Rotator control:
Refer to the following code example.
<sfRotator:SfRotator x:Name="Rotator" BackgroundColor="Transparent" DotPlacement="None" EnableLooping="False" EnableSwiping="True" NavigationDirection="Horizontal" >
<sfRotator:SfRotator.ItemTemplate> <DataTemplate> <StackLayout BackgroundColor="Transparent" Spacing="0" VerticalOptions="Center"> <!-- Image for display svg image --> <svg:SVGImage BackgroundColor="Transparent" Source ="{Binding ImagePath}" VerticalOptions="Center" /> <!-- Label to display header --> <Label FontFamily="{StaticResource Montserrat-SemiBold}" FontSize="20" HorizontalTextAlignment="Center" Text="{Binding Header}" VerticalTextAlignment="Center" /> <!-- Label to display content --> <Label FontFamily="{StaticResource Montserrat-Medium}" FontSize="16" Text="{Binding Content}" VerticalTextAlignment="Center" /> </StackLayout> </DataTemplate> </sfRotator:SfRotator.ItemTemplate>
public class PageModel { #region Properties /// <summary> /// Gets or sets the image. /// </summary> public string ImagePath { get; set; } /// <summary> /// Gets or sets the header. /// </summary> public string Header { get; set; } /// <summary> /// Gets or sets the content. /// </summary> public string Content { get; set; } /// <summary> /// Gets or sets the view. /// </summary> public View RotatorItem { get; set; } #endregion }
public class PageViewModel { #region Fields private ObservableCollection<PageModel> pages; #endregion #region Constructor /// <summary> /// Initializes a new instance for the <see cref=" PageViewModel " /> class. /// </summary> public PageViewModel () { this.Pages= new ObservableCollection<PageModel> { new PageModel() { ImagePath = "ReSchedule.png", Header = "RESCHEDULE", Content = "Drag and drop meetings in order to reschedule them easily.", RotatorItem = new WalkthroughItemPage() }, new Boarding() { ImagePath = "ViewMode.png", Header = "VIEW MODE", Content = "Display your meetings using four configurable view modes", RotatorItem = new WalkthroughItemPage() }, new Boarding() { ImagePath = "TimeZone.png", Header = "TIME ZONE", Content = "Display meetings created for different time zones.", RotatorItem = new WalkthroughItemPage() } }; } #endregion #region Properties public ObservableCollection<PageModel> Pages { get { return this.pages; } set { if (this.pages== value) { return; } this.pages= value; this.NotifyPropertyChanged(); } } #endregion
<sfRotator:SfRotator x:Name="Rotator" DotPlacement="None" EnableLooping="False" EnableSwiping="True" ItemsSource="{Binding Boardings}" NavigationDirection="Horizontal" SelectedIndex="{Binding SelectedIndex, Mode=TwoWay}"> <sfRotator:SfRotator.ItemTemplate> <DataTemplate> <StackLayout> <!-- Image for display svg image --> <svg:SVGImage BackgroundColor="Transparent" Source ="{Binding ImagePath}" /> <!-- Label to display header --> <Label Text="{Binding Header}" /> <!-- Label to display content --> <Label Text="{Binding Content}" /> </StackLayout> </DataTemplate> </sfRotator:SfRotator.ItemTemplate> </sfRotator:SfRotator>
After executing the above code examples, we will get the wizard view pages shown in the .gif image.
For more information refer to the Creating Wizard View using Xamarin Rotator sample.
Thanks for reading! I hope you now have a clear idea of how to create a wizard view using our Xamarin Rotator control. With a wizard view, you can easily add a sequence for your users by splitting it into stages. This will reduce your workload and save coding time, and also help you create a highly customizable component.
Our Rotator control is available in our ASP.NET Web Forms, UWP, and Xamarin platform suites. Try them out and leave your feedback in the comments section below!
If you are an existing Syncfusion user, you can download the latest version from the License and Downloads page and try the new features for yourself. Also, our NuGet packages are available on NuGet.org.
If you aren’t a customer yet, you can try our 30-day free trial to check out these features. Also, try our other samples from this GitHub location.
You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!