【发布时间】:2015-02-22 19:23:13
【问题描述】:
我在我的 XAML 文件中定义了以下内容:
<FlowDocumentScrollViewer ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto">
<FlowDocument Name="FlowDocument1" PagePadding="10" FontFamily="Segoe UI" FontSize="22">
<Paragraph>
Those who have denied the reality of moral distinctions, may be
ranked among the disingenuous disputants; nor is it conceivable,
that any human creature could ever seriously believe, that all
characters and actions were alike entitled to the affection and
regard of everyone. The difference, which nature has placed
between one man and another, is so wide, and this difference is
still so much farther widened, by education, example, and habit,
that, where the opposite extremes come at once under our
apprehension, there is no scepticism so scrupulous, and scarce
any assurance so determined, as absolutely to deny all
distinction between them. Let a man's insensibility be ever so
great, he must often be touched with the images of Right and
Wrong; and let his prejudices be ever so obstinate, he must
observe, that others are susceptible of like impressions. The
only way, therefore, of converting an antagonist of this kind, is
to leave him to himself.
</Paragraph>
</FlowDocument>
</FlowDocumentScrollViewer>
如何在 C# 中,对于本段中定义的某些文本部分,更改背景颜色或使其变为粗体或斜体?
【问题讨论】:
-
每次都会是文档的相同部分吗?例如,“绝对否认它们之间的所有区别”总是斜体,还是会从正常变为斜体?或者您需要在任意时间更改文档中的任意单词?
-
<Run>你在找什么吗? -
嗯,我希望能够一直修改它。这意味着,我可能会更改段落内容,或段落中的特定部分......
-
@paul.abbott.wa.us 我以前从未使用过 FlowDocumentScrollViewer,也从未使用过 Run 类。我只想看一个有关如何访问段落并更改其内容的示例。例如:更改文本的特定部分,将其更改为粗体、斜体、突出显示。我是否应该在 FlowDocumentScrollViewer 中也为我的段落组件定义名称,或者可以说类似 fd_Component.Document.Paragraph ...?
标签: c# wpf flowdocument paragraph