WPF - How to display a tooltip on a hyperlink only when the hyperlink is disabled
问题 This is a more specific description of my problem from a previous question, with a follow-up answer. I had a standard hyperlink defined in XAML: <TextBlock> <Hyperlink IsEnabled="{Binding LinkEnabled}"> <TextBlock Text="{Binding Text}"/> </Hyperlink> </TextBlock> The hyperlink's IsEnabled property is bound to a property on the view model, the value of which can change. I needed to place a tooltip on the hyperlink which would only be displayed if the hyperlink is disabled. 回答1: To show the