ToolTip.StaysOpen Property

Definition

Gets or sets a value that indicates whether an open ToolTip remains open until the user clicks the mouse when the mouse is not over the ToolTip.

public:
 property bool StaysOpen { bool get(); void set(bool value); };
[System.ComponentModel.Bindable(true)]
public bool StaysOpen { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.StaysOpen : bool with get, set
Public Property StaysOpen As Boolean

Property Value

true if the ToolTip stays open until it is closed by the user clicking the mouse button outside the ToolTip; otherwise, false. The default is true.

Attributes

Exceptions

Occurs when StaysOpen is set to false when a tooltip is not open.

Remarks

A value of false for the StaysOpen property is not supported for a ToolTip when it is not open. To create a tooltip that stays open until the mouse button is pressed when it is outside the tooltip, you must set both the StaysOpen property and the IsOpen property to true. If StaysOpen is set to false when the tooltip is not open, a NotSupportedException occurs.

Dependency Property Information

Identifier field StaysOpenProperty
Metadata properties set to true None

Applies to