Articles in this section
Category / Section

How to change the size of the SfRadialMenu in UWP ?

1 min read
RadialMenu

The size of the SfRadialMenu can be changed by setting the properties, RadiusX and RadiusY to change the height and width of the SfRadialMenu.

The following code demonstrates the same.

XAML

<navigation:SfRadialMenu RadiusX="150" RadiusY="150" Name="radialmenu">
  <navigation:SfRadialMenuItem Header="Cut"/>
  <navigation:SfRadialMenuItem Header="Copy"/>
  <navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu>
<navigation:SfRadialMenu Name="radial">
  <navigation:SfRadialMenuItem Header="Cut"/>
  <navigation:SfRadialMenuItem Header="Copy"/>
  <navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu>

 

C#

SfRadialMenu radialMenu = new SfRadialMenu() { RadiusX = 180, RadiusY = 180 };
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Cut" });
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Copy" }); 
radialMenu.Items.Add(new SfRadialMenuItem() { Header = "Paste" });

 

The following screenshot display the SfRadialMenu before and after the size change:

RadialMenuSize

Conclusion

I hope you enjoyed learning about how to  change the size of the SfRadialMenu in UWP.

You can refer to our UWP RadialMenu feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our UWP RadialMenu example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied