gpt4 book ai didi

.net - 从 WPF RichTextBox 获取 FontWeight/FontStyle/TextDecorations

转载 作者:行者123 更新时间:2023-12-04 23:11:27 24 4
gpt4 key购买 nike

如何检测 WPF RichTextBox 中光标位置的当前文本格式?

最佳答案

该线程的作者还询问了 TextDecorations,其中您没有提供示例代码及其使用方式的不同。我将此作为 发布进一步的解决方案 :

var obj = _myText.GetPropertyValue(Inline.TextDecorationsProperty);

if (obj == DependencyProperty.UnsetValue)
IsTextUnderline = false;// mixed formatting

if (obj is TextDecorationCollection)
{
var objProper = obj as TextDecorationCollection;

if (objProper.Count > 0)
IsTextUnderline = true; // all underlined
else
IsTextUnderline = false; // nothing underlined
}

关于.net - 从 WPF RichTextBox 获取 FontWeight/FontStyle/TextDecorations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/202434/

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