Skip to main content
Bar

BarButtonItem(BarManager, String, Int32) Constructor

Creates a new instance of the BarButtonItem class.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v24.1.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

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

Parameters

Name Type Description
manager BarManager

A BarManager object specifying 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 assigned to the item by its index within the source collection. This value is assigned to the BarItem.ImageIndex property.

Remarks

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

See Also