Class
ScreenTip

Static class providing properties for setting up ScreenTipControl which is an advanced ToolTip-like control with Title, Description and Icon.

Definition

Namespace:Telerik.UI.Xaml.Controls

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public static class ScreenTip

Inheritance: objectScreenTip

Fields

DescriptionProperty

Identifies the Title attached property.

Declaration

cs-api-definition
public static readonly DependencyProperty DescriptionProperty

Field Value

DependencyProperty

IconProperty

Identifies the Icon attached property.

Declaration

cs-api-definition
public static readonly DependencyProperty IconProperty

Field Value

DependencyProperty

TitleProperty

Identifies the Title attached property.

Declaration

cs-api-definition
public static readonly DependencyProperty TitleProperty

Field Value

DependencyProperty

Methods

GetDescription(DependencyObject)

Gets the description.

Declaration

cs-api-definition
public static string GetDescription(DependencyObject obj)

Parameters

obj

DependencyObject

Returns

string

GetIcon(DependencyObject)

Gets the icon.

Declaration

cs-api-definition
public static IconElement GetIcon(DependencyObject obj)

Parameters

obj

DependencyObject

Returns

IconElement

GetTitle(DependencyObject)

Gets the title.

Declaration

cs-api-definition
public static string GetTitle(DependencyObject obj)

Parameters

obj

DependencyObject

Returns

string

SetDescription(DependencyObject, string)

Sets the description.

Declaration

cs-api-definition
public static void SetDescription(DependencyObject obj, string value)

Parameters

obj

DependencyObject

value

string

SetIcon(DependencyObject, IconElement)

Sets the icon.

Declaration

cs-api-definition
public static void SetIcon(DependencyObject obj, IconElement value)

Parameters

obj

DependencyObject

value

IconElement

SetTitle(DependencyObject, string)

Sets the title.

Declaration

cs-api-definition
public static void SetTitle(DependencyObject obj, string value)

Parameters

obj

DependencyObject

value

string