ComponentOne Menus and Toolbars for WinForms
RadialMenu Overview / RadialMenu Appearance and Behavior / Decreasing the Size of the Center Button
In This Topic
    Decreasing the Size of the Center Button
    In This Topic

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

    Button in Radial menu

    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:

    Radial Menu

    See Also