使用XAML在WPF应用程序中使用RGB设置WinForms控件BackColor和RGB?

时间:2019-01-01 07:14:21

标签: c# wpf winforms xaml backcolor

我已经创建了WinForms RichTextBox,并能够使用它们的名称将其BackColor更改为任何预定义的颜色,但无法像这样用 RGB 指定BackColor

<WindowsFormsHost>
    <wf:RichTextBox x:Name="body" BackColor="Color (13, 13, 17)">
    </wf:RichTextBox>
</WindowsFormsHost>

XAML 中使用RGB修改WinForms控件颜色的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

此问题已经存在,Here is a link to it :)。

回顾一下:

<Label Text="Sea color" BackgroundColor="Aqua" />
<Label Text="RGB" BackgroundColor="#00FF00" />
<Label Text="Alpha plus RGB" BackgroundColor="#CC00FF00" />
<Label Text="Tiny RGB" BackgroundColor="#0F0" />
<Label Text="Tiny Alpha plus RGB" BackgroundColor="#C0F0" />