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

BarLargeButtonItem(BarManager, String) Constructor

Creates an instance of the BarLargeButtonItem class with a predefined caption.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public BarLargeButtonItem(
    BarManager manager,
    string caption
)

Parameters

Name Type Description
manager BarManager

A BarManager object that specifies the Bar Manager that will own the created item.

caption String

A string value specifying the caption of the created item.

Remarks

Use this constructor to create a new item with a predefined caption at runtime.

When an item is created it is automatically appended to the BarManager.Items collection of the Bar Manager specified by the manager parameter. This allows you to add a link associated with the item to one of the bars. Use the Bar.AddItem or Bar.InsertItem method of the desired bar for this purpose.

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