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)); }
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(); }