示例#1
0
		/// <summary>
		/// "Entry" point that inits the D-IDE Mainform
		/// </summary>
		protected override bool OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs)
		{
			var CurrentApp = new Application();
			
			var mw = new MainWindow(eventArgs.CommandLine);
			CurrentApp.MainWindow = mw;
			CurrentApp.Run();
			// Return false to avoid base.Run() throwing an exception that no Winforms MainWindow could be found
			return false;
		}
示例#2
0
		public WorkbenchLogic(MainWindow IdeRootWindow)
		{
			RootWindow = IdeRootWindow;
		}
示例#3
0
		public IDEManager(MainWindow mw):base(mw)		{}
示例#4
0
		public IDELogger(MainWindow Owner)
		{
			this.Owner = Owner;
		}