2

我已经为这个解决方案搜索了一段时间,所以现在我在这里发布。

现在我可以改变整体的前景色RichTextBox

yourRichTextBox.Foreground = Brushes.Red;

我还可以更改用户使用光标选择的某些文本的颜色:

if(!yourRichTextBox.Selection.IsEmpty){
    yourRichTextBox.Selection.ApplyPropertyValue(TextElement.ForegroundProperty, Brushes.Red);
}

但我希望能够更改用户键入的下一个文本的颜色。

我有一个颜色选择器框,它返回用户希望文本所在的颜色。所以用户输入RichTextBox正常的黑色字体,然后他们会点击颜色选择器按钮,选择一种颜色,点击确定,然后点击下一个他们输入的东西将是那种颜色。有没有办法做到这一点,还是我不走运?

我能想到的唯一方法是有一个缓冲区来捕获用户键入的每个字符,然后在每个键入的字母上设置前景属性,然后将其添加回RichTextBox,想法?

4

2 回答 2

1

您用于选择的相同代码对我有用。例如:

    <RichTextBox x:Name="yourRichTextBox" TextChanged="yourRichTextBox_TextChanged_1">
        <FlowDocument>
            <Paragraph>
                <Run Text="fdsfdfsda"/>
            </Paragraph>
            <Paragraph>
                <Run/>
            </Paragraph>
        </FlowDocument>
    </RichTextBox>

代码背后:

    private void yourRichTextBox_TextChanged_1(object sender, TextChangedEventArgs e)
    {
        yourRichTextBox.Selection.ApplyPropertyValue(RichTextBox.ForegroundProperty, Brushes.Red);
    }

一旦您开始输入,第二个字母及以后(第一个触发此更改)将变为红色。

于 2013-06-18T18:14:33.090 回答
0

我有另一个可能很有趣的解决方案。关键是使用 RichTextBox 的 Document 属性。

private void Print(string s)
{
    if (s != null)
    {
        var paragraph = new Paragraph();
        paragraph.Inlines.Add(new Bold(new Run($"{DateTime.Now:HH:mm:ss.fff}: ")) { Foreground = Brushes.Green });
        paragraph.Inlines.Add(new Run($"{(s.EndsWith(Environment.NewLine) ? s : s + Environment.NewLine)}"));
        LogView.Document.Blocks.Add(paragraph);
        LogViewScrollViewer.ScrollToEnd();
    }
}

xml:

<ScrollViewer x:Name="LogViewScrollViewer">
    <RichTextBox x:Name="LogView" AcceptsReturn="True" IsReadOnly="True">
        <RichTextBox.Resources>
            <Style TargetType="Paragraph">
                <Setter Property="Margin" Value="0" />
            </Style>
        </RichTextBox.Resources>
    </RichTextBox>
</ScrollViewer>
于 2021-12-02T12:16:56.407 回答