Ejemplo n.º 1
0
        private void newFile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Hide();
            mainEditor newEditor = new mainEditor(null, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
Ejemplo n.º 2
0
        private void loadFile(object sender, LinkLabelLinkClickedEventArgs e)
        {
            startLoad(0);
            this.Hide();
            mainEditor newEditor = new mainEditor(fileToMain, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
Ejemplo n.º 3
0
        private void openRecentBtn(object sender, EventArgs e)
        {
            startLoad(3);
            this.Hide();
            mainEditor newEditor = new mainEditor(fileToMain, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
Ejemplo n.º 4
0
        private void loadURL(object sender, LinkLabelLinkClickedEventArgs e)
        {
            startLoad(2);
            this.Hide();
            mainEditor newEditor = new mainEditor(urlToMain, true, true);

            newEditor.ShowDialog();
            this.Close();
        }