Skip to main content
All docs
V24.1

DxPopup.AllowDragByHeaderOnly Property

Specifies whether a user can start window drag-and-drop in the header only or anywhere in the client area.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool AllowDragByHeaderOnly { get; set; }

Property Value

Type Default Description
Boolean true

true to allow users to drag the window by its header only; false to allow users to drag the window by its header, body, or footer.

Remarks

When the AllowDrag property is set to true, users can drag the window by its header. Disable the AllowDragByHeaderOnly option and users can start a drag-and-drop operation in any element – header, body, or footer.

<DxPopup AllowDrag="true"
         AllowDragByHeaderOnly="false"
         HeaderText="Popup"
         @bind-Visible="@PopupVisible"
         BodyText="@Constants.Text" />

Run Demo: Popup - Dragging

See Also