Exemplo n.º 1
0
		public Starter()
		{
			_model = new Model();
			_layout = new ARGeneratorLayout(_model);

			_main = new MainForm(_model);
			_main.Load += new EventHandler(OnWorkspaceLoad);
			_main.Closed += new EventHandler(OnWorkspaceClosed);

			ApplicationContext context = new ApplicationContext(_main);
			Application.Run(context);
		}
Exemplo n.º 2
0
        public Starter()
        {
            _model  = new Model();
            _layout = new ARGeneratorLayout(_model);

            _main         = new MainForm(_model);
            _main.Load   += new EventHandler(OnWorkspaceLoad);
            _main.Closed += new EventHandler(OnWorkspaceClosed);

            ApplicationContext context = new ApplicationContext(_main);

            Application.Run(context);
        }