Skip to main content
Bar

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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