Hello. I have simple example
XAML:
<telerik:RadComboBox
Width="100" Height="25"
IsEditable="True"
Text="{Binding Value, Mode=TwoWay}" >
<telerik:RadComboBoxItem Content="20"/>
<telerik:RadComboBoxItem Content="10"/>
<telerik:RadComboBoxItem Content="2"/>
<telerik:RadComboBoxItem Content="1"/>
</telerik:RadComboBox>
ViewModel:
public class ViewModel {
public int Value { get; set; }
}
Behavior:
public partial class MainWindow : Window {
public MainWindow() {
InitializeComponent();
DataContext = new ViewModel() { Value = 2 };
}
}