将背景颜色应用于整行文本
我在 WPF 应用程序中有一个 RichTextBox。我想对每行文本应用替代颜色。我已将“背景”属性设置为所需的颜色,但由于文本长度的差异,只有包含文本的部分才会获得背景颜色。如何设置属性以便将整行设置为所需的背景颜色。
一种不优雅的解决方案是填充一些空格,但如果 RichTextBox 布局发生变化,则需要通过反复试验来更改代码。
还有更好的方法吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果所有行的高度相同,那么您可以将背景图形应用于 RichTextBox 本身,这将具有相同的效果(根据需要设置尺寸/颜色):
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):尝试使用
List
来突出显示具有背景颜色的行。当任何人在RichTextBox.TextChanged
事件中更改 Text 时,刷新ListItem
集合(根据文本中的行数)。我认为您可以通过覆盖其样式来更改列表的项目符号外观和感觉。
Try to use
List
which highlights the rows of lines with a background color. Refresh theListItem
collection (according to the number of lines in the text) when anyone changes Text inRichTextBox.TextChanged
event.I think you can change the bulleted look n feel of the list by overriding its style.
我想知道如何使其与动态生成的项目一起工作。对于我的实际情况,我使用了额外的空格。目前,这就是我要走的路。
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.