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

ListBoxEdit.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

Assembly: DevExpress.Xpf.Core.v19.1.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"/>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ItemsPanel property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also