Skip to main content

RepositoryItemTokenEdit.PopupPanel Property

Gets or sets the FlyoutPanel assigned to this TokenEdit.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(null)]
[DXCategory("Appearance")]
public IFlyoutPanel PopupPanel { get; set; }

Property Value

Type Default Description
DevExpress.Utils.IFlyoutPanel null

An IFlyoutPanel object assigned to this TokenEdit.

Remarks

A TokenEdit control allows you to display a FlyoutPanel when an end-user hovers a token at runtime. To assign a panel to the editor, use the PopupPanel property. The panel can be customized based on which token was hovered on the RepositoryItemTokenEdit.BeforeShowPopupPanel event. The figure below illustrates such a peek panel displayed on the ‘September’ tag hover.

TokenEdit - FlyoutPanel

To customize the flyout (peek) panel use the RepositoryItemTokenEdit.PopupPanelOptions property. See the Token Edit Control topic to learn more.

See Also