Skip to main content

WidgetView.AllowResizeAnimation Property

Gets or sets whether Documents within this WidgetView are resized using a smooth animation effect.

Namespace: DevExpress.XtraBars.Docking2010.Views.Widget

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

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

Property Value

Type Default Description
DefaultBoolean Default

True if Documents within this WidgetView are resized using a smooth animation effect; False if not; Default uses the WindowsFormsSettings.AnimationMode global setting.

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

The AllowResizeAnimation property specifies whether Documents are resized with a smooth animation effect immediately, or after short delay as the parent form resizes. The figure below illustrates the WidgetView with the AllowResizeAnimation property set to DefaultBoolean.True.

WidgetView - Resize Animation

If the AllowResizeAnimation property is set to Default, the behavior is controlled by the WindowsFormsSettings.AnimationMode global setting. If the global setting is set to EnableAll, the animation is enabled; otherwise, the animation is disabled.

You can also specify whether or not to animate Document state change operations (Maximize, Restore, Collapse) via the WidgetView.AllowDocumentStateChangeAnimation property.

See Also