Exemplo n.º 1
0
 // Methods
 public void OpenFile()
 {
     if (!IOTools.OpenWithDefault(FilePath))
     {
         windowService.ShowMessage(string.Format("Can't open {0}.", FilePath));
     }
 }
Exemplo n.º 2
0
 public void OpenOutput()
 {
     if (OutPath != null)
     {
         if (!IOTools.OpenWithDefault(OutPath))
         {
             windowService.ShowMessage(string.Format("Can't open {0}.", OutPath));
         }
     }
 }