public void LoadComponentS(string s) { Editor.Forms.Component com = new Editor.Forms.Component(); com.LoadComponentS(s); com.Location = location; location.Y += com.Height + padding; this.Controls.Add(com); Editor.Controls.LineControl line = new Editor.Controls.LineControl(); line.Location = location; line.Height = 3; location.Y += line.Height; this.Controls.Add(line); }