Ejemplo n.º 1
0
        private void newFileToolStripMenuItem_Click(object sender, EventArgs e)
        {
            NewForm newForm = new NewForm(NewFormType.File);

            newForm.ShowDialog(this);
        }
Ejemplo n.º 2
0
 private void newFileToolStripMenuItem_Click(object sender, EventArgs e)
 {
     NewForm newForm = new NewForm(NewFormType.File);
     newForm.ShowDialog(this);
 }
Ejemplo n.º 3
0
        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);
        }