默认情况下WinRT
RichEditBox
ForegroundColor
是Black
。
如何将其更改为自定义颜色?
这是我试过的...
// Set default ForegroundColor
ITextCharacterFormat defaultCharacterFormat =
redBody.Document.GetDefaultCharacterFormat();
defaultCharacterFormat.ForegroundColor = Colors.Blue;
redBody.Document.SetDefaultCharacterFormat(defaultCharacterFormat);
redBody.Document.ApplyDisplayUpdates();
关于如何让它发挥作用的任何想法?