Skip to main content

WindowsUIView.AllowCaptionDragMove Property

Gets or sets whether end-users can drag the WindowsUIView‘s caption area to move the parent form.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public DefaultBoolean AllowCaptionDragMove { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A DefaultBoolean enumerator value that specifies whether end-users can drag the WindowsUIView‘s caption area to move the parent form.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Remarks

According to WindowsUI concepts, the application form’s FormBorderStyle property should be set to None. If so, end-users will not be able to move the application form, because no form borders are visible. Set the AllowCaptionDragMove property toDefaultBoolean.True to allow end-users to drag the WindowsUIView‘s caption area in order to move the parent form. The AllowCaptionDragMove property does not depend on whether or not the WindowsUIView.Caption property is specified.

See Also