Skip to main content

Posts

Showing posts from June, 2012

Show tooltip on disabled control

By default are tooltips not showing on disabled controls, but sometimes you want to inform the user about why the control is disabled. Simple add ToolTipService.ShowOnDisabled="true" to the control and the tooltip will always be visible. Example: <Button Content="Example" ToolTipService.ShowOnDisabled="True" /> See more at Microsoft MSDN .