wpf-devexpress-dot-xpf-dot-bars-dot-popupmenubase-9899a2d2.md
Gets or sets if BarItemLinks within the current popup should be arranged in multiple columns. This is a dependency property.
Namespace : DevExpress.Xpf.Bars
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public bool MultiColumn { get; set; }
Public Property MultiColumn As Boolean
| Type | Description |
|---|---|
| Boolean |
true if BarItemLinks within the current popup should be arranged in multiple columns; otherwise, false.
|
By default, all BarItemLinks within a popup are arranged in a single column. If you want to change this behavior, you can use the MultiColumn and PopupMenuBase.MaxColumnHeight properties. The PopupMenuBase.MaxColumnHeight property specifies the maximum height of a column. If the MultiColumn property is set to true, every column will contain as many BarItemLinks as can be held without exceeding the PopupMenuBase.MaxColumnHeight property value.
Alternatively, you can use the PopupMenuBase.MaxRowCount property to set the maximum number of BarItemLinks in a single column. This property has a higher priority than previous ones.
See Also