0

默认情况下WinRT RichEditBox ForegroundColorBlack

如何将其更改为自定义颜色?

这是我试过的...

// Set default ForegroundColor
ITextCharacterFormat defaultCharacterFormat = 
    redBody.Document.GetDefaultCharacterFormat();

defaultCharacterFormat.ForegroundColor = Colors.Blue;

redBody.Document.SetDefaultCharacterFormat(defaultCharacterFormat);
redBody.Document.ApplyDisplayUpdates();

关于如何让它发挥作用的任何想法?

4

1 回答 1

1

如果您使用的是 XAML RichEditBox,那么 Foreground 属性应该适合您,例如<RichEditBox Foreground="Violet" />.

于 2013-07-14T15:29:18.210 回答