BarManagerMergeEventArgs.ChildManager Property
In This Article
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 |
---|---|
Bar |
A Bar |
#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