Skip to content

Commit

Permalink
Update DialogService.cs
Browse files Browse the repository at this point in the history
A small typo fix in DialogService class
  • Loading branch information
noufionline committed Feb 25, 2019
1 parent d476877 commit c14d28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Wpf/Prism.Wpf/Services/Dialogs/DialogService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void ConfigureDialogWindowContent(string dialogName, IDialogWindow window, IDial

var viewModel = dialogContent.DataContext as IDialogAware;
if (viewModel == null)
throw new NullReferenceException("A dialog's ViewModel must implement the IDialog interface");
throw new NullReferenceException("A dialog's ViewModel must implement the IDialogAware interface");

MvvmHelpers.ViewAndViewModelAction<IDialogAware>(viewModel, d => d.OnDialogOpened(parameters));

Expand Down

0 comments on commit c14d28d

Please sign in to comment.