如何使隐形的组合框列表可见?

时间:2014-01-29 21:10:57

标签: c# xaml

您好我的RadRibbonComboBox的下拉列表已填充,但字体为白色,使其几乎不可读。请问如何更改组合框中项目的颜色字体。

Picture

Xaml代码:

<telerik:RadRibbonComboBox 
    FontFamily="arial" FontStyle="Italic" FontWeight="ExtraBold" 
    CanAutocompleteSelectItems="False" CanKeyboardNavigationSelectItems="True" 
    CommandParameter="{Binding SelectedValue, RelativeSource={RelativeSource Self}}" 
    telerik:ScreenTip.Description="Change the font family." IsReadOnly="True" 
    ItemsSource="{Binding RegisteredFonts, Source={StaticResource FontFamiliesProvider}}"
    MaxDropDownHeight="400" OpenDropDownOnFocus="True" telerik:RadRichTextBoxRibbonUI.RichTextCommand="{Binding ChangeFontFamilyCommand}" 
    telerik:ScreenTip.Title="Font" Width="132">
</telerik:RadRibbonComboBox>

1 个答案:

答案 0 :(得分:0)

如本页所述,您将要设置RadRibbonComboBox的前景色。这应该改变绘制到屏幕的字体颜色。 http://msdn.microsoft.com/en-us/library/cc189010(v=vs.95).aspx

只需在代码中添加以下ID即可。

Foreground="{Color}"

对于颜色,您可以选择为颜色添加颜色名称或十六进制值。这是所有可用预设颜色的图像。

http://i.msdn.microsoft.com/dynimg/IC210551.png