コード例 #1
0
ファイル: startForm.cs プロジェクト: kcodiac/RTIDE-Web
        private void newFile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Hide();
            mainEditor newEditor = new mainEditor(null, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
コード例 #2
0
ファイル: startForm.cs プロジェクト: kcodiac/RTIDE-Web
        private void loadFile(object sender, LinkLabelLinkClickedEventArgs e)
        {
            startLoad(0);
            this.Hide();
            mainEditor newEditor = new mainEditor(fileToMain, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
コード例 #3
0
ファイル: startForm.cs プロジェクト: kcodiac/RTIDE-Web
        private void openRecentBtn(object sender, EventArgs e)
        {
            startLoad(3);
            this.Hide();
            mainEditor newEditor = new mainEditor(fileToMain, true, false);

            newEditor.ShowDialog();
            this.Close();
        }
コード例 #4
0
ファイル: startForm.cs プロジェクト: kcodiac/RTIDE-Web
        private void loadURL(object sender, LinkLabelLinkClickedEventArgs e)
        {
            startLoad(2);
            this.Hide();
            mainEditor newEditor = new mainEditor(urlToMain, true, true);

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