Skip to main content
A newer version of this page is available. .

DocumentManager.ShowThumbnailsInTaskBar Property

Gets or sets whether thumbnails for the Documents within this DocumentManager should be displayed in Windows Task Bar.

Namespace: DevExpress.XtraBars.Docking2010

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ShowThumbnailsInTaskBar { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A DefaultBoolean enumerator value that specifies whether thumbnails for the Documents within this DocumentManager should be displayed in Windows Task Bar.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

By default, a DocumentManager-based application displays the single Task Bar thumbnail for the entire form (see the figure below).

Document Manager - TaskBar Thumbnails 1

If the ShowThumbnailsInTaskBar property is set to DefaultBoolean.True, each non-empty Document will display its own thumbnail. Clicking it selects the corresponding Document. The figure below illustrates this behavior.

Document Manager - TaskBar Thumbnails 2

You can select the maximum number of thumbnails via the DocumentManager.MaxThumbnailCount property. If the number of thumbnails exceeds this value, only thumbnails for the most recently selected Documents will be displayed.

The ShowThumbnailsInTaskBar property is designed to be used within a TabbedView. Its proper functioning in any other View cannot be guaranteed.

Note

The ShowThumbnailsInTaskBar property requires a desktop that runs Windows Vista (minimum supported client)/Windows Server 2008 (minimum supported server) or a newer operating system version.

See Also