public TitleSelectionViewModel(Title title, QueueTitlesDialogViewModel titlesDialogVM) { this.Title = title; this.titlesDialogVM = titlesDialogVM; }
private void OnDataContextChanged(object sender, DependencyPropertyChangedEventArgs e) { this.viewModel = this.DataContext as QueueTitlesDialogViewModel; this.viewModel.PropertyChanged += this.viewModel_PropertyChanged; }