コード例 #1
0
ファイル: DropDownField.cs プロジェクト: laseelan/formulate
 /// <summary>
 /// Initializes a new instance of the <see cref="DropDownField"/> class.
 /// </summary>
 /// <param name="getDataValuesHelper">
 /// The get data values helper.
 /// </param>
 /// <remarks>
 /// Default constructor.
 /// </remarks>
 public DropDownField(IGetDataValuesHelper getDataValuesHelper)
 {
     this.GetDataValuesHelper = getDataValuesHelper;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RadioButtonListField"/> class.
 /// </summary>
 /// <param name="getDataValuesHelper">
 /// The get data values helper.
 /// </param>
 /// <remarks>
 /// Default constructor.
 /// </remarks>
 public RadioButtonListField(IGetDataValuesHelper getDataValuesHelper)
 {
     this.GetDataValuesHelper = getDataValuesHelper;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CheckboxListField"/> class.
 /// </summary>
 /// <param name="getDataValuesHelper">
 /// The get data values helper.
 /// </param>
 /// <remarks>
 /// Default constructor.
 /// </remarks>
 public CheckboxListField(IGetDataValuesHelper getDataValuesHelper)
 {
     this.GetDataValuesHelper = getDataValuesHelper;
 }