# Decreasing the Size of the Center Button

Get started with Menus and Toolbars for WinForms. Create versatile menus and docking/floating toolbars. See more in documentation here.

## Content



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

![Button in Radial menu](https://cdn.mescius.io/document-site-files/images/a27cb622-e6d9-4efc-a0b0-0c31245fd632/documentsgraphics/defaultbuttonsize.png)

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

```csharp
c1RadialMenu1.ButtonRadius = 15;
```

```vbnet
c1RadialMenu1.ButtonRadius = 15
```

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

![Radial Menu](https://cdn.mescius.io/document-site-files/images/a27cb622-e6d9-4efc-a0b0-0c31245fd632/documentsgraphics/decreasedbuttonradius15.png)

## See Also

[RadialMenu Tutorial](/componentone/docs/win/online-menus-toolbar/RadialMenuOverview/C1RadialMenuTutorial)