private void contextMenuCreateFile_Click(object sender, EventArgs e) { string path = Path.Combine(Workspace.Project.BaseDirectory, this.GetSelectedNodeInternalPath()); NewForm newForm = new NewForm(NewFormType.File, path); newForm.ShowDialog(this); }
private void newFileToolStripMenuItem_Click(object sender, EventArgs e) { NewForm newForm = new NewForm(NewFormType.File); newForm.ShowDialog(this); }