Skip to main content
A newer version of this page is available. .

ListBoxEditSettings.ItemsPanel Property

Gets or sets the template that defines the presentation of a container panel used by the editor to arrange its items. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.Settings

Assembly: DevExpress.Xpf.Core.v19.2.dll

Declaration

public ItemsPanelTemplate ItemsPanel { get; set; }

Property Value

Type Description
ItemsPanelTemplate

A ItemsPanelTemplate object that arranges items.

Remarks

By default, the layout of items is defined by the DevExpress.Xpf.Core.DXVirtualizingStackPanel control with the enabled virtualization. In this instance, vertical scrolling is performed item by item. To activate per-pixel scrolling, do the following:

<dxe:ListBoxEdit Name="lbEdit1"
                    Width="150" Height="100"
                    ScrollViewer.CanContentScroll="False"/>
See Also