(FontListComboBox.Editor as FontListComboBoxEditor).fontlistbox.SelectionChanged += MainWindow_SelectionChanged;
private void MainWindow_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
if ((FontListComboBox.Editor as FontListComboBoxEditor).fontlistbox.SelectedIndex == 0)
{
(Soundrecordernew.Editor as SoundRecordEditor).soundrecorder.ItemsSource = NameCollection;
}
else
{
(Soundrecordernew.Editor as SoundRecordEditor).soundrecorder.ItemsSource = CountryCollection;
}
} |