windowsforms-devexpress-dot-xtraeditors-dot-repository-dot-repositoryitempopupbase-658185aa.md
Gets or sets whether the popup window’s contents are displayed during resize operations.
Namespace : DevExpress.XtraEditors.Repository
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[Browsable(false)]
[DefaultValue(ResizeMode.Default)]
[DXCategory("Behavior")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual ResizeMode PopupResizeMode { get; set; }
<Browsable(False)>
<EditorBrowsable(EditorBrowsableState.Never)>
<DXCategory("Behavior")>
<DefaultValue(ResizeMode.Default)>
Public Overridable Property PopupResizeMode As ResizeMode
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraEditors.Controls.ResizeMode | Default |
A ResizeMode enumeration value that specifies whether the popup window’s contents are displayed during resize operations. The ResizeMode.Default value is equivalent to LiveResize.
|
If the PopupResizeMode property is set to LiveResize or Default , the window’s contents are displayed during resize operations. If the PopupResizeMode property is set to FrameResize , the popup window’s contents are not displayed when resizing the window. In this case, the window’s bounds are indicated by a frame.
See Also