-
Notifications
You must be signed in to change notification settings - Fork 47
Upgrading to Prism v9.0
Damian edited this page Apr 11, 2024
·
9 revisions
WARNING: Work in progress
- Namespace:
Prism.Regions
->Prism.Navigation.Regions
-
Closing a dialog
RequestClose
- OLD:
public event Action<IDialogResult>? RequestClose;
- NEW:
public DialogCloseListener RequestClose { get; }
- OLD:
-
Showing a dialog no longer requires calling out the parent window.
// NEW:
_dialogService.ShowDialog(
nameof(MessageBoxView),
new DialogParameters($"title={title}&message={message}"));
// OLD:
_dialogService.ShowDialog(
ParentWindow,
nameof(MessageBoxView),
new DialogParameters($"title={title}&message={message}"));