Jump to content

WPF - How to show ToolTip when control is disabled

Posted on:February 10, 2011 at 01:00 AM

By default tooltip is hidden when control is disabled. There is simple way to enable it. Code below show how to do that:

ToolTipService.SetShowOnDisabled(uxSampleButton, true);

So, as you can see the solution is not complicated :) and I hope this note will save some time other coders.

Download sample code: DisabledTooltipExample.zip