コード例 #1
0
 private void openFolderToolStripMenuItem_Click(object sender, EventArgs e)
 {
     SystemFunctions.OpenDirectoryWithExplorer(this.tree.GetSelectedFolderPath());
 }
コード例 #2
0
 private void btnShowConfig_Click(object sender, EventArgs e)
 {
     SystemFunctions.OpenDirectoryWithExplorer(Application.StartupPath);
 }
コード例 #3
0
 /// <summary>
 /// User clicks twice on a folder
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void tvFolders_DoubleClick(object sender, EventArgs e)
 {
     SystemFunctions.OpenDirectoryWithExplorer(this.tree.GetSelectedFolderPath());
 }