コード例 #1
0
ファイル: Button.cs プロジェクト: badhitman/HtmlGenerator
 public Button(string text_button, VisualBootstrapStylesEnum style_button) : base(text_button)
 {
     StyleButton = style_button;
     inline      = true;
 }
コード例 #2
0
ファイル: Alert.cs プロジェクト: badhitman/HtmlGenerator
 public Alert(VisualBootstrapStylesEnum status_style, string text_msg)
 {
     tag_custom_name = typeof(div).Name;
     StyleAlert      = status_style;
     Message         = text_msg;
 }