0

我想在 FlowDocument 中使用 rgb 设置文本“前景”。

我怎样才能做到这一点?

String ^text = "<FlowDocument \
xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" \
xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\" \
<Paragraph> \
<Span FontSize=\"18\" Foreground=\"Red\">Some text in the paragraph.</Span> \
Some text that is not bold. \
</Paragraph> \
</FlowDocument> "; 
4

1 回答 1

0

您需要以十六进制格式表示argb,其中 a = ff, r = 01, g = 02, b =03

Foreground=\"ff010203\"
于 2013-03-23T06:32:13.970 回答