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.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
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