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

BarButtonItem(BarManager, String) Constructor

Creates a new instance of the BarButtonItem class.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Navigation

Declaration

public BarButtonItem(
    BarManager manager,
    string caption
)

Parameters

Name Type Description
manager BarManager

A BarManager class instance specifying the 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.

Remarks

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

See Also