Click or drag to resize
AB4D logo

BaseUIElement3DToolTip Property

Gets or sets a object that will be shown as ToolTip when the mouse is over this 3D object.

Namespace: Ab3d.UIElements
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public Object ToolTip { get; set; }

Property Value

Object
Remarks

The ToolTip can be a simple string or it can be any WPF control (to show a custom ToolTip).

Note  Note
Because 3D objects are not a regular 2D UIElements, it is not possible to set a ToolTipService's Placement to any value that would require the knowladge of the 2D size of the object - for example Right or Bottom.
Example
XAML
<uiElements:BoxUIElement3D Size="10 10 10" Material="Silver" ToolTip="This is a simple tooltip"/>
See Also