Articles in this section
Category / Section

How to change the size of the SfRadialMenu in WinRT Radial Menu ?

1 min read
WinRT Radial Menu

The size of the SfRadialMenu can be changed as follows:

RadiusX and RadiusY:

Set the property, RadiusX to change the width of the SfRadialMenu. Set the property, RadiusY to change the height of the SfRadialMenu.

The following code demonstrates the same.

 

MainWindow.xaml

<navigation:SfRadialMenu RadiusX="180" RadiusY="180">
   <navigation:SfRadialMenuItem Header="Cut"/>
   <navigation:SfRadialMenuItem Header="Copy"/>
   <navigation:SfRadialMenuItem Header="Paste"/>
</navigation:SfRadialMenu>

MainWindow.xaml.cs

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:

 

Conclusion

I hope you enjoyed learning about how to change the size of the SfRadialMenu in WinRT Radial Menu.

You can refer to our WinRT Radial Menu 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 WinRT Radial Menu 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