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