Example #1
0
 public static InteractiveEditor GenerateMyEditor(Form ownerWin, string name, int x, int y, int width, int height, Configurator configurator = null)
 {
     return(new InteractiveEditor(ownerWin, null, name, x, y, width, height, configurator));
 }
Example #2
0
 private InteractiveEditor(Form ownerWin, Type _T, string name, int x, int y, int width, int height, Configurator _configurator = null)
 {
     OwnerForm = ownerWin;
     T         = _T;
     Name      = name;
     Location  = new Point(x, y);
     Size      = new Size(width, height);
     Config    = _configurator;
     Initialize();
 }