WPF- RadComboBox 选定项

WPF- RadComboBox selected item

我在我的应用程序中使用 RadComboBox,但我无法在控件中设置所选项目,(即)当我单击 dropdown 时,列表会向下滑动并当我点击任何项目时,它没有在 ComboBox.

中设置

//XAML:

<telerik:RadRibbonComboBox Name="cmbReports">
    <telerik:RadComboBoxItem Content="Report 1" />
    <telerik:RadComboBoxItem Content="Report 2" />
    <telerik:RadComboBoxItem Content="Report 3" />                                
</telerik:RadRibbonComboBox>

尝试将静态值添加为 ComboBoxItem,但它也是如此。

我哪里错了?

尝试直接添加对象,就像我对字符串所做的那样:

<telerik:RadRibbonWindow x:Class="Sample.MainWindow"
                     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                     xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                     xmlns:system="clr-namespace:System;assembly=mscorlib"
                     Title="MainWindow"
                     WindowStartupLocation="CenterScreen"
                     WindowState="Maximized">

<telerik:RadRibbonComboBox Name="cmbReports" Width="200" Height="20">
    <system:String>Report1</system:String>
    <system:String>Report2</system:String>
    <system:String>Report3</system:String>
</telerik:RadRibbonComboBox>