From e151162a58795572da8f3e5daac9a1bf82652170 Mon Sep 17 00:00:00 2001 From: Sugan Sekar Date: Wed, 2 Sep 2026 13:29:27 +0530 Subject: [PATCH 1/5] UWP_1051665: Implemented redundant keywords for Menu and Radial Menu UWP controls --- uwp/Menu/Animation-Support.md | 2 +- uwp/Menu/Check-Box-and-Radio-Button.md | 2 +- uwp/Menu/Expand-Modes.md | 2 +- uwp/Menu/Getting-Started.md | 8 ++++---- uwp/Menu/Orientation.md | 8 ++++---- uwp/Menu/Overview.md | 2 +- uwp/Menu/Populating-Items.md | 12 ++++++------ uwp/Radial-Menu/Appearance-and-Styling.md | 8 ++++---- uwp/Radial-Menu/Checkable-Items.md | 8 ++++---- uwp/Radial-Menu/Enable-Free-Rotation.md | 2 +- uwp/Radial-Menu/Getting-Started.md | 2 +- uwp/Radial-Menu/Icon.md | 2 +- uwp/Radial-Menu/Layout-Types.md | 4 ++-- uwp/Radial-Menu/Overview.md | 2 +- uwp/Radial-Menu/Populating-Color-Palette.md | 2 +- uwp/Radial-Menu/Populating-Items.md | 12 ++++++------ 16 files changed, 39 insertions(+), 39 deletions(-) diff --git a/uwp/Menu/Animation-Support.md b/uwp/Menu/Animation-Support.md index 7add2d78..eaa4e169 100644 --- a/uwp/Menu/Animation-Support.md +++ b/uwp/Menu/Animation-Support.md @@ -9,7 +9,7 @@ documentation: ug # Animation Support in UWP Menu (SfMenu) -`SfMenu` supports animation types to open the submenu pop-up. The following animation types are supported by `SfMenu`: +`UWP Menu` supports animation types to open the submenu pop-up. The following animation types are supported by `UWP Menu`: * Fade * Slide diff --git a/uwp/Menu/Check-Box-and-Radio-Button.md b/uwp/Menu/Check-Box-and-Radio-Button.md index d79ab2d4..bedfa98d 100644 --- a/uwp/Menu/Check-Box-and-Radio-Button.md +++ b/uwp/Menu/Check-Box-and-Radio-Button.md @@ -9,7 +9,7 @@ documentation: ug # CheckBox and RadioButton in UWP Menu (SfMenu) -`SfMenu` provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. +`UWP Menu` provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. ## Add Check Box and Radio Button in SfMenuItem diff --git a/uwp/Menu/Expand-Modes.md b/uwp/Menu/Expand-Modes.md index e7e5db94..4d977917 100644 --- a/uwp/Menu/Expand-Modes.md +++ b/uwp/Menu/Expand-Modes.md @@ -9,7 +9,7 @@ documentation: ug # Expand Modes in UWP Menu (SfMenu) -Expand Modes in `SfMenu` is used to open the submenu of each `SfMenuItem`, which is added in `SfMenu` by doing click to open the submenu or by doing mouse hover to open the submenu. `SfMenu` supports two kinds of Expand Modes, namely `ExpandOnClick` and `ExpandOnMouseOver` Expand Modes which can be obtained by using the `ExpandMode` property. By default submenu items opened by mouse over on `SfMenuItem`. +Expand Modes in `UWP Menu` is used to open the submenu of each `SfMenuItem`, which is added in `UWP Menu` by doing click to open the submenu or by doing mouse hover to open the submenu. `UWP Menu` supports two kinds of Expand Modes, namely `ExpandOnClick` and `ExpandOnMouseOver` Expand Modes which can be obtained by using the `ExpandMode` property. By default submenu items opened by mouse over on `SfMenuItem`. ## Open SubMenu on Click diff --git a/uwp/Menu/Getting-Started.md b/uwp/Menu/Getting-Started.md index e3366137..1b22677d 100644 --- a/uwp/Menu/Getting-Started.md +++ b/uwp/Menu/Getting-Started.md @@ -9,9 +9,9 @@ documentation: ug # Getting Started with UWP Menu (SfMenu) -This section explains how to create the `SfMenu` control. +This section explains how to create the `UWP Menu` control. -## Adding SfMenu Control +## Adding UWP Menu Control Create a Universal Windows Platform project in Visual Studio and refer to the following assemblies. @@ -37,7 +37,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> {% endtabs %} -2.Now add the `SfMenu` control with a required optimal name using the included namespace +2.Now add the `UWP Menu` control with a required optimal name using the included namespace {% tabs %} @@ -52,7 +52,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> ## Adding SfMenuItems to the Control -Here `SfMenuItems` are added as the children of the `SfMenu`. +Here `SfMenuItems` are added as the children of the `UWP Menu`. {% tabs %} diff --git a/uwp/Menu/Orientation.md b/uwp/Menu/Orientation.md index e5feb9be..e1c03076 100644 --- a/uwp/Menu/Orientation.md +++ b/uwp/Menu/Orientation.md @@ -9,21 +9,21 @@ documentation: ug # Orientation in UWP Menu (SfMenu) -The `SfMenu` control can align its content vertically and horizontally by using the `Orientation` property of the `SfMenu`. +The `UWP Menu` control can align its content vertically and horizontally by using the `Orientation` property of the `UWP Menu`. ## Change Orientation of SfMenuItem -Items of `SfMenu` arranged horizontally, when the value of the `Orientation` property is set to Horizontal. +Items of `UWP Menu` arranged horizontally, when the value of the `Orientation` property is set to Horizontal. ![Orientation-img1](Orientation-images/Orientation-img1.jpg) -Similarly, when the value of the `Orientation` property is set to Vertical, the Items of `SfMenu` will be arranged vertically. +Similarly, when the value of the `Orientation` property is set to Vertical, the Items of `UWP Menu` will be arranged vertically. ![Orientation-img2](Orientation-images/Orientation-img2.jpg) -`Orientation` of `SfMenu` can be changed as mentioned in the code snippet. +`Orientation` of `UWP Menu` can be changed as mentioned in the code snippet. {% tabs %} diff --git a/uwp/Menu/Overview.md b/uwp/Menu/Overview.md index eddeaaab..90d69b14 100644 --- a/uwp/Menu/Overview.md +++ b/uwp/Menu/Overview.md @@ -10,7 +10,7 @@ documentation: ug # About Syncfusion® UWP Menu (SfMenu) Control -`SfMenu` control allows the hierarchal organization of elements that are associated with commands and event handlers. `SfMenu` contains a collection of `SfMenuItem`, which can be expanded to display additional SfMenuItem's or to perform a specific action when clicked. +`UWP Menu` control allows the hierarchal organization of elements that are associated with commands and event handlers. `UWP Menu` contains a collection of `SfMenuItem`, which can be expanded to display additional SfMenuItem's or to perform a specific action when clicked. ## Features: diff --git a/uwp/Menu/Populating-Items.md b/uwp/Menu/Populating-Items.md index 84dec65a..0d92c179 100644 --- a/uwp/Menu/Populating-Items.md +++ b/uwp/Menu/Populating-Items.md @@ -9,15 +9,15 @@ documentation: ug # Populating Items in UWP Menu (SfMenu) -`SfMenuItem` can be added as items of `SfMenu`. Items can be added using `Items` or `ItemsSource` property. +`SfMenuItem` can be added as items of `UWP Menu`. Items can be added using `Items` or `ItemsSource` property. ## Populating Items through adding SfMenuItem -`SfMenu` accepts `SfMenuItem` as its children when added directly. +`UWP Menu` accepts `SfMenuItem` as its children when added directly. ### Adding Items to the Control -Here five `SfMenuItems` are added as the children of the `SfMenu`. +Here five `SfMenuItems` are added as the children of the `UWP Menu`. {% tabs %} @@ -64,7 +64,7 @@ sfMenu.Items.Add(new SfMenuItem { Header = "Layout" }); ## Populating Items through Binding -`SfMenu` accepts any business object collection to be bound to its `ItemsSource` property. +`UWP Menu` accepts any business object collection to be bound to its `ItemsSource` property. ### Adding items to the control @@ -174,7 +174,7 @@ MenuCollection.Add(new Model() { Header = "Layout" }); -3.Bind the MenuCollection to `ItemsSource` property of `SfMenu` Control. +3.Bind the MenuCollection to `ItemsSource` property of `UWP Menu` Control. {% tabs %} @@ -186,7 +186,7 @@ MenuCollection.Add(new Model() { Header = "Layout" }); {% endtabs%} -`SfMenu` control is populated as follows: +`UWP Menu` control is populated as follows: ![Populating-Items-img1](Populating-Items-images/Populating-Items-img1.jpg) diff --git a/uwp/Radial-Menu/Appearance-and-Styling.md b/uwp/Radial-Menu/Appearance-and-Styling.md index 062d3123..1f8f97df 100644 --- a/uwp/Radial-Menu/Appearance-and-Styling.md +++ b/uwp/Radial-Menu/Appearance-and-Styling.md @@ -11,7 +11,7 @@ documentation: ug ## Radius -RadiusX and RadiusY properties in the SfRadialMenu can be used to define the X and Y axis radius to render the control. +RadiusX and RadiusY properties in the UWP Radial Menu can be used to define the X and Y axis radius to render the control. {% tabs %} @@ -143,7 +143,7 @@ radialMenu.RimActiveBrush = New SolidColorBrush(Colors.Red) ## RimRadiusFactor -RimRadiusFactor property of SfRadialMenu can be used to set the radius of the items panel. Lowest values to this factor increases the thickness of the outer rim. Highest values to this factor decreases the thickness of the outer rim. +RimRadiusFactor property of UWP Radial Menu can be used to set the radius of the items panel. Lowest values to this factor increases the thickness of the outer rim. Highest values to this factor decreases the thickness of the outer rim. {% tabs %} @@ -176,7 +176,7 @@ radialMenu.RimRadiusFactor = 0.7 ## Navigation Button Style -The navigation button displayed in the center of SfRadialMenu can be styled using NavigationButtonStyle property. +The navigation button displayed in the center of UWP Radial Menu can be styled using NavigationButtonStyle property. {% tabs %} @@ -192,7 +192,7 @@ IsOpen="True" /> ## Editing SubMenu Items Programmatically -With the DrillDownItem property, you can access and edit submenu items of SfRadialMenu at various hierarchy levels programmatically. The following code example and screen shot illustrate this. +With the DrillDownItem property, you can access and edit submenu items of UWP Radial Menu at various hierarchy levels programmatically. The following code example and screen shot illustrate this. {% tabs %} {% highlight xaml %} diff --git a/uwp/Radial-Menu/Checkable-Items.md b/uwp/Radial-Menu/Checkable-Items.md index 06e4821b..ade7db40 100644 --- a/uwp/Radial-Menu/Checkable-Items.md +++ b/uwp/Radial-Menu/Checkable-Items.md @@ -9,11 +9,11 @@ documentation: ug # Checkable Items in UWP Radial Menu (SfRadialMenu) -SfRadialMenu items can be checked. +UWP Radial Menu items can be checked. ## Check Mode -The CheckMode property for a radial menu item includes the following options: +The CheckMode property for a UWP Radial Menu item includes the following options: * None: If the CheckMode is set to None, then that item can’t be checked. * CheckBox: If the CheckMode is set to CheckBox, then more than one item in the same level can be in checkable state. @@ -23,11 +23,11 @@ The CheckMode property for a radial menu item includes the following options: ## Group Name -The GroupName property of the SfRadialMenu item can be used to group the items in the same level. This property is useful when the CheckMode property of those items is set to RadioButton. +The GroupName property of the UWP Radial Menu item can be used to group the items in the same level. This property is useful when the CheckMode property of those items is set to RadioButton. ### IsChecked -IsChecked property of SfRadialMenu item can be used to get or set the checked state of an item. +IsChecked property of UWP Radial Menu item can be used to get or set the checked state of an item. {% tabs %} diff --git a/uwp/Radial-Menu/Enable-Free-Rotation.md b/uwp/Radial-Menu/Enable-Free-Rotation.md index 6800e542..56fa993d 100644 --- a/uwp/Radial-Menu/Enable-Free-Rotation.md +++ b/uwp/Radial-Menu/Enable-Free-Rotation.md @@ -9,7 +9,7 @@ documentation: ug # Enable Free Rotation in UWP Radial Menu (SfRadialMenu) -EnableFreeRotation property enable/disable rotation behavior of SfRadialMenu. +EnableFreeRotation property enable/disable rotation behavior of UWP Radial Menu. {% tabs %} diff --git a/uwp/Radial-Menu/Getting-Started.md b/uwp/Radial-Menu/Getting-Started.md index c0690e9f..9ad36f78 100644 --- a/uwp/Radial-Menu/Getting-Started.md +++ b/uwp/Radial-Menu/Getting-Started.md @@ -15,7 +15,7 @@ Assembly : Syncfusion.SfRadialMenu.UWP Dependent assembly: Syncfusion.SfShared.UWP -The following code sample shows how to create the SfRadialMenu from code-behind and XAML. +The following code sample shows how to create the UWP Radial Menu from code-behind and XAML. {% tabs %} {% highlight xaml %} diff --git a/uwp/Radial-Menu/Icon.md b/uwp/Radial-Menu/Icon.md index 2dad9981..56fcd885 100644 --- a/uwp/Radial-Menu/Icon.md +++ b/uwp/Radial-Menu/Icon.md @@ -9,7 +9,7 @@ documentation: ug # Icon in UWP Radial Menu (SfRadialMenu) -The Icon property of the SfRadialMenu is used to customize the icon displayed in the center of RadialMenu circle. +The Icon property of the UWP Radial Menu is used to customize the icon displayed in the center of UWP Radial Menu circle. {% tabs %} diff --git a/uwp/Radial-Menu/Layout-Types.md b/uwp/Radial-Menu/Layout-Types.md index 6b11dbb4..de96dd40 100644 --- a/uwp/Radial-Menu/Layout-Types.md +++ b/uwp/Radial-Menu/Layout-Types.md @@ -9,7 +9,7 @@ documentation: ug # Layout Types in UWP Radial Menu (SfRadialMenu) -There are two different layout types available for SfRadialMenu. +There are two different layout types available for UWP Radial Menu. * Default * Custom @@ -18,7 +18,7 @@ Both the layout types divide the available space equally among all the children ## Default -Number of segments in the panel is determined by children count in the level. Hence segment count in each hierarchical level differs. RadialMenuItem is arranged in the sequential order as added in the RadialMenu. +Number of segments in the panel is determined by children count in the level. Hence segment count in each hierarchical level differs. RadialMenuItem is arranged in the sequential order as added in the UWP Radial Menu. ## Custom diff --git a/uwp/Radial-Menu/Overview.md b/uwp/Radial-Menu/Overview.md index 8d86bc0e..9641b3d7 100644 --- a/uwp/Radial-Menu/Overview.md +++ b/uwp/Radial-Menu/Overview.md @@ -9,7 +9,7 @@ documentation: ug # About Syncfusion® UWP Radial Menu (SfRadialMenu) Control -The SfRadialMenu displays a hierarchical menu in a circular layout optimized for touch devices. Typically used as a context menu, it can expose more menu items in the same space than traditional menus. +The UWP Radial Menu displays a hierarchical menu in a circular layout optimized for touch devices. Typically used as a context menu, it can expose more menu items in the same space than traditional menus. ![RadialMenu Example view](Overview_images/Overview_img1.png) diff --git a/uwp/Radial-Menu/Populating-Color-Palette.md b/uwp/Radial-Menu/Populating-Color-Palette.md index e4dbd7dc..8c103ade 100644 --- a/uwp/Radial-Menu/Populating-Color-Palette.md +++ b/uwp/Radial-Menu/Populating-Color-Palette.md @@ -9,7 +9,7 @@ documentation: ug # Populating Color Palette in UWP Radial Menu (SfRadialMenu) -Color Palette can be formed in SfRadialMenu with the Radial Color Items. +Color Palette can be formed in UWP Radial Menu with the Radial Color Items. {% tabs %} diff --git a/uwp/Radial-Menu/Populating-Items.md b/uwp/Radial-Menu/Populating-Items.md index 32fbce45..4d60d3a8 100644 --- a/uwp/Radial-Menu/Populating-Items.md +++ b/uwp/Radial-Menu/Populating-Items.md @@ -11,7 +11,7 @@ documentation: ug ## Items Source -Radial menu items can be populated with the business object collection. Let us create a SfRadialMenu which will show the list of Application commands. +UWP Radial Menu items can be populated with the business object collection. Let us create a UWP Radial Menu which will show the list of Application commands. The Application command model look likes below. @@ -146,7 +146,7 @@ Populate the Application command collection as follows. {% endtabs %} -Bind the Application command collection to the ItemsSource property of the SfRadialMenu control. +Bind the Application command collection to the ItemsSource property of the UWP Radial Menu control. {% highlight xaml %} @@ -154,7 +154,7 @@ Bind the Application command collection to the ItemsSource property of the SfRad {% endhighlight %} -This will populate the SfRadialMenu as shown in the image below. +This will populate the UWP Radial Menu as shown in the image below. ![RadialMenu Initial view](Populating-Items_images/Populating-Items_img1.png) @@ -162,7 +162,7 @@ This will populate the SfRadialMenu as shown in the image below. ### Display Member Path -DisplayMemberPath property of the SfRadialMenu used to define which business model property needs to be displayed inside the header of the SfRadialMenu items. +DisplayMemberPath property of the UWP Radial Menu used to define which business model property needs to be displayed inside the header of the UWP Radial Menu items. {% highlight xaml %} @@ -179,7 +179,7 @@ DisplayMemberPath="Name"/> ### Command Path -CommandPath property of the SfRadialMenu can be used to bind the command in the business object to the SfRadialMenu item when items are populated using data binding. +CommandPath property of the UWP Radial Menu can be used to bind the command in the business object to the UWP Radial Menu item when items are populated using data binding. {% highlight xaml %} @@ -194,7 +194,7 @@ CommandPath property of the SfRadialMenu can be used to bind the command in the ### Item Template -ItemTemplate property of the SfRadialMenu can be used to customize the header part of the SfRadialMenu items. +ItemTemplate property of the UWP Radial Menu can be used to customize the header part of the UWP Radial Menu items. {% highlight xaml %} From 92b335564c1dba77707e486d5ee0963d8f17af49 Mon Sep 17 00:00:00 2001 From: sathiyathanam Date: Tue, 22 Sep 2026 18:53:23 +0530 Subject: [PATCH 2/5] UWP-1051665 - Quotations removed. --- uwp/Menu/Animation-Support.md | 2 +- uwp/Menu/Check-Box-and-Radio-Button.md | 2 +- uwp/Menu/Expand-Modes.md | 2 +- uwp/Menu/Getting-Started.md | 6 +++--- uwp/Menu/Orientation.md | 8 ++++---- uwp/Menu/Overview.md | 2 +- uwp/Menu/Populating-Items.md | 12 ++++++------ uwp/Radial-Menu/Checkable-Items.md | 8 ++++---- uwp/Radial-Menu/Populating-Items.md | 6 +++--- 9 files changed, 24 insertions(+), 24 deletions(-) diff --git a/uwp/Menu/Animation-Support.md b/uwp/Menu/Animation-Support.md index eaa4e169..24b0a7ed 100644 --- a/uwp/Menu/Animation-Support.md +++ b/uwp/Menu/Animation-Support.md @@ -9,7 +9,7 @@ documentation: ug # Animation Support in UWP Menu (SfMenu) -`UWP Menu` supports animation types to open the submenu pop-up. The following animation types are supported by `UWP Menu`: +The UWP Menu provides various animation types for displaying submenu pop-ups. The supported animation types are: * Fade * Slide diff --git a/uwp/Menu/Check-Box-and-Radio-Button.md b/uwp/Menu/Check-Box-and-Radio-Button.md index bedfa98d..3cdb21fd 100644 --- a/uwp/Menu/Check-Box-and-Radio-Button.md +++ b/uwp/Menu/Check-Box-and-Radio-Button.md @@ -9,7 +9,7 @@ documentation: ug # CheckBox and RadioButton in UWP Menu (SfMenu) -`UWP Menu` provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. +UWP Menu provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. ## Add Check Box and Radio Button in SfMenuItem diff --git a/uwp/Menu/Expand-Modes.md b/uwp/Menu/Expand-Modes.md index 4d977917..e81c68bb 100644 --- a/uwp/Menu/Expand-Modes.md +++ b/uwp/Menu/Expand-Modes.md @@ -9,7 +9,7 @@ documentation: ug # Expand Modes in UWP Menu (SfMenu) -Expand Modes in `UWP Menu` is used to open the submenu of each `SfMenuItem`, which is added in `UWP Menu` by doing click to open the submenu or by doing mouse hover to open the submenu. `UWP Menu` supports two kinds of Expand Modes, namely `ExpandOnClick` and `ExpandOnMouseOver` Expand Modes which can be obtained by using the `ExpandMode` property. By default submenu items opened by mouse over on `SfMenuItem`. +The `UWP Menu` provides two expand modes for opening the submenu of an `SfMenuItem`: `ExpandOnClick` and `ExpandOnMouseOver`. These modes allow the submenu to open either by clicking the menu item or by hovering the mouse over it. The expand mode can be configured using the `ExpandMode` property. By default, submenus open when the mouse hovers over an `SfMenuItem`. ## Open SubMenu on Click diff --git a/uwp/Menu/Getting-Started.md b/uwp/Menu/Getting-Started.md index 1b22677d..183b9bdf 100644 --- a/uwp/Menu/Getting-Started.md +++ b/uwp/Menu/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with UWP Menu (SfMenu) -This section explains how to create the `UWP Menu` control. +This section explains how to create the UWP Menu control. ## Adding UWP Menu Control @@ -37,7 +37,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> {% endtabs %} -2.Now add the `UWP Menu` control with a required optimal name using the included namespace +2.Now add the UWP Menu control with a required optimal name using the included namespace {% tabs %} @@ -52,7 +52,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> ## Adding SfMenuItems to the Control -Here `SfMenuItems` are added as the children of the `UWP Menu`. +Here `SfMenuItems` are added as the children of the UWP Menu. {% tabs %} diff --git a/uwp/Menu/Orientation.md b/uwp/Menu/Orientation.md index e1c03076..e01fa00a 100644 --- a/uwp/Menu/Orientation.md +++ b/uwp/Menu/Orientation.md @@ -9,21 +9,21 @@ documentation: ug # Orientation in UWP Menu (SfMenu) -The `UWP Menu` control can align its content vertically and horizontally by using the `Orientation` property of the `UWP Menu`. +The `Orientation` property is used to arrange the UWP Menu items horizontally or vertically. ## Change Orientation of SfMenuItem -Items of `UWP Menu` arranged horizontally, when the value of the `Orientation` property is set to Horizontal. +Items of UWP Menu arranged horizontally, when the value of the `Orientation` property is set to Horizontal. ![Orientation-img1](Orientation-images/Orientation-img1.jpg) -Similarly, when the value of the `Orientation` property is set to Vertical, the Items of `UWP Menu` will be arranged vertically. +Similarly, when the value of the `Orientation` property is set to Vertical, the Items of UWP Menu will be arranged vertically. ![Orientation-img2](Orientation-images/Orientation-img2.jpg) -`Orientation` of `UWP Menu` can be changed as mentioned in the code snippet. +`Orientation` of UWP Menu can be changed as mentioned in the code snippet. {% tabs %} diff --git a/uwp/Menu/Overview.md b/uwp/Menu/Overview.md index 90d69b14..8d34d24c 100644 --- a/uwp/Menu/Overview.md +++ b/uwp/Menu/Overview.md @@ -10,7 +10,7 @@ documentation: ug # About Syncfusion® UWP Menu (SfMenu) Control -`UWP Menu` control allows the hierarchal organization of elements that are associated with commands and event handlers. `UWP Menu` contains a collection of `SfMenuItem`, which can be expanded to display additional SfMenuItem's or to perform a specific action when clicked. +The UWP Menu supports the hierarchical organization of items associated with commands and event handlers. It contains a collection of `SfMenuItem` objects that can be expanded to display additional menu items or perform a specific action when clicked. ## Features: diff --git a/uwp/Menu/Populating-Items.md b/uwp/Menu/Populating-Items.md index 0d92c179..d70d022d 100644 --- a/uwp/Menu/Populating-Items.md +++ b/uwp/Menu/Populating-Items.md @@ -9,15 +9,15 @@ documentation: ug # Populating Items in UWP Menu (SfMenu) -`SfMenuItem` can be added as items of `UWP Menu`. Items can be added using `Items` or `ItemsSource` property. +`SfMenuItem` can be added as items of UWP Menu. Items can be added using `Items` or `ItemsSource` property. ## Populating Items through adding SfMenuItem -`UWP Menu` accepts `SfMenuItem` as its children when added directly. +UWP Menu accepts `SfMenuItem` as its children when added directly. ### Adding Items to the Control -Here five `SfMenuItems` are added as the children of the `UWP Menu`. +Here five `SfMenuItems` are added as the children of the UWP Menu. {% tabs %} @@ -64,7 +64,7 @@ sfMenu.Items.Add(new SfMenuItem { Header = "Layout" }); ## Populating Items through Binding -`UWP Menu` accepts any business object collection to be bound to its `ItemsSource` property. +UWP Menu accepts any business object collection to be bound to its `ItemsSource` property. ### Adding items to the control @@ -174,7 +174,7 @@ MenuCollection.Add(new Model() { Header = "Layout" }); -3.Bind the MenuCollection to `ItemsSource` property of `UWP Menu` Control. +3.Bind the MenuCollection to `ItemsSource` property of UWP Menu Control. {% tabs %} @@ -186,7 +186,7 @@ MenuCollection.Add(new Model() { Header = "Layout" }); {% endtabs%} -`UWP Menu` control is populated as follows: +UWP Menu control is populated as follows: ![Populating-Items-img1](Populating-Items-images/Populating-Items-img1.jpg) diff --git a/uwp/Radial-Menu/Checkable-Items.md b/uwp/Radial-Menu/Checkable-Items.md index ade7db40..8f544b87 100644 --- a/uwp/Radial-Menu/Checkable-Items.md +++ b/uwp/Radial-Menu/Checkable-Items.md @@ -9,11 +9,11 @@ documentation: ug # Checkable Items in UWP Radial Menu (SfRadialMenu) -UWP Radial Menu items can be checked. +UWP Radial Menu items can be checked. ## Check Mode -The CheckMode property for a UWP Radial Menu item includes the following options: +The CheckMode property for a radial menu item includes the following options: * None: If the CheckMode is set to None, then that item can’t be checked. * CheckBox: If the CheckMode is set to CheckBox, then more than one item in the same level can be in checkable state. @@ -23,11 +23,11 @@ The CheckMode property for a UWP Radial Menu item includes the following options ## Group Name -The GroupName property of the UWP Radial Menu item can be used to group the items in the same level. This property is useful when the CheckMode property of those items is set to RadioButton. +The GroupName property of the radial menu item can be used to group the items in the same level. This property is useful when the CheckMode property of those items is set to RadioButton. ### IsChecked -IsChecked property of UWP Radial Menu item can be used to get or set the checked state of an item. +IsChecked property of radial menu item can be used to get or set the checked state of an item. {% tabs %} diff --git a/uwp/Radial-Menu/Populating-Items.md b/uwp/Radial-Menu/Populating-Items.md index 4d60d3a8..b7ea3942 100644 --- a/uwp/Radial-Menu/Populating-Items.md +++ b/uwp/Radial-Menu/Populating-Items.md @@ -162,7 +162,7 @@ This will populate the UWP Radial Menu as shown in the image below. ### Display Member Path -DisplayMemberPath property of the UWP Radial Menu used to define which business model property needs to be displayed inside the header of the UWP Radial Menu items. +DisplayMemberPath property of the UWP Radial Menu used to define which business model property needs to be displayed inside the header of the radial menu items. {% highlight xaml %} @@ -179,7 +179,7 @@ DisplayMemberPath="Name"/> ### Command Path -CommandPath property of the UWP Radial Menu can be used to bind the command in the business object to the UWP Radial Menu item when items are populated using data binding. +CommandPath property of the UWP Radial Menu can be used to bind the command in the business object to the radial menu item when items are populated using data binding. {% highlight xaml %} @@ -194,7 +194,7 @@ CommandPath property of the UWP Radial Menu can be used to bind the command in t ### Item Template -ItemTemplate property of the UWP Radial Menu can be used to customize the header part of the UWP Radial Menu items. +ItemTemplate property of the UWP Radial Menu can be used to customize the header part of the radial menu items. {% highlight xaml %} From 7500c915fc479d12816e53d7c333e0d5ee2a1b0b Mon Sep 17 00:00:00 2001 From: sathiyathanam Date: Tue, 22 Sep 2026 19:31:41 +0530 Subject: [PATCH 3/5] UWP-1051665 - Quotations Text changes reverted. --- uwp/Menu/Animation-Support.md | 2 +- uwp/Menu/Check-Box-and-Radio-Button.md | 2 +- uwp/Menu/Expand-Modes.md | 2 +- uwp/Menu/Getting-Started.md | 6 +++--- uwp/Menu/Orientation.md | 8 ++++---- uwp/Menu/Overview.md | 2 +- uwp/Menu/Populating-Items.md | 10 +++++----- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/uwp/Menu/Animation-Support.md b/uwp/Menu/Animation-Support.md index 24b0a7ed..75fae2e2 100644 --- a/uwp/Menu/Animation-Support.md +++ b/uwp/Menu/Animation-Support.md @@ -9,7 +9,7 @@ documentation: ug # Animation Support in UWP Menu (SfMenu) -The UWP Menu provides various animation types for displaying submenu pop-ups. The supported animation types are: +The `SfMenu` provides various animation types for displaying submenu pop-ups. The supported animation types are: * Fade * Slide diff --git a/uwp/Menu/Check-Box-and-Radio-Button.md b/uwp/Menu/Check-Box-and-Radio-Button.md index 3cdb21fd..d79ab2d4 100644 --- a/uwp/Menu/Check-Box-and-Radio-Button.md +++ b/uwp/Menu/Check-Box-and-Radio-Button.md @@ -9,7 +9,7 @@ documentation: ug # CheckBox and RadioButton in UWP Menu (SfMenu) -UWP Menu provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. +`SfMenu` provides a support for selecting several items. `SfMenuItem` can be changed as checkable by setting the `IsCheckable` property of the `SfMenuItem` to “true”. You can change the icon type (Check Box or Radio Button) by using the `CheckIconType` property, also it can be checked by using the `IsChecked` property. ## Add Check Box and Radio Button in SfMenuItem diff --git a/uwp/Menu/Expand-Modes.md b/uwp/Menu/Expand-Modes.md index e81c68bb..03752955 100644 --- a/uwp/Menu/Expand-Modes.md +++ b/uwp/Menu/Expand-Modes.md @@ -9,7 +9,7 @@ documentation: ug # Expand Modes in UWP Menu (SfMenu) -The `UWP Menu` provides two expand modes for opening the submenu of an `SfMenuItem`: `ExpandOnClick` and `ExpandOnMouseOver`. These modes allow the submenu to open either by clicking the menu item or by hovering the mouse over it. The expand mode can be configured using the `ExpandMode` property. By default, submenus open when the mouse hovers over an `SfMenuItem`. +The `SfMenu` provides two expand modes for opening the submenu of an `SfMenuItem`: `ExpandOnClick` and `ExpandOnMouseOver`. These modes allow the submenu to open either by clicking the menu item or by hovering the mouse over it. The expand mode can be configured using the `ExpandMode` property. By default, submenus open when the mouse hovers over an `SfMenuItem`. ## Open SubMenu on Click diff --git a/uwp/Menu/Getting-Started.md b/uwp/Menu/Getting-Started.md index 183b9bdf..102d14b7 100644 --- a/uwp/Menu/Getting-Started.md +++ b/uwp/Menu/Getting-Started.md @@ -9,7 +9,7 @@ documentation: ug # Getting Started with UWP Menu (SfMenu) -This section explains how to create the UWP Menu control. +This section explains how to create the `SfMenu` control. ## Adding UWP Menu Control @@ -37,7 +37,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> {% endtabs %} -2.Now add the UWP Menu control with a required optimal name using the included namespace +2.Now add the `SfMenu` control with a required optimal name using the included namespace {% tabs %} @@ -52,7 +52,7 @@ xmlns:menu="using:Syncfusion.UI.Xaml.Controls.Navigation"> ## Adding SfMenuItems to the Control -Here `SfMenuItems` are added as the children of the UWP Menu. +Here `SfMenuItems` are added as the children of the `SfMenu`. {% tabs %} diff --git a/uwp/Menu/Orientation.md b/uwp/Menu/Orientation.md index e01fa00a..8e84fc66 100644 --- a/uwp/Menu/Orientation.md +++ b/uwp/Menu/Orientation.md @@ -9,21 +9,21 @@ documentation: ug # Orientation in UWP Menu (SfMenu) -The `Orientation` property is used to arrange the UWP Menu items horizontally or vertically. +The `SfMenu` control can align its content vertically and horizontally by using the `Orientation` property. ## Change Orientation of SfMenuItem -Items of UWP Menu arranged horizontally, when the value of the `Orientation` property is set to Horizontal. +Items of `SfMenu` arranged horizontally, when the value of the `Orientation` property is set to Horizontal. ![Orientation-img1](Orientation-images/Orientation-img1.jpg) -Similarly, when the value of the `Orientation` property is set to Vertical, the Items of UWP Menu will be arranged vertically. +Similarly, when the value of the `Orientation` property is set to Vertical, the Items of `SfMenu` will be arranged vertically. ![Orientation-img2](Orientation-images/Orientation-img2.jpg) -`Orientation` of UWP Menu can be changed as mentioned in the code snippet. +`Orientation` of `SfMenu` can be changed as mentioned in the code snippet. {% tabs %} diff --git a/uwp/Menu/Overview.md b/uwp/Menu/Overview.md index 8d34d24c..ec1514b7 100644 --- a/uwp/Menu/Overview.md +++ b/uwp/Menu/Overview.md @@ -10,7 +10,7 @@ documentation: ug # About Syncfusion® UWP Menu (SfMenu) Control -The UWP Menu supports the hierarchical organization of items associated with commands and event handlers. It contains a collection of `SfMenuItem` objects that can be expanded to display additional menu items or perform a specific action when clicked. +The `SfMenu` supports the hierarchical organization of items associated with commands and event handlers. It contains a collection of `SfMenuItem` objects that can be expanded to display additional menu items or perform a specific action when clicked. ## Features: diff --git a/uwp/Menu/Populating-Items.md b/uwp/Menu/Populating-Items.md index d70d022d..e21d2e5b 100644 --- a/uwp/Menu/Populating-Items.md +++ b/uwp/Menu/Populating-Items.md @@ -9,15 +9,15 @@ documentation: ug # Populating Items in UWP Menu (SfMenu) -`SfMenuItem` can be added as items of UWP Menu. Items can be added using `Items` or `ItemsSource` property. +`SfMenuItem` can be added as items of `SfMenu`. Items can be added using `Items` or `ItemsSource` property. ## Populating Items through adding SfMenuItem -UWP Menu accepts `SfMenuItem` as its children when added directly. +`SfMenu` accepts `SfMenuItem` as its children when added directly. ### Adding Items to the Control -Here five `SfMenuItems` are added as the children of the UWP Menu. +Here five `SfMenuItems` are added as the children of the `SfMenu`. {% tabs %} @@ -64,7 +64,7 @@ sfMenu.Items.Add(new SfMenuItem { Header = "Layout" }); ## Populating Items through Binding -UWP Menu accepts any business object collection to be bound to its `ItemsSource` property. +`SfMenu` accepts any business object collection to be bound to its `ItemsSource` property. ### Adding items to the control @@ -174,7 +174,7 @@ MenuCollection.Add(new Model() { Header = "Layout" }); -3.Bind the MenuCollection to `ItemsSource` property of UWP Menu Control. +3.Bind the MenuCollection to `ItemsSource` property of `SfMenu` Control. {% tabs %} From f50053ec2ea99f36c4af982171af9b5c852a0254 Mon Sep 17 00:00:00 2001 From: sathiyathanam Date: Tue, 22 Sep 2026 19:39:40 +0530 Subject: [PATCH 4/5] UWP-1051665 - Quotations Text changes reverted. --- uwp/Radial-Menu/Icon.md | 2 +- uwp/Radial-Menu/Populating-Items.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/uwp/Radial-Menu/Icon.md b/uwp/Radial-Menu/Icon.md index 56fcd885..335a4616 100644 --- a/uwp/Radial-Menu/Icon.md +++ b/uwp/Radial-Menu/Icon.md @@ -9,7 +9,7 @@ documentation: ug # Icon in UWP Radial Menu (SfRadialMenu) -The Icon property of the UWP Radial Menu is used to customize the icon displayed in the center of UWP Radial Menu circle. +The `Icon` property is used to customize the icon displayed at the center of the UWP Radial Menu. {% tabs %} diff --git a/uwp/Radial-Menu/Populating-Items.md b/uwp/Radial-Menu/Populating-Items.md index b7ea3942..483e1190 100644 --- a/uwp/Radial-Menu/Populating-Items.md +++ b/uwp/Radial-Menu/Populating-Items.md @@ -11,7 +11,7 @@ documentation: ug ## Items Source -UWP Radial Menu items can be populated with the business object collection. Let us create a UWP Radial Menu which will show the list of Application commands. +UWP Radial Menu items can be populated from a collection of business objects. The following example demonstrates how to display a list of application commands. The Application command model look likes below. From 77950dc74c5a45672509344dbb3b425c50075de8 Mon Sep 17 00:00:00 2001 From: sathiyathanam Date: Tue, 22 Sep 2026 22:43:39 +0530 Subject: [PATCH 5/5] 1054210 - CI Issue resolved. --- uwp/Menu/Expand-Modes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwp/Menu/Expand-Modes.md b/uwp/Menu/Expand-Modes.md index 03752955..e4b02406 100644 --- a/uwp/Menu/Expand-Modes.md +++ b/uwp/Menu/Expand-Modes.md @@ -9,7 +9,7 @@ documentation: ug # Expand Modes in UWP Menu (SfMenu) -The `SfMenu` provides two expand modes for opening the submenu of an `SfMenuItem`: `ExpandOnClick` and `ExpandOnMouseOver`. These modes allow the submenu to open either by clicking the menu item or by hovering the mouse over it. The expand mode can be configured using the `ExpandMode` property. By default, submenus open when the mouse hovers over an `SfMenuItem`. +The `SfMenu` provides two expand modes for opening the submenu of an `SfMenuItem`: `ExpandOnClick` and `ExpandOnMouseOver`. These modes allow the submenu to open either by clicking the menu item or by hovering the mouse over it. The expand mode can be configured using the `ExpandMode` property. By default, a submenu opens when the mouse hovers over an `SfMenuItem`. ## Open SubMenu on Click