共用方式為


HtmlHelper<TModel>.CheckBoxFor 方法

定義

<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 expression 之 值 「false」 類型的輸入 > 專案。 根據中找到的第一個非 null 值,將 「checked」 屬性新增至 「checkbox」 元素: htmlAttributes 索引鍵為 「checked」 的字典專案,或 ModelState 具有完整名稱的專案。 如果 expression 評估為非值,請改用 中找到的第一個非 nullnull 值: ModelState 具有完整名稱的專案,或 expression 針對 評估的專案 Model 。 如需有關「完整名稱」的詳細資訊,請參閱 NameFor<TResult>(Expression<Func<TModel,TResult>>)

public:
 virtual Microsoft::AspNetCore::Html::IHtmlContent ^ CheckBoxFor(System::Linq::Expressions::Expression<Func<TModel, bool> ^> ^ expression, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent CheckBoxFor (System.Linq.Expressions.Expression<Func<TModel,bool>> expression, object htmlAttributes);
abstract member CheckBoxFor : System.Linq.Expressions.Expression<Func<'Model, bool>> * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.CheckBoxFor : System.Linq.Expressions.Expression<Func<'Model, bool>> * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function CheckBoxFor (expression As Expression(Of Func(Of TModel, Boolean)), htmlAttributes As Object) As IHtmlContent

參數

expression
Expression<Func<TModel,Boolean>>

要針對目前模型評估的運算式。

htmlAttributes
Object

Object,包含核取方塊專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。

傳回

新的 IHtmlContent ,其中包含 < 輸入 > 專案。

實作

適用於