Telerik.Web.Mvc.UI.WindowHtmlBuilder.WindowTag C# (CSharp) 메소드

WindowTag() 공개 메소드

public WindowTag ( ) : IHtmlNode
리턴 IHtmlNode
        public IHtmlNode WindowTag()
        {
            return new HtmlTag("div")
                   .Attribute("style", !Window.Visible ? "display:none" : string.Empty)
                   .Attribute("id", Window.Id)
                   .Attributes(Window.HtmlAttributes)
                   .PrependClass(UIPrimitives.Widget, "t-window");
        }