コード例 #1
0
ファイル: Panel.cs プロジェクト: renhammington/UxFoundation
        public Panel(ViewContext viewContext, PanelAppearanceType appearance = null, string clientId = null)
        {
            ViewContext = viewContext;
            SetAppearance(appearance);

            var open = string.Format("<div class=\"{0}\" id=\"{1}\">",CssClass, clientId);
            ViewContext.Writer.Write(open);
        }
コード例 #2
0
ファイル: _Panel.cs プロジェクト: renhammington/UxFoundation
 public _Panel SetAppearance(PanelAppearanceType appearance)
 {
     Appearance = appearance ?? PanelAppearanceType.Default;
     return this;
 }
コード例 #3
0
ファイル: _Panel.cs プロジェクト: renhammington/UxFoundation
 public _Panel(string title = null, PanelAppearanceType appearance = null, string clientId = null)
     : base("_Panel", clientId)
 {
     SetTitle(title)
         .SetAppearance(appearance);
 }
コード例 #4
0
ファイル: UxPanel.cs プロジェクト: renhammington/UxFoundation
 public static Panel UxPanel(this HtmlHelper htmlHelper, PanelAppearanceType appearance = null, string clientId = null)
 {
     return new Panel(htmlHelper.ViewContext, appearance, clientId);
 }