将背景颜色应用于整行文本

发布于 2024-12-06 23:43:21 字数 203 浏览 0 评论 0原文

我在 WPF 应用程序中有一个 RichTextBox。我想对每行文本应用替代颜色。我已将“背景”属性设置为所需的颜色,但由于文本长度的差异,只有包含文本的部分才会获得背景颜色。如何设置属性以便将整行设置为所需的背景颜色。

一种不优雅的解决方案是填充一些空格,但如果 R​​ichTextBox 布局发生变化,则需要通过反复试验来更改代码。

还有更好的方法吗?

I have a RichTextBox in a WPF Application. I would like to apply alternate coloring to each lines of texts. I have set the Background property to be of the desired color, but due to differences in text length, only the portion containing text gets the background color. How to set properties so that the entire line is set to the desired background color.

One non-elegant solution is to, pad some spaces, but if RichTextBox layout changes, then the code needs to be changed by trial and error basis.

Any better approach?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

晒暮凉 2024-12-13 23:43:21

如果所有行的高度相同,那么您可以将背景图形应用于 RichTextBox 本身,这将具有相同的效果(根据需要设置尺寸/颜色):

<RichTexBox>
    <RichTexBox.Background>
            <VisualBrush TileMode="Tile" Viewport="0 0 100 100" ViewportUnits="Absolute">
                <VisualBrush.Visual>
                    <StackPanel>
                       <Rectangle Width="100" Height="50" Fill="Red" />
                       <Rectangle Width="100" Height="50" Fill="Blue" />
                    </StackPanel>
                </VisualBrush.Visual>
            </VisualBrush>
    </RichTexBox.Background>
</RichTexBox>

If all the lines are the same height, then you can apply a background graphic to the RichTextBox itself, which would have the same effect (set dimensions / colours as appropriate):

<RichTexBox>
    <RichTexBox.Background>
            <VisualBrush TileMode="Tile" Viewport="0 0 100 100" ViewportUnits="Absolute">
                <VisualBrush.Visual>
                    <StackPanel>
                       <Rectangle Width="100" Height="50" Fill="Red" />
                       <Rectangle Width="100" Height="50" Fill="Blue" />
                    </StackPanel>
                </VisualBrush.Visual>
            </VisualBrush>
    </RichTexBox.Background>
</RichTexBox>
一个人的旅程 2024-12-13 23:43:21

尝试使用 List 来突出显示具有背景颜色的行。当任何人在 RichTextBox.TextChanged 事件中更改 Text 时,刷新 ListItem 集合(根据文本中的行数)。

    <RichTextBox>
        <RichTextBox.Document>
            <FlowDocument>
                <List>
                    <ListItem Background="Red" />
                    <ListItem Background="Green"/>
                    <ListItem Background="Yellow"/>
                </List>
            </FlowDocument>
        </RichTextBox.Document>
    </RichTextBox>

我认为您可以通过覆盖其样式来更改列表的项目符号外观和感觉。

Try to use List which highlights the rows of lines with a background color. Refresh the ListItem collection (according to the number of lines in the text) when anyone changes Text in RichTextBox.TextChanged event.

    <RichTextBox>
        <RichTextBox.Document>
            <FlowDocument>
                <List>
                    <ListItem Background="Red" />
                    <ListItem Background="Green"/>
                    <ListItem Background="Yellow"/>
                </List>
            </FlowDocument>
        </RichTextBox.Document>
    </RichTextBox>

I think you can change the bulleted look n feel of the list by overriding its style.

勿忘心安 2024-12-13 23:43:21

我想知道如何使其与动态生成的项目一起工作。对于我的实际情况,我使用了额外的空格。目前,这就是我要走的路。

I wanted to know how to make this work with Items generated dynamically. For my actual case, I used extra spaces. For now, this is the way for me to go.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文