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

            view.Show();
        }
コード例 #2
0
ファイル: DocumentManager.cs プロジェクト: zhongn/DaYangTools
        [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();
        }