I am using Prism IDialogService to popup a screen that ask some complementary information and validations, before decide to sabe or not to sabe, my problem is when I do
_dialogService.ShowDialog("InconsistenciasDialog", param, CloseDialogCallbackAsync);
if (allDataFill)
saveAll();
In the CloseDialogCallbackAsync Method I set a property 'allDataFill' in order to know if the dialog gets all the Infformation I need, thats way I need the dialog as a modal and sincronus one.
The dialog shows up, but not in a sincronous way, inmediatly test the variable allDataFill and thats a problem, because that variable isn't with data yet.
Thats way I need a modal dialog, it is posible witth DialogService?
Any Idea?