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

RepositoryItemLookUpEditBase.ShowFooter Property

Gets or sets whether the dropdown window’s footer region is visible.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(true)]
[DXCategory("Behavior")]
public virtual bool ShowFooter { get; set; }

#Property Value

Type Default Description
Boolean true

true if the footer is visible; otherwise, false.

#Remarks

The ShowFooter property controls the visibility of the footer region in the dropdown window. The footer contains a close button. Also you can drag the footer’s bottom right edge to resize the dropdown if RepositoryItemLookUpEditBase.PopupSizeable is set to true. If the footer is hidden, you cannot resize the dropdown even if RepositoryItemLookUpEditBase.PopupSizeable is set to true. Pressing the close button closes the popup and discards the user’s selection (made by using the Arrow keys). This is similar to pressing the Esc key or calling the PopupBaseEdit.CancelPopup method.

The following images show lookup editors with and without the footer region.

ShowFooter value Image
true LookupEdit_ShowFooter_true
false LookupEdit_ShowFooter_false
See Also