예제 #1
0
 private void ExecuteRefreshCommand()
 {
     if (string.IsNullOrEmpty(_file))
     {
         return;
     }
     Content = LocalHelper.GetText(_file);
 }
예제 #2
0
 private void ExecuteOpenCommand()
 {
     _file   = LocalHelper.ChooseFile();
     Content = LocalHelper.GetText(_file);
 }