Skip to main content
A newer version of this page is available. .

WindowsUIButton(String, Image, Int32, ButtonStyle, Int32) Constructor

Initializes a new instance of the WindowsUIButton class with the specified settings, including caption, icon, button style and group index.

Namespace: DevExpress.XtraBars.Docking2010

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public WindowsUIButton(
    string caption,
    Image image,
    int imageIndex,
    ButtonStyle style,
    int groupIndex
)

Parameters

Name Type Description
caption String

A String value that is the newly created WindowsUIButton‘s caption.

image Image

An Image that is the newly created WindowsUIButton‘s icon.

imageIndex Int32

An Int32 value that specifies an image within the IButtonProperties.Images collection as the newly created WindowsUIButton‘s icon.

style ButtonStyle

A ButtonStyle enumerator value specifying whether the newly created WindowsUIButton is a regular (push) or check button.

groupIndex Int32

An Int32 value that specifies a radio button group to which the newly created WindowsUIButton belongs (for check-buttons only).

See Also