'How to keep Tooltip open in WinUI3?
How can I force a tooltip to stay open or at least increase the duration in winui3? Most examples I found are either for wpf or uwp and none of seems to work.
Solution 1:[1]
I am afraid there is no property that lets you keep the ToolTip visible for more than a short period of time in UWP or WinUI 3.
What you can do is to replace the ToolTip with a Popup and control its visibility programmatically by setting the IsOpen property.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | mm8 |
