ThumbButtonInfo.DismissWhenClicked Property

Definition

Gets or sets a value that indicates whether the taskbar thumbnail closes when the thumbnail button is clicked.

public:
 property bool DismissWhenClicked { bool get(); void set(bool value); };
public bool DismissWhenClicked { get; set; }
member this.DismissWhenClicked : bool with get, set
Public Property DismissWhenClicked As Boolean

Property Value

true if the thumbnail closes; otherwise, false. The default is false.

Examples

The following example shows how to create a ThumbButtonInfo in markup. The ThumbButtonInfo is bound to the MediaCommands.Stop command. It is configured to close when the button is clicked. This example is part of a larger example provided for the TaskbarItemInfo class.

<ThumbButtonInfo
    DismissWhenClicked="True"
    Command="MediaCommands.Stop"
    CommandTarget="{Binding ElementName=btnStop}"
    Description="Stop"
    ImageSource="{StaticResource ResourceKey=StopImage}"/>

Remarks

By default, the taskbar thumbnail remains visible when a thumbnail button is clicked. To make the thumbnail close when a thumbnail button is clicked, set the DismissWhenClicked property to true.

Applies to