本文介绍了Xaml工具提示中的项目符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一切都在标题中.我希望能够在工具提示中添加一些项目符号列表,但到目前为止,还没有找到任何简单的方法.
Everything is in the title. I'd like to be able to add some bullet list in a Tooltip but so far haven't found any simple way.
提前谢谢!
推荐答案
您要使用BulletDecorator
作为ToolTip
的一部分.示例:
You want to use the BulletDecorator
as part of the ToolTip
. Example:
<ToolTip>
<BulletDecorator>
<BulletDecorator.Bullet>
<Ellipse Height="10" Width="10" Fill="Blue"/>
</BulletDecorator.Bullet>
<TextBlock>Text with a bullet!</TextBlock>
</BulletDecorator>
</ToolTip>
For more information, see http://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.bulletdecorator(v=vs.100).aspx
这篇关于Xaml工具提示中的项目符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!