Skip to main content

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

WindowsUIButtonPanel.Merge(WindowsUIButtonPanel) Method

Merges this WindowsUIButtonPanel to the target WindowsUIButtonPanel.

Namespace: DevExpress.XtraBars.Docking2010

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void Merge(
    WindowsUIButtonPanel buttonsPanel
)

#Parameters

Name Type Description
buttonsPanel WindowsUIButtonPanel

A WindowsUIButtonPanel to which this WindowsUIButtonPanel should be merged.

#Remarks

The Merge method merges two WindowsUIButtonPanels, moving all buttons from the source panel to the target panel. After that, the source panel is hidden. Commonly, this behavior is used to avoid duplicating UI elements in parent and child windows of an MDI application. See the Ribbon Merging and Bar Merging topics for examples.

To unmerge WindowsUIButtonPanels, call the WindowsUIButtonPanel.Unmerge method.

See Also