NavigationStripMode in UWP Rotator (SfRotator)

10 May 20211 minute to read

The NavigationStripMode property specifies the appearance of navigation bar items. The image data can be selected either by Thumbnail or by Dots navigation modes.

  • Thumbnail - The image panel items will be loaded in thumbnail view additionally. When a thumbnail item is clicked, the image panel will switch to the corresponding image data.
  • C#
  • Rotator.NavigationStripMode = NavigationStripMode.Thumbnail;
  • XAML
  • <syncfusion:SfRotator NavigationStripMode="Thumbnail"/>

    thumbnail

    • Dots - The image panel items will be loaded in dots view additionally. When a dots item is clicked, the image panel will switch to the corresponding image data.
  • C#
  • Rotator.NavigationStripMode = NavigationStripMode.Dots;
  • XAML
  • <syncfusion:SfRotator NavigationStripMode="Dots"/>

    dots