ANRTournament.MainWindow.mniSave_Click C# (CSharp) Метод

mniSave_Click() приватный Метод

private mniSave_Click ( object sender, RoutedEventArgs e ) : void
sender object
e System.Windows.RoutedEventArgs
Результат void
        private void mniSave_Click(object sender, RoutedEventArgs e)
        {
            if (string.IsNullOrEmpty(this.tournamentFilePath))
            {
                this.mniSaveAs_Click(sender, e);
            }
            else
            {
                this.BusyIndicator.IsBusy = true;
                Tournament.Save(this.tournament, this.tournamentFilePath);
                this.BusyIndicator.IsBusy = false;
            }
        }
MainWindow