XAF_Bootstrap.Controls.XafBootstrapErrorInfoControl.XafBootstrapErrorInfoControl C# (CSharp) Метод

XafBootstrapErrorInfoControl() публичный Метод

public XafBootstrapErrorInfoControl ( ) : System
Результат System
        public XafBootstrapErrorInfoControl()
            : base()
        {
            Controls.Add(new HTMLText(@"<div class=""row""><div class=""col-sm-12""><div class=""alert alert-danger alert-dismissible""><button type=""button"" class=""close"" data-dismiss=""alert"" aria-label=""Close""><span aria-hidden=""true"">&times;</span></button>"));
            element = new Table();
            Controls.Add(element);
            ErrorImageName = "Error";
            checkIgnore = new ASPxCheckBox();
            Controls.Add(checkIgnore);
            checkIgnore.ID = "Ch";
            checkIgnore.CheckedChanged += new EventHandler(checkbox_CheckedChanged);
            checkIgnore.Visible = false;
            Controls.Add(new HTMLText(@"</div></div></div>"));
        }