WinRT
RichEditBox
ForegroundColor
默认为Black
。
如何将其更改为自定义颜色?
这就是我试过的......
// Set default ForegroundColor
ITextCharacterFormat defaultCharacterFormat =
redBody.Document.GetDefaultCharacterFormat();
defaultCharacterFormat.ForegroundColor = Colors.Blue;
redBody.Document.SetDefaultCharacterFormat(defaultCharacterFormat);
redBody.Document.ApplyDisplayUpdates();
有关如何使其发挥作用的任何想法?
答案 0 :(得分:1)
如果您使用的是XAML RichEditBox,那么Foreground属性应该对您有用,例如<RichEditBox Foreground="Violet" />
。