Skip to main content
Bar

BarLargeButtonItem(BarManager, String) Constructor

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

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

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.

See Also