WPF- RadComboBox选中的项目

时间:2015-04-17 09:54:25

标签: wpf xaml telerik

我在我的应用程序中使用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,但它也是一样的。

我哪里错了?

1 个答案:

答案 0 :(得分:1)

尝试直接添加对象,就像我对字符串一样:

<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>