ComponentOne Menus and Toolbars for WinForms
Decreasing the Size of the Center Button
RadialMenu Overview > RadialMenu Appearance and Behavior > Decreasing the Size of the Center Button

The default size of the central button is 28 and appears similar to the following:

To decrease the size of the center button from its default size of 28 to 10, use the following code:

C#
Copy Code
c1RadialMenu1.ButtonRadius = 15;
Visual Basic
Copy Code
c1RadialMenu1.ButtonRadius = 15

After the ButtonRadius size is decreased from 28 to 15, it will appear similar to the following:

See Also