我有一个TextBlock,在Silverlight XAML中以90度旋转:
<TextBlock Name="txbPW" Text="West">
<TextBlock.RenderTransform>
<RotateTransformAngle="90" />
</TextBlock.RenderTransform>
</TextBlock>
我想为它添加一个工具提示(不是旋转)。有什么帮助吗?
答案 0 :(得分:2)
你的问题是什么?你想显示工具提示也旋转吗?或者不?或者您只是要求在文本块中添加工具提示???
如果您只想在文本块中添加工具提示,则必须执行以下操作:
<TextBlock Name="txbPW" Text="West">
<TextBlock.RenderTransform>
<RotateTransformAngle="90" />
</TextBlock.RenderTransform>
<ToolTipService.ToolTip>
<ToolTip Content="ToolTip"></ToolTip>
</ToolTipService.ToolTip>
</TextBlock>
http://bouncetadiss.blogspot.com.es/2010/02/tooltip-for-textblock-in-silverlight.html