private static void OnDisplayMemberPathChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e) { TagTextBox tagTextBox = (TagTextBox)sender; if (e.Property == ItemsSourceProperty) { tagTextBox.DisplayMemberPath = (string)e.NewValue; } }
private static void OnItemsSourceChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e) { TagTextBox tagTextBox = (TagTextBox)sender; if (e.Property == ItemsSourceProperty) { tagTextBox.ItemsSource = (System.Collections.IEnumerable)e.NewValue; } }