Click or drag to resize
DigitalRuneToolTipManagerCreateToolTipContent Property
Gets or sets a callback that creates a UIControl for a ToolTip.

Namespace: DigitalRune.Game.UI
Assembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax
public Func<Object, UIControl> CreateToolTipContent { get; set; }

Property Value

Type: FuncObject, UIControl

A method that creates a UIControl for a ToolTip. This method receives the value of the ToolTip property and must return a UIControl which should be shown in the ToolTipControl.

If the method is null or returns null, the ToolTip will be wrapped in a TextBlocks and shown in the ToolTipControl.

The default is .

See Also