using UWP.Markup;
var value = new Button()
.ToolTip("ToolTip") // +4 overloads
.Opacity(0.5);
// doc ⬇️
Custom Methods
the
tooltips
apply to all elements that inherit from theUIElement
class. If the tooltip isnull
orstring.empty
it is notdisplayed
.
Sets the ToolTip
for the UIElement
.
Sets the ToolTip
for the UIElement
.
Sets the ToolTip
for the UIElement
.
ToolTip(object toolTip, PlacementMode placementMode, UIElement placementTarget, Rect? placementRect)
Sets the ToolTip
for the UIElement
.
ToolTip(object toolTip, PlacementMode placementMode, UIElement placementTarget, Rect? placementRect, double horizontalOffset, double verticalOffset, bool isOpen)
Sets the ToolTip
for the UIElement
.
WinUI Methods