/// <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; }
public WorkbenchLogic(MainWindow IdeRootWindow) { RootWindow = IdeRootWindow; }
public IDEManager(MainWindow mw):base(mw) {}
public IDELogger(MainWindow Owner) { this.Owner = Owner; }