1. Use the ShowOnDisabled attached property of the ToolTipService class! From XAML, this would look like the following on a Button:
<Button ToolTipService.ShowOnDisabled=”True”>
</Button>
2. Or from C# code, you can call the static method corresponding to the attached property:
ToolTipService.SetShowOnDisabled(myButton, true);

Join the conversation! Your thoughts help the community grow.