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

BarButtonItem(BarManager, String, Int32, BarShortcut) Constructor

Creates a new instance of the BarButtonItem class.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v18.2.dll

Declaration

public BarButtonItem(
    BarManager manager,
    string caption,
    int imageIndex,
    BarShortcut shortcut
)

Parameters

Name Type Description
manager BarManager

A BarManager object representing the Bar Manager owning the created item. This value is assigned to the BarItem.Manager property.

caption String

A string value specifying the caption of the created item. This value is assigned to the BarItem.Caption property.

imageIndex Int32

An integer value specifying the image of the created item by its index within the source collection. This value is assigned to the BarItem.ImageIndex property.

shortcut BarShortcut

A BarShortcut object specifying the keyboard shortcut assigned to the created item. This value is assigned to the BarItem.ShortCut property.

Remarks

Use the constructor to create a new bar button item with the predefined caption, image and shortcut at runtime. The generated item is appended to the BarManager.Items collection of the Bar Manager specified by the manager parameter.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BarButtonItem(BarManager, String, Int32, BarShortcut) constructor.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also