Catel.LogAnalyzer.ViewModels.ShellViewModel.OnOpenFileCommandExecute C# (CSharp) Méthode

OnOpenFileCommandExecute() private méthode

Method to invoke when the OpenFileCommand command is executed.
private OnOpenFileCommandExecute ( ) : void
Résultat void
        private void OnOpenFileCommandExecute()
        {
            if (!_openFileService.DetermineFile())
            {
                return;
            }

            var fileName = _openFileService.FileName;

            OnLoadFileExecute(fileName);
        }