Beispiel #1
0
        private void OnShowExplorer(object sender, RoutedEventArgs e)
        {
            string filename;

            if (GetSelectedFileName(out filename))
            {
                ProcessInfoTools.ShowExplorer(System.IO.Path.GetDirectoryName(filename));
            }
        }
Beispiel #2
0
 public bool BringUpExplorerInInstallLocation()
 {
     return(ProcessInfoTools.ShowExplorer(InstallLocation));
 }
Beispiel #3
0
 private void OnBrowseFilename(object sender, RoutedEventArgs e)
 {
     ProcessInfoTools.ShowExplorer(TbInstallLocation.Text);
 }