コード例 #1
0
        void createFileFunc()
        {
            // open text editing window and close the starter one
            TextEditorWindow themainWindow = new TextEditorWindow();

            themainWindow.Show();
            Close();
        }
コード例 #2
0
        // NEW file function
        void newFileFunc()
        {
            TextEditorWindow newFile = new TextEditorWindow();

            newFile.Show();
        }