Silverlight:在其他对象周围流动文本

发布于 2024-12-12 07:42:27 字数 203 浏览 0 评论 0原文

我需要在其他一些对象周围流动一些文本。基本上是这样的:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你没皮卡萌 2024-12-19 07:42:27

这在 Silverlight 5 中变得更容易。您可以将 RichTextBlock 与 RichTextBlockOverflow 元素结合使用。您可以在 XAML 中链接多个 RichTextBlockOverflow。任何不适合 RichTextBlock 的内容都会溢出到链接的 RichTextBlockOverflow 元素中。

<RichTextBlock x:Name="MainTextBlock"
               OverflowContentTarget="{Binding ElementName=OverflowTextBox}"
               HorizontalAlignment="Left"
               Grid.Column='0'>
  <Paragraph>Content here..</Paragraph>
  <Paragraph>Content here..</Paragraph>
 </RichTextBlock>
 <RichTextBlockOverflow x:Name="OverflowTextBox"
                       HorizontalAlignment="Right"
                       Grid.Column='1' />

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.

<RichTextBlock x:Name="MainTextBlock"
               OverflowContentTarget="{Binding ElementName=OverflowTextBox}"
               HorizontalAlignment="Left"
               Grid.Column='0'>
  <Paragraph>Content here..</Paragraph>
  <Paragraph>Content here..</Paragraph>
 </RichTextBlock>
 <RichTextBlockOverflow x:Name="OverflowTextBox"
                       HorizontalAlignment="Right"
                       Grid.Column='1' />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文