I have an application in WPF following the MVVM standard and in a certain part of the application I show a ProgressBar that I implemented in a separate view for the user and, while this progressBar is running, I would need the user to be unable to touch any other window, as well as the method "ShowDialog ()" does however, if I display the progressBar using ShowDialog () the main app stops the process because it is waiting for the result of my view ...
HereisthepartoftheCodethatIcallprogressBar
_progressBar=newPackProgressBar("Packing",BasicVariableCollection.Count - 1);
_progressBar.Show();
Where "PackProgressBar" is the name of my Progressbar View class, which is of the "Window" class