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

BarManagerMergeEventArgs.ChildManager Property

Gets the Bar Manager of a child MDI form for which the merge mechanism is invoked.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public BarManager ChildManager { get; }

Property Value

Type Description
BarManager

A BarManager instance representing the Bar Manager of the child MDI form.

Remarks

Use the BarManager property to access the Bar Manager of the child MDI form for which the merge mechanism is invoked. The Bar Manager allows you, for instance, to get the collection of bars it owns. Once, you get a bar, you can merge it with the parent form’s bar via a Bar.Merge method call.

The parent form’s Bar Manager can be obtained via the event’s sender parameter.

See the BarManager.Merge topic for more information.

See Also