Tooltip with TooltipService and dynamic ChildContent #1412
-
Is it possible to use the
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The problem is that the To "force" a refresh, you need to update (add/remove) a tooltip in this private void IncrementCount()
{
currentCount++;
// Force the TooltipServiceProvider to be refreshed
var options = new TooltipOptions();
TooltipService.Add(options);
TooltipService.Remove(options.Id);
} To simplify this code, we could add a |
Beta Was this translation helpful? Give feedback.
I added this PR #1413