Silverlight:在其他对象周围流动文本
我需要在其他一些对象周围流动一些文本。基本上是这样的:
XXXX This is some
XXXX long text that
XXXX is being
wrapped around the
image shown with X's.
在我的理想世界中,这将是一个实际的文本框,但只需显示在其他地方编辑的文本就可以了。
I need to flow some text around some other objects. Basically something like this:
XXXX This is some
XXXX long text that
XXXX is being
wrapped around the
image shown with X's.
In my ideal world this would be an actual textbox, but simply showing text that is edited elsewhere would work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 Silverlight 5 中变得更容易。您可以将 RichTextBlock 与 RichTextBlockOverflow 元素结合使用。您可以在 XAML 中链接多个 RichTextBlockOverflow。任何不适合 RichTextBlock 的内容都会溢出到链接的 RichTextBlockOverflow 元素中。
This gets easier in Silverlight 5. You can use the RichTextBlock in conjunction with the RichTextBlockOverflow element. You can link multiple RichTextBlockOverflow within your XAML. Any content that doesn't fit in the RichTextBlock will overflow into the linked RichTextBlockOverflow element.