Bearbeiten

ThumbButtonInfo.Description Property

Definition

Gets or sets the text to display for the thumbnail button tooltip.

public:
 property System::String ^ Description { System::String ^ get(); void set(System::String ^ value); };
public string Description { get; set; }
member this.Description : string with get, set
Public Property Description As String

Property Value

The text to display for the thumbnail button tooltip. The default is an empty string.

Examples

The following example shows how to create a ThumbButtonInfo in markup. The ThumbButtonInfo is bound to the MediaCommands.Stop command. The tooltip descriptive text is Stop. 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

You can add an image to a thumbnail button, but no property exists for setting text on the thumbnail button face. However, you can set the Description property to add descriptive text that is displayed in a tooltip when the mouse pointer moves over the thumbnail button.

Applies to

See also