使用 XAML 在 WPF 应用程序中使用 RGB 设置 WinForms 控件背景色?

Set WinForms control BackColor with RGB in a WPF Application using XAML?

我创建了一个 WinForms RichTextBox,我能够使用它们的名称将它的背景色更改为任何预定义的颜色,但我无法使用 RGB[=18= 指定背景色] 像这样

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

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

这个问题已经存在,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" />