其他分享
首页 > 其他分享> > WPF使用FlowDocument实现图文混排

WPF使用FlowDocument实现图文混排

作者:互联网

原文:WPF使用FlowDocument实现图文混排

代码:

<RichTextBox CaretBrush="#fff" Background="Transparent" BorderThickness="0">
    <FlowDocument FontSize="16" Foreground="#fff">
        <Paragraph LineHeight="22">
            <Run Text="{Binding Name}"></Run>
            <Image Height="16" Width="32" Stretch="Fill" Source="/SunCreate.Vipf.Client.Resources;component/Image/MainPage/重要.png" />
        </Paragraph>
    </FlowDocument>
</RichTextBox>
View Code

效果图:

 

标签:Code,FlowDocument,效果图,图文混排,WPF,View
来源: https://www.cnblogs.com/lonelyxmas/p/11354976.html