ToolTip
最后更新于
最后更新于
<Border Margin="5"
Padding="10"
Background="{DynamicResource ThemeAccentBrush}"
ToolTip.Tip="This is a ToolTip">
<TextBlock>Hover Here</TextBlock>
</Border><Border Margin="5"
Padding="10"
Background="{DynamicResource ThemeAccentBrush}"
ToolTip.Placement="Bottom">
<ToolTip.Tip>
<StackPanel>
<TextBlock Classes="h1">ToolTip</TextBlock>
<TextBlock Classes="h2">A control which pops up a hint when a control is hovered</TextBlock>
</StackPanel>
</ToolTip.Tip>
<TextBlock>Hover Here for a Bottom ToolTip</TextBlock>
</Border>