I'm beginner programmer in WPF MVVM C#. When user install my app he will follow a tutorial. So, for each "screen" of tutorial I created a Window. On each screen, I have a Back Button.
So, I'm really confused on the good practice about open new window and back to the previous Window. What is the best way to do this? Currently, I'm doing:
First Window (Next Step Button) - ViewModel1
<Button Command="{Binding NextWindowCommand}" >
public void NextWindow(object parameter)
{
var newWindow = new Window2();
newWindow.Show();
newWindow.DataContext = new ViewModel2();
CloseWindow();
}
Second Window (Back Button) ViewModel2
<Button Command="{Binding BackWindowCommand}" >
public void Back(object parameter)
{
var backWindow = new Window1();
backWindow.Show();
backWindow.DataContext = new ViewModel1();
CloseWindow();
}
Close Window Method (My ViewModelBase):
public bool? CloseWindowFlag
{
get { return _CloseWindowFlag; }
set
{
_CloseWindowFlag = value;
RaisePropertyChanged("CloseWindowFlag");
}
}
public virtual void CloseWindow(bool? result = true)
{
Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Background, new Action(() =>
{
CloseWindowFlag = CloseWindowFlag == null
? true
: !CloseWindowFlag;
}));
}