Пример #1
0
 // Methods
 public void OpenFile()
 {
     if (!IOTools.OpenWithDefault(FilePath))
     {
         windowService.ShowMessage(string.Format("Can't open {0}.", FilePath));
     }
 }
Пример #2
0
 public void OpenOutput()
 {
     if (OutPath != null)
     {
         if (!IOTools.OpenWithDefault(OutPath))
         {
             windowService.ShowMessage(string.Format("Can't open {0}.", OutPath));
         }
     }
 }