wpf-devexpress-dot-xpf-dot-bars-a802a3aa.md
Contains values that specify whether the current container’s elements are merged with elements of outside containers or elements of the same container, or both. A dedicated option allows you to disable merging.
Namespace : DevExpress.Xpf.Bars
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public enum ElementMergingBehavior
Public Enum ElementMergingBehavior
| Name | Description |
|---|---|
Undefined |
The merging feature is enabled or disabled for the current container, as specified by the merging settings of outer and inner containers. By default, merging is disabled.
|
| None |
Merging is disabled for elements of a container.
|
| All |
Elements are merged with other elements defined in parent name scopes (see BarNameScope.IsScopeOwner).
|
| InternalWithInternal |
A container’s elements are only merged with other elements of the same container provided that they are defined in parent name scopes (see BarNameScope.IsScopeOwner).
|
| InternalWithExternal |
A container’s elements are only merged with elements of outside containers defined in parent name scopes (see BarNameScope.IsScopeOwner).
|
Use the MergingProperties.ElementMergingBehavior property to enable or disable merging.
See Also