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

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.v24.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.

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