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

StyleController.PopupBorderStyle Property

Gets or sets the popup border style of target dropdown editors.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(PopupBorderStyles.Default)]
[DXCategory("Appearance")]
public virtual PopupBorderStyles PopupBorderStyle { get; set; }

#Property Value

Type Default Description
PopupBorderStyles Default

The popup border style of target dropdown editors.

Available values:

Name Description
Default

Borders are flat. This style is reserved for future use. Currently, the Default style is the same as Flat.

PopupEdit_PopupBorderStyle_Default

Simple

Borders are thin and drawn using a single line.

PopupEdit_PopupBorderStyle_Simple

Flat

Borders are flat.

PopupEdit_PopupBorderStyle_Flat

Style3D

Borders are three-dimensional.

PopupEdit_PopupBorderStyle_Style3D.gif

NoBorder

There are no borders.

PopupEdit_PopupBorderStyle_NoBorder

#Remarks

Popup editors bound to a StyleController can override the StyleController.PopupBorderStyle setting with their own RepositoryItemPopupBase.PopupBorderStyle property (accessible from the Editor.Properties object).

See Also