Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RepositoryItemTokenEdit.PopupPanel Property

Gets or sets the FlyoutPanel assigned to this TokenEdit.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.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