Skip to main content
Bar

BarButtonItem(BarManager, String) Constructor

Creates a new instance of the BarButtonItem class.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: 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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BarButtonItem(BarManager, String) 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