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

RepositoryItemTokenEdit.PopupPanel Property

Gets or sets the FlyoutPanel assigned to this TokenEdit.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(null)]
[SmartTagProperty("PopupPanel", "Appearance", SortOrder = 10)]
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