Skip to main content

AutoSuggestEdit.PopupElement Property

Gets the control placed within the editor’s popup window.

Namespace: DevExpress.Xpf.Editors

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public override FrameworkElement PopupElement { get; }

Property Value

Type Description
FrameworkElement

The control placed within the editor popup.

Remarks

The PopupElement property returns a control that works with the collection of suggestions assigned to the AutoSuggestEdit.ItemsSource property.

Use the PopupBaseEdit.PopupContentTemplate property to define a custom control that should display suggestions in the AutoSuggestEdit‘s popup. The custom control’s x:Name property must be set to “PART_Content”.

If the custom control is not specified, the PopupElement method returns the DevExpress.Xpf.Editors.Popup.AutoSuggestListBox control that is a System.Windows.Controls.ListBox descendant designed to be used in the AutoSuggestEdit‘s popup.

See Also