Esempio n. 1
0
        private void FileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            CreateForm newFile = new CreateForm(curDir.ToString(), false);

            newFile.Show();
            GoToDirectory(curDir.ToString());
        }
Esempio n. 2
0
        private void FolderToolStripMenuItem_Click(object sender, EventArgs e)
        {
            CreateForm newFile = new CreateForm(curDir.ToString(), true);

            newFile.Show();
            GoToDirectory(curDir.ToString());
            UpdateListView();
        }