Esempio n. 1
0
 public void TotalCommand()
 {
     if (null == _totalWindow)
     {
         _totalWindow = new TotalWindow();
         _totalWindow.Owner = this;
         _totalWindow.Closed += (o, e) => { _totalWindow = null; };
         _totalWindow.Show();
         this.MainMenuSubPopup.IsOpen = false;
     }
 }
Esempio n. 2
0
        private void Total_Click(object sender, RoutedEventArgs e)
        {
            TotalWindow totalWindow = new TotalWindow();

            totalWindow.Show();
        }