private HtmlElementToolboxSection(SerializationInfo info, StreamingContext context)
 {
     this.Deserialize(info, context);
     if (HtmlElements == null)
     {
         HtmlElements = this;
     }
 }
 public HtmlElementToolboxSection(string name)
     : base(name)
 {
     base.Icon = new Icon(typeof(HtmlElementToolboxSection), "HtmlElementToolboxSection.ico");
     if (HtmlElements == null)
     {
         HtmlElements = this;
     }
 }