private void txtPath_KeyUp(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Enter)
     {
         string path = txtPath.Text.Trim();
         TreeViewHandler.FindPath(path);
         e.Handled = true;
     }
 }