当前位置: 首页>>代码示例>>C#>>正文


C# HtmlHelper.CheckBox方法代码示例

本文整理汇总了C#中HtmlHelper.CheckBox方法的典型用法代码示例。如果您正苦于以下问题:C# HtmlHelper.CheckBox方法的具体用法?C# HtmlHelper.CheckBox怎么用?C# HtmlHelper.CheckBox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HtmlHelper的用法示例。


在下文中一共展示了HtmlHelper.CheckBox方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RenderCheckBox

        public static string RenderCheckBox(HtmlHelper html, BootstrapCheckBoxModel model)
        {
            if (model.tooltipConfiguration != null) model.htmlAttributes.AddRange(model.tooltipConfiguration.ToDictionary());
            var mergedHtmlAttrs = string.IsNullOrEmpty(model.id) ? model.htmlAttributes : model.htmlAttributes.AddOrReplace("id", model.id);

            string validationMessage = "";
            if (model.displayValidationMessage)
            {
                string validation = html.ValidationMessage(model.htmlFieldName).ToHtmlString();
                validationMessage = new BootstrapHelpText(validation, model.validationMessageStyle).ToHtmlString();
            }
            return html.CheckBox(model.htmlFieldName, model.isChecked, mergedHtmlAttrs.FormatHtmlAttributes()).ToHtmlString() + validationMessage;
        }
开发者ID:joypipi,项目名称:TwitterBootstrapMvc,代码行数:13,代码来源:Renderer.CheckBox.cs

示例2: BooleanTemplateCheckbox

 private static string BooleanTemplateCheckbox(HtmlHelper html, bool value)
 {
     return html.CheckBox(String.Empty, value, CreateHtmlAttributes(html, "check-box")).ToHtmlString();
 }
开发者ID:huangw-t,项目名称:aspnetwebstack,代码行数:4,代码来源:DefaultEditorTemplates.cs

示例3: Generate

 public override MvcHtmlString Generate(HtmlHelper htmlHelper, string name, object value)
 {
     return htmlHelper.CheckBox(name, new { @class = CssClass, style = CssStyle });
 }
开发者ID:jzh8708,项目名称:QuickBootstrap,代码行数:4,代码来源:BootstrapCheckBoxAttribute.cs

示例4: WriteInput

 public override MvcHtmlString WriteInput(HtmlHelper helper, object htmlAttributes)
 {
     IDictionary<string, object> efHtmlAttributes = new RouteValueDictionary(htmlAttributes);
     AddCommonHtmlAttributes(efHtmlAttributes);
     return helper.CheckBox(this.InputName, this.IsChecked, efHtmlAttributes);
 }
开发者ID:rupeshtelang,项目名称:ExpressForms,代码行数:6,代码来源:ExpressFormsCheckBox.cs

示例5: CheckBoxForParameter

        private static MvcHtmlString CheckBoxForParameter(HtmlHelper htmlHelper, ReportParameter reportParameter, bool disabled)
        {
            bool value;
            if (!bool.TryParse(reportParameter.CurrentValue, out value)) value = false;

            Dictionary<string, object> htmlAttributes = GetHtmlAttributes(reportParameter.Dependents, null, disabled);

            return htmlHelper.CheckBox(reportParameter.Id, value, htmlAttributes);
        }
开发者ID:shayaneumar,项目名称:gabbar,代码行数:9,代码来源:ReportingExtensions.cs


注:本文中的HtmlHelper.CheckBox方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。