Beispiel #1
0
        public void CreateNewWindow()
        {
            //create and show a new window..
            TextDocumentView view = new TextDocumentView();

            view.Show();
        }
Beispiel #2
0
        [STAThread()] static void Main()
        {
            //Store the current manger...
            _current = new DocumentManager();

            //Create the first view...
            TextDocumentView view = new TextDocumentView();

            view.Show();

            //Run the application...
            Application.Run();
        }