private void ExecuteRefreshCommand()
 {
     if (string.IsNullOrEmpty(_file))
     {
         return;
     }
     Content = LocalHelper.GetText(_file);
 }
 private void ExecuteOpenCommand()
 {
     _file   = LocalHelper.ChooseFile();
     Content = LocalHelper.GetText(_file);
 }