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;
 }
Exemple #3
0
 public VBForm(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;
 }
Exemple #4
0
 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;
 }