Xaml
<Button x:Name="MyButton" Content="Hello!" Width="50" Height="30">
<ToolTipService.ToolTip>
<TextBlock x:Name="ToolTip" Text="Click me!"></TextBlock>
</ToolTipService.ToolTip>
</Button>
C#
ToolTipService.SetToolTip( MyButton, new TextBlock() { Text = "Click me!" } );
你也可以用其它的控件替换TextBlock,比如图片控件或者方形控件。
No comments:
Post a Comment