public BasicComponent(HostSurfaceFactory hostSurfaceFactory, string name) : base(hostSurfaceFactory) { this.ServiceContainer.AddService(typeof(INameCreationService), new NameCreationService()); this.BeginLoad(typeof(Component)); ((Control)this.View).BackColor = Color.FloralWhite; this.Loader = null; }
public GraphDesigner(HostSurfaceFactory hostSurfaceFactory, string name) : base(hostSurfaceFactory) { this.ServiceContainer.AddService(typeof(INameCreationService), new NameCreationService()); this.BeginLoad(typeof(MyTopLevelComponent)); ((Control)this.View).BackColor = Color.White; this.Loader = null; }
public XMLForm(HostSurfaceFactory hostSurfaceFactory, string name) : base(hostSurfaceFactory) { this.ServiceContainer.AddService(typeof(INameCreationService), new NameCreationService()); loader = new BasicHostLoader(typeof(Form), name); this.BeginLoad(loader); ((Control)this.View).BackColor = Color.White; this.Loader = loader; }
public CSharpForm(HostSurfaceFactory hostSurfaceFactory, string name) : base(hostSurfaceFactory) { this.ServiceContainer.AddService(typeof(IMenuCommandService), new MenuCommandService(this)); loader = new CodeDomHostLoader(name); this.BeginLoad(loader); ((Control)this.View).BackColor = Color.White; this.Loader = loader; }
public HostSurface(HostSurfaceFactory hostSurfaceFactory) : base() { _hostSurfaceFactory = hostSurfaceFactory; }