Silverlight 4 RichTextbox 段落边距或类似的?
我正在尝试向 SL4 RichTextBox 添加项目符号。使用 Run / Paragraph 对象并添加正确的项目符号子项似乎是一种简单的方法。但是,当我想对现有段落应用项目符号时,我想缩进该段落的内容。如何将这种样式应用到段落中? Paragraph 的 SL 版本不存在边距。
谢谢。
I'm trying to add bullets to the SL4 RichTextBox. Using the Run / Paragraph objects and adding the correct bullet child seems to be an easy approach. However, when I want to apply a bullet to an existing paragraph, I would like to indent the content of the paragraph. How can apply this kind of styling to the paragraph? The margin doesn't exist for the SL version of Paragraph.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须手动查找
Paragraph
元素,并在每个Paragraph
中插入相应的字符(项目符号或制表符)。查看此链接:http://www.codeding.com/?article=22
you have to find the
Paragraph
elements manually and insert corresponding character (bullet or tab) in eachParagraph
. Check out this link:http://www.codeding.com/?article=22