gpt4 book ai didi

c# - #UWP 改变richeditbox的所有字体颜色

转载 作者:太空宇宙 更新时间:2023-11-03 14:56:36 25 4
gpt4 key购买 nike

我编写了一个代码来更改 richeditbox 中选择的字体颜色。

RightRange.CharacterFormat.ForegroundColor = FontColorPicker.Color;

但是我怎样才能改变文档的所有颜色呢?

最佳答案

因为您已经知道如何更改 RichEditBox 中选择的 ForegroundColor , 要更改所有文档的 ForgroundColor ,您可以只选择所有而不是更改颜色。设置 selection范围从 0 到 EndPosition 将全选。

richEditBox.Focus(FocusState.Pointer);
richEditBox.Document.Selection.SetRange(0, richEditBox.Document.Selection.EndPosition);
richEditBox.Document.Selection.CharacterFormat.ForegroundColor = Colors.Red;

关于c# - #UWP 改变richeditbox的所有字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48723249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com