如何在 C# 中使用 RadControls Q1 2013 获取 RadAutoCompleteBox 的文本?
autoCompleteBox.SelectedItem
返回"ServerCrafterTelerikWPF.Command"
。
编辑 1: 这是我的 XAML:
<telerik:RadAutoCompleteBox x:Name="txtboxCommand" ItemsSource="{Binding Commands, Source={StaticResource ViewModel}}"
DisplayMemberPath="ACommand" AutoCompleteMode="Append" HorizontalAlignment="Left"
telerik:StyleManager.Theme="Modern" Margin="280,405,0,0"
VerticalAlignment="Top" Width="330" Height="30" KeyDown="txtboxCommand_KeyDown"/>
而且我没有任何 C# 代码。我只想在按下按钮时获取 RadAutoCompleteBox 中的文本。
编辑2:
这是我的collection
:
public class Command
{
public string ACommand { get; set; }
}
/// <summary>
/// A view model for MainWindow.xaml
/// </summary>
public class ViewModel
{
public ObservableCollection<Command> Commands { get; set; }
public ViewModel()
{
Commands = new ObservableCollection<Command>()
{
new Command() {ACommand = "stop "},
// Other commands...
// ...
// ...
};
}
}