Esempio n. 1
0
        private void OnShowExplorer(object sender, RoutedEventArgs e)
        {
            string filename;

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