示例#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);
		}
示例#2
0
		public ARGeneratorLayout(Model model)
		{
			_model = model;
		}