Custom ASP.NET Container Control

前端 未结 8 1863
醉话见心
醉话见心 2020-12-14 20:50

I\'ve been trying to create a custom control that works exactly like the Panel control except surrounded by a few divs and such to create a rounded box look. I haven\'t been

8条回答
  •  有刺的猬
    2020-12-14 21:28

    public class myCustomPanel : Panel
    {
        public override void RenderBeginTag(HtmlTextWriter writer)
        {
            writer.AddAttribute(HtmlTextWriterAttribute.Class, "top_left_corner");
            writer.RenderBeginTag(HtmlTextWriterTag.Div);
                base.RenderBeginTag(writer);
        }
    
        public override void RenderEndTag(HtmlTextWriter writer)
        {
                base.RenderEndTag(writer);
            writer.RenderEndTag();
        }
    
    }
    

提交回复
热议问题