0
WinRT
RichEditBox
ForegroundColor
默認爲Black
。Metro應用程序RichEditBox默認值ForegroundColor
如何將其更改爲自定義顏色?
這是我試過......
// Set default ForegroundColor
ITextCharacterFormat defaultCharacterFormat =
redBody.Document.GetDefaultCharacterFormat();
defaultCharacterFormat.ForegroundColor = Colors.Blue;
redBody.Document.SetDefaultCharacterFormat(defaultCharacterFormat);
redBody.Document.ApplyDisplayUpdates();
如何得到這個工作任何想法?
我現在覺得很傻。有時候,最明顯的解決方案有時會讓我們失望。 – c0D3l0g1c
這個解決方案簡單而簡潔:) –