private void FileToolStripMenuItem_Click(object sender, EventArgs e) { CreateForm newFile = new CreateForm(curDir.ToString(), false); newFile.Show(); GoToDirectory(curDir.ToString()); }
private void FolderToolStripMenuItem_Click(object sender, EventArgs e) { CreateForm newFile = new CreateForm(curDir.ToString(), true); newFile.Show(); GoToDirectory(curDir.ToString()); UpdateListView(); }