diff --git a/uwp/Carousel/Animating-Carousel-items.md b/uwp/Carousel/Animating-Carousel-items.md index 3fa7ec27..a7ca5904 100644 --- a/uwp/Carousel/Animating-Carousel-items.md +++ b/uwp/Carousel/Animating-Carousel-items.md @@ -9,7 +9,7 @@ documentation: ug # Animation in UWP Carousel (SfCarousel) -The default animation used during the selection of carousel items can be customized using the following properties. +The default animation used during the selection of UWP Carousel items can be customized using the following properties. * Duration @@ -108,7 +108,7 @@ End Sub ## Rotate items -`RotationAngle` property is used to rotate all the items in carousel control to a specified angle. +`RotationAngle` property is used to rotate all the items in UWP Carousel control to a specified angle. {% tabs %} diff --git a/uwp/Carousel/Getting-Started.md b/uwp/Carousel/Getting-Started.md index 212bcb97..bde8cfc9 100644 --- a/uwp/Carousel/Getting-Started.md +++ b/uwp/Carousel/Getting-Started.md @@ -9,9 +9,9 @@ documentation: ug # Getting Started with UWP Carousel (SfCarousel) -This section explains how to create a preview of slides using SfCarousel control. +This section explains how to create a preview of slides using UWP Carousel control. -## Adding SfCarousel control +## Adding UWP Carousel control Create a Universal Windows Platform project in Visual Studio and refer to the following assemblies. @@ -35,7 +35,7 @@ xmlns:layout="using:Syncfusion.UI.Xaml.Controls.Layout"> {% endtabs %} -2.Now add the SfCarousel control with a required optimal name using the included namespace +2.Now add the UWP Carousel control with a required optimal name using the included namespace {% tabs %} @@ -61,7 +61,7 @@ Dim carousel As New SfCarousel() ## Adding SfCarouselItems to the control -Here SfCarouselItems are added as the children of the SfCarousel. +Here SfCarouselItems are added as the children of the UWP Carousel. {% tabs %} @@ -121,7 +121,7 @@ carousel.Items.Add(New SfCarouselItem()) ## Setting content for CarouselItems -Content property helps to set the content for SfCarouselItem. `SfCarouselItem` is a ContentControl so that any object can be added as its content. Here images are set as the content of carousel items. +Content property helps to set the content for SfCarouselItem. `SfCarouselItem` is a ContentControl so that any object can be added as its content. Here images are set as the content of UWP Carousel items. {% tabs %} diff --git a/uwp/Carousel/Overview.md b/uwp/Carousel/Overview.md index 1e47ac35..f0d8cb78 100644 --- a/uwp/Carousel/Overview.md +++ b/uwp/Carousel/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® UWP Carousel Control -`SfCarousel` control provides a rich animated layout to arrange items in touch device. +`UWP Carousel` control provides a rich animated layout to arrange items in touch device. ## Features diff --git a/uwp/Carousel/Populating-Items.md b/uwp/Carousel/Populating-Items.md index 69b11ca7..9a4a5e56 100644 --- a/uwp/Carousel/Populating-Items.md +++ b/uwp/Carousel/Populating-Items.md @@ -9,15 +9,15 @@ documentation: ug # Populating Items in UWP Carousel (SfCarousel) -`SfCarouselItem` can be added as items of `SfCarousel`. Items of `SfCarousel` can be added though `Items` or `ItemSource` property. +`SfCarouselItem` can be added as items of `UWP Carousel`. Items of `UWP Carousel` can be added though `Items` or `ItemSource` property. ## Using Items -`SfCarousel` accepts `SfCarouselItem` as its children when added directly. +`UWP Carousel` accepts `SfCarouselItem` as its children when added directly. ### Adding items to the control -Here five `SfCarouselItems` are added as the children of the `SfCarousel`. +Here five `SfCarouselItems` are added as the children of the `UWP Carousel`. {% tabs %} @@ -143,7 +143,7 @@ carousel.Items.Add(New SfCarouselItem() With {.Content = "Item 5"}) ## Using ItemsSource -`SfCarousel` accepts any business object collection to be bound to its `ItemsSource` property. +`UWP Carousel` accepts any business object collection to be bound to its `ItemsSource` property. ### Adding items to the control @@ -270,7 +270,7 @@ Employees.Add(New Employee() With { {% endtabs %} -4.Bind the Employees collection to `ItemsSource` property of `SfCarousel` Control +4.Bind the Employees collection to `ItemsSource` property of `UWP Carousel` Control {% tabs %} @@ -282,7 +282,7 @@ Employees.Add(New Employee() With { {% endtabs %} -`SfCarousel` control is populated as follows: +`UWP Carousel` control is populated as follows: ![Provided the ItemSource to Carousel](SfCarousel-images/SfCarousel-img5.jpeg) diff --git a/uwp/Carousel/Selecting-Item.md b/uwp/Carousel/Selecting-Item.md index 03ac41a9..a090a929 100644 --- a/uwp/Carousel/Selecting-Item.md +++ b/uwp/Carousel/Selecting-Item.md @@ -12,7 +12,7 @@ Items can be selected programmatically using the properties `SelectedIndex`, `Se ## Selecting an item using SelectedIndex -`SelectedIndex` property is used to select an item in `SfCarousel` using the index of item. +`SelectedIndex` property is used to select an item in `UWP Carousel` using the index of item. {% tabs %} @@ -57,7 +57,7 @@ carousel.SelectedIndex = 2 ## Selecting an item using SelectedItem -SelectedItem property is used to select an item in SfCarousel using the instance of item. +SelectedItem property is used to select an item in UWP Carousel using the instance of item. {% tabs %} @@ -101,7 +101,7 @@ carousel.SelectedItem = item3 ## Navigating to next item -`MoveNext` method is used to select next item of the selected item in `SfCarousel`. +`MoveNext` method is used to select next item of the selected item in `UWP Carousel`. {% tabs %} @@ -121,7 +121,7 @@ carousel.MoveNext() ## Navigating to previous item -`MovePrevious` method is used to select previous item of the selected item in `SfCarousel`. +`MovePrevious` method is used to select previous item of the selected item in `UWP Carousel`. {% tabs %} @@ -145,5 +145,5 @@ carousel.MovePrevious() ## Refresh the layout -`Refresh` method is used to refresh the layout of `SfCarousel` control. +`Refresh` method is used to refresh the layout of `UWP Carousel` control. diff --git a/uwp/Carousel/Setting-offset-for-items.md b/uwp/Carousel/Setting-offset-for-items.md index b3bc7e9a..77121899 100644 --- a/uwp/Carousel/Setting-offset-for-items.md +++ b/uwp/Carousel/Setting-offset-for-items.md @@ -9,11 +9,11 @@ documentation: ug # Setting offset in UWP Carousel (SfCarousel) -`SfCarousalItem` can be displayed in different offset in `SfCarousel` and also can define the offset between selected item and other items in `SfCarousel`. +`SfCarousalItem` can be displayed in different offset in `UWP Carousel` and also can define the offset between selected item and other items in `UWP Carousel`. ## Adjusting the distance between unselected items -`Offset` property is used to customize the distance between carousel items that are not selected. +`Offset` property is used to customize the distance between UWP Carousel items that are not selected. {% tabs %} @@ -97,7 +97,7 @@ carousel.Offset = 100.0 ## Scaling the unselected items -`ScaleOffset` is used to scale the carousel items that are not selected. +`ScaleOffset` is used to scale the UWP Carousel items that are not selected. {% tabs %} @@ -181,7 +181,7 @@ carousel.ScaleOffset = 0.5 ## Displacing the selected and unselected items -`SelectedItemOffset` is set to specify the distance of selected item from other carousel items. +`SelectedItemOffset` is set to specify the distance of selected item from other UWP Carousel items. {% tabs %} diff --git a/uwp/Navigation-Drawer/Concepts-and-features.md b/uwp/Navigation-Drawer/Concepts-and-features.md index 5ac2546d..6418178d 100644 --- a/uwp/Navigation-Drawer/Concepts-and-features.md +++ b/uwp/Navigation-Drawer/Concepts-and-features.md @@ -11,7 +11,7 @@ documentation: ug ## ContentView -ContentView is the main view of the NavigationDrawer where the desired items can be placed. +ContentView is the main view of the UWP Navigation Drawer where the desired items can be placed. {% highlight xml%} @@ -45,7 +45,7 @@ ContentView is the main view of the NavigationDrawer where the desired items can ## DrawerContentView -The SfNavigationDrawer control contains the DrawerContentView, a part of the DrawerView panel. The DrawerContentView displays the navigation items that you need to jump to. +The UWP Navigation Drawer control contains the DrawerContentView, a part of the DrawerView panel. The DrawerContentView displays the navigation items that you need to jump to. {% highlight xml%} @@ -65,7 +65,7 @@ The SfNavigationDrawer control contains the DrawerContentView, a part of the Dra ## DrawerFooterView -Gets or sets the footer for the DrawerView panel in the SfNavigationDrawer control. +Gets or sets the footer for the DrawerView panel in the UWP Navigation Drawer control. {% highlight xml%} @@ -84,7 +84,7 @@ Gets or sets the footer for the DrawerView panel in the SfNavigationDrawer contr ## DrawerHeaderView -Gets or sets the DrawerHeaderView of the DrawerView panel in the SfNavigationDrawer control. +Gets or sets the DrawerHeaderView of the DrawerView panel in the UWP Navigation Drawer control. {% highlight xml%} @@ -101,7 +101,7 @@ Gets or sets the DrawerHeaderView of the DrawerView panel in the SfNavigationDra ## DrawerHeight -Gets or sets the height for the DrawerView panel in the NavigationDrawer control. +Gets or sets the height for the DrawerView panel in the UWP Navigation Drawer control. {% tabs %} {% highlight xml %} @@ -121,7 +121,7 @@ Gets or sets the height for the DrawerView panel in the NavigationDrawer control ## DrawerWidth -Gets or sets the width for the DrawerView panel in the NavigationDrawer control. +Gets or sets the width for the DrawerView panel in the UWP Navigation Drawer control. {% tabs %} {% highlight xml %} @@ -204,7 +204,7 @@ The default position is Left. ![Position_img1](Concepts-and-features_images/Position_img1.png) -The following code example shows how to set the SfNavigationDrawer to the right. +The following code example shows how to set the UWP Navigation Drawer to the right. {% tabs %} {% highlight xml %} @@ -224,7 +224,7 @@ The following code example shows how to set the SfNavigationDrawer to the right. ![Position_img2](Concepts-and-features_images/Position_img2.png) -The following code example shows how to set the SfNavigationDrawer at the top. +The following code example shows how to set the UWP Navigation Drawer at the top. {% tabs %} {% highlight xml %} @@ -244,7 +244,7 @@ The following code example shows how to set the SfNavigationDrawer at the top. ![Position_img3](Concepts-and-features_images/Position_img3.png) -The following code example shows how to set the SfNavigationDrawer at the bottom. +The following code example shows how to set the UWP Navigation Drawer at the bottom. {% tabs %} {% highlight xml %} @@ -295,7 +295,7 @@ The default transition is SlideOnTop. That draws the DrawerContent on top of the ![Transition_img1](Concepts-and-features_images/Transition_img1.png) -The following code example shows how to set Transition as Push to SfNavigationDrawer. This transition moves the Drawer and main content simultaneously. +The following code example shows how to set Transition as Push to UWP Navigation Drawer. This transition moves the Drawer and main content simultaneously. {% tabs %} {% highlight xml %} @@ -315,7 +315,7 @@ The following code example shows how to set Transition as Push to SfNavigationDr ![Transition_img2](Concepts-and-features_images/Transition_img2.png) -The following code example shows how to set Transition as Reveal to SfNavigationDrawer. In this transition, the Drawer content is stable and the main content is moved to reveal the drawer content. +The following code example shows how to set Transition as Reveal to UWP Navigation Drawer. In this transition, the Drawer content is stable and the main content is moved to reveal the drawer content. {% tabs %} diff --git a/uwp/Navigation-Drawer/Events-and-Methods.md b/uwp/Navigation-Drawer/Events-and-Methods.md index b49c63fd..a8da2b34 100644 --- a/uwp/Navigation-Drawer/Events-and-Methods.md +++ b/uwp/Navigation-Drawer/Events-and-Methods.md @@ -16,7 +16,7 @@ The below two events are implemented in Transition. ## Opened -Opened event will be raised when the DrawerContentView is opened in NavigationDrawer. +Opened event will be raised when the DrawerContentView is opened in UWP Navigation Drawer. {% highlight c# %} @@ -27,7 +27,7 @@ Opened event will be raised when the DrawerContentView is opened in NavigationDr ## Closed -Closed event will be raised when the DrawerContentView is closed in NavigationDrawer. +Closed event will be raised when the DrawerContentView is closed in UWP Navigation Drawer. @@ -39,7 +39,7 @@ Closed event will be raised when the DrawerContentView is closed in NavigationDr ## Toggle Drawer -Represents the opening and closing of the navigation drawer +Represents the opening and closing of the UWP Navigation Drawer {% highlight c# %} diff --git a/uwp/Navigation-Drawer/Getting-Started.md b/uwp/Navigation-Drawer/Getting-Started.md index a5a32fe6..8645801b 100644 --- a/uwp/Navigation-Drawer/Getting-Started.md +++ b/uwp/Navigation-Drawer/Getting-Started.md @@ -9,19 +9,19 @@ documentation: ug # Getting Started with UWP Navigation Drawer (SfNavigationDrawer) -The following section helps you to build your application with SfNavigationDrawer. +The following section helps you to build your application with UWP Navigation Drawer. ## Steps * Create new Universal Windows Platform project using Visual Studio.For more [details](https://docs.microsoft.com/en-us/windows/uwp/get-started/create-a-hello-world-app-xaml-universal)) * Add the SfNavigationDrawer assembly to your application. -* Initialize NavigationDrawer control. -* Adding content view to the NavigationDrawer control. -* Adding drawer view to the NavigationDrawer control. +* Initialize UWP Navigation Drawer control. +* Adding content view to the UWP Navigation Drawer control. +* Adding drawer view to the UWP Navigation Drawer control. These steps were explained below for XAML. -## Create a simple NavigationDrawer from XAML +## Create a simple UWP Navigation Drawer from XAML ### Adding assembly reference @@ -40,9 +40,9 @@ Add the following namespace in your XAML window. {% endhighlight %} {% endtabs %} -## Add SfNavigationDrawer from Toolbox +## Add UWP Navigation Drawer from Toolbox -Drag and drop the SfNavigationDrawer control from the Toolbox to your application. +Drag and drop the UWP Navigation Drawer control from the Toolbox to your application. ![Getting-Started_img2](Getting-Started_images/Getting-Started_img2.png) @@ -53,9 +53,9 @@ Now the SyncfusionControls for UWP XAML reference is added to the application re ![Getting-Started_img4](Getting-Started_images/Getting-Started_img4.png) -## Initialize the NavigationDrawer +## Initialize the UWP Navigation Drawer -You need to initialize the NavigationDrawer represented by the following class Syncfusion.UI.Xaml.NavigationDrawer. +You need to initialize the UWP Navigation Drawer represented by the following class Syncfusion.UI.Xaml.NavigationDrawer. {% highlight xml %} @@ -66,7 +66,7 @@ You need to initialize the NavigationDrawer represented by the following class S {% endhighlight %} -## Adding ContentView to the NavigationDrawer +## Adding ContentView to the UWP Navigation Drawer {% highlight xml %} @@ -93,7 +93,7 @@ You need to initialize the NavigationDrawer represented by the following class S {% endhighlight %} -## Adding drawer view to the NavigationDrawer +## Adding drawer view to the UWP Navigation Drawer The DrawerView is a panel that is the hidden content, brought to the view by manipulations like panning or swiping through the edges. The DrawerView has three sections namely: diff --git a/uwp/Navigation-Drawer/Overview.md b/uwp/Navigation-Drawer/Overview.md index 9d35693c..b42d8bcb 100644 --- a/uwp/Navigation-Drawer/Overview.md +++ b/uwp/Navigation-Drawer/Overview.md @@ -9,16 +9,16 @@ documentation: ug # About Syncfusion® UWP NavigationDrawer (SfNavigationDrawer) Control -NavigationDrawer is a sliding panel menu that allows you to navigate between major modules of the application. The Navigation Drawer is usually hidden and it appears when you swipe the screen from any of the four edges or by tapping the app icon, if available. +UWP Navigation Drawer is a sliding panel menu that allows you to navigate between major modules of the application. The UWP Navigation Drawer is usually hidden and it appears when you swipe the screen from any of the four edges or by tapping the app icon, if available. ![Overview_img1](Overview_images/Overview_img1.png) -SfNavigationDrawer +UWP Navigation Drawer {:.caption} ## Use Case Scenarios -Navigation Drawers are used in applications where navigating to the major module or page is a basic requirement. The Navigation Drawer is available in the following apps that signify the importance of navigating through pages: +UWP Navigation Drawers are used in applications where navigating to the major module or page is a basic requirement. The UWP Navigation Drawer is available in the following apps that signify the importance of navigating through pages: 1. Facebook 2. Play Store @@ -27,5 +27,5 @@ Navigation Drawers are used in applications where navigating to the major module ### Key Features -* Position - Specifies the rendering position for the Navigation Drawer, that is, you can display it from left or right or top or bottom edges -* Transition - Specifies the transition type of the Navigation Drawer. +* Position - Specifies the rendering position for the UWP Navigation Drawer, that is, you can display it from left or right or top or bottom edges +* Transition - Specifies the transition type of the UWP Navigation Drawer. diff --git a/uwp/Navigation-Pane/Customizing-GroupBar.md b/uwp/Navigation-Pane/Customizing-GroupBar.md index d6cc5c79..22f8e18f 100644 --- a/uwp/Navigation-Pane/Customizing-GroupBar.md +++ b/uwp/Navigation-Pane/Customizing-GroupBar.md @@ -9,9 +9,9 @@ documentation: ug # Customizing GroupBar in UWP Navigation Pane (SfGroupBar) -## Adjusting SfGroupBar Width in Collapsed Mode +## Adjusting UWP Navigation Pane Width in Collapsed Mode -Set the property `CollapsedWidth` to set Width of `SfGroupBar` control in Collapsed mode. +Set the property `CollapsedWidth` to set Width of `UWP Navigation Pane` control in Collapsed mode. {% tabs %} diff --git a/uwp/Navigation-Pane/Expand-and-Collapse.md b/uwp/Navigation-Pane/Expand-and-Collapse.md index 8e53bbf7..426648df 100644 --- a/uwp/Navigation-Pane/Expand-and-Collapse.md +++ b/uwp/Navigation-Pane/Expand-and-Collapse.md @@ -9,15 +9,15 @@ documentation: ug # Expand and Collapse in UWP Navigation Pane (SfGroupBar) -`SfGroupBar` can be collapsed in either of the following ways: +`UWP Navigation Pane` can be collapsed in either of the following ways: ## Collapse/Expand by buttons -Collapse button is enabled when `SfGroupBar` is in Expanded mode. It is shown at the top right corner of the control. Expand button is enabled when `SfGroupBar` is in Collapsed mode. It is shown at the top of the control. +Collapse button is enabled when `UWP Navigation Pane` is in Expanded mode. It is shown at the top right corner of the control. Expand button is enabled when `UWP Navigation Pane` is in Collapsed mode. It is shown at the top of the control. ## Collapse/Expand by Programmatically -Set the property `IsCollapsed` as true for collapsing the SfGroupBar and set `IsCollapsed` as false for expanding the `SfGroupBar` +Set the property `IsCollapsed` as true for collapsing the UWP Navigation Pane and set `IsCollapsed` as false for expanding the `UWP Navigation Pane` {% tabs %} diff --git a/uwp/Navigation-Pane/Getting-Started.md b/uwp/Navigation-Pane/Getting-Started.md index 236631a9..8c37b5ec 100644 --- a/uwp/Navigation-Pane/Getting-Started.md +++ b/uwp/Navigation-Pane/Getting-Started.md @@ -9,9 +9,9 @@ documentation: ug # Getting Started with UWP Navigation Pane (SfGroupBar) -This section explains how to add `SfGroupBarItem` and set it’s content in `SfGroupBar`. +This section explains how to add `SfGroupBarItem` and set it’s content in `UWP Navigation Pane`. -## Adding SfGroupBar Control +## Adding UWP Navigation Pane Control Create a Universal Windows Platform project in Visual Studio and refer to the `Syncfusion.SfGroupBar.UWP` assembly. @@ -31,7 +31,7 @@ xmlns:navigation="using:Syncfusion.UI.Xaml.Controls.Navigation"> {% endtabs %} -2.Now add the `SfGroupBar` control with a required optimal name using the included namespace +2.Now add the `UWP Navigation Pane` control with a required optimal name using the included namespace {% tabs %} @@ -43,14 +43,14 @@ xmlns:navigation="using:Syncfusion.UI.Xaml.Controls.Navigation"> {% endtabs %} -This will just display GroupBar with Collapse button. +This will just display UWP Navigation Pane with Collapse button. ![Getting-Started-img1](Getting-Started-images/Getting-Started-img1.jpeg) -## Adding Items to SfGroupBar +## Adding Items to UWP Navigation Pane -Add items `SfGroupBarItem` as given below. Use the property `Header` to set display headers for group bar item. +Add items `SfGroupBarItem` as given below. Use the property `Header` to set display headers for UWP Navigation Pane item. {% tabs %} @@ -75,7 +75,7 @@ Add items `SfGroupBarItem` as given below. Use the property `Header` to set disp ![Getting-Started-img2](Getting-Started-images/Getting-Started-img2.jpeg) -## Setting Icon for SfGroupBar Items +## Setting Icon for UWP Navigation Pane Items Use the property `ImagePath` to set image as Path elements. It can be set as follows: @@ -335,7 +335,7 @@ Set Content for SfGroupBarItems using `Content` property. {% endtabs %} -## Selecting SfGroupBar Items +## Selecting UWP Navigation Pane Items `SfGroupBarItem` can be selected either by directly clicking on item header or programmatically using the `IsSelected` property. diff --git a/uwp/Navigation-Pane/Overflow-Popup.md b/uwp/Navigation-Pane/Overflow-Popup.md index e23493df..1fc21f55 100644 --- a/uwp/Navigation-Pane/Overflow-Popup.md +++ b/uwp/Navigation-Pane/Overflow-Popup.md @@ -9,7 +9,7 @@ documentation: ug # Overflow Popup in UWP Navigation Pane (SfGroupBar) -When SfGroupBar Items overflow in the items panel, those overflown items are displayed in the overflow popup. Overflow popup is placed at right bottom in Expanded mode and placed at bottom in Collapsed mode. `SfGroupBarItem` which overflow out of viewport panel can be set as SelectedItem by selecting item from the Overflow Popup. +When UWP Navigation Pane Items overflow in the items panel, those overflown items are displayed in the overflow popup. Overflow popup is placed at right bottom in Expanded mode and placed at bottom in Collapsed mode. `SfGroupBarItem` which overflow out of viewport panel can be set as SelectedItem by selecting item from the Overflow Popup. ![Overflow-Popup-img1](Overflow-Popup-images/Overflow-Popup-img1.jpeg) diff --git a/uwp/Navigation-Pane/Overview.md b/uwp/Navigation-Pane/Overview.md index 406319f4..c0519677 100644 --- a/uwp/Navigation-Pane/Overview.md +++ b/uwp/Navigation-Pane/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® UWP Navigation Pane (SfGroupBar) Control -The `SfGroupBar` control provides a navigation UI similar to Microsoft Outlook. It has a container to host controls within it. Use it to host a categorized collection of items and custom controls. +The `UWP Navigation Pane` control provides a navigation UI similar to Microsoft Outlook. It has a container to host controls within it. Use it to host a categorized collection of items and custom controls. ## Features diff --git a/uwp/Navigation-Pane/Sizing-Collapsed-Content.md b/uwp/Navigation-Pane/Sizing-Collapsed-Content.md index 2567049f..5ce8f306 100644 --- a/uwp/Navigation-Pane/Sizing-Collapsed-Content.md +++ b/uwp/Navigation-Pane/Sizing-Collapsed-Content.md @@ -9,11 +9,11 @@ documentation: ug # Sizing Collapsed Content in UWP Navigation Pane (SfGroupBar) -Content is displayed in Popup when `SfGroupBar` is in Collapsed mode. Content popup is opened when the popup expander button is clicked. The content popup can be customized in several ways using the property `PopupSizeMode`. +Content is displayed in Popup when `UWP Navigation Pane` is in Collapsed mode. Content popup is opened when the popup expander button is clicked. The content popup can be customized in several ways using the property `PopupSizeMode`. ## Displaying Popup in Full Size -PopUp can be displayed in full height of the `SfGroupBar` by setting `PopupSizeMode` as FullSize. +PopUp can be displayed in full height of the `UWP Navigation Pane` by setting `PopupSizeMode` as FullSize. {% tabs %} @@ -32,7 +32,7 @@ PopUp can be displayed in full height of the `SfGroupBar` by setting `PopupSizeM ## Displaying PopUp in Default Size -PopUp can be displayed in equal height of the popup expander button in `SfGroupBar` by setting `PopupSizeMode` as DefaultSize. +PopUp can be displayed in equal height of the popup expander button in `UWP Navigation Pane` by setting `PopupSizeMode` as DefaultSize. {% tabs %}