Init() public static method

Inits the specified rock control.
public static Init ( IRockControl rockControl ) : void
rockControl IRockControl The rock control.
return void
コード例 #1
0
ファイル: MonthYearPicker.cs プロジェクト: ewin66/rockrms
 /// <summary>
 /// Initializes a new instance of the <see cref="MonthYearPicker"/> class.
 /// </summary>
 public MonthYearPicker()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #2
0
ファイル: RockTextBox.cs プロジェクト: shelsonjava/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="RockTextBox" /> class.
 /// </summary>
 public RockTextBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #3
0
ファイル: DateTimePicker.cs プロジェクト: garyholeman/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="DateTimePicker"/> class.
 /// </summary>
 public DateTimePicker()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AddressControl"/> class.
 /// </summary>
 public AddressControl()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #5
0
ファイル: RockRating.cs プロジェクト: sjison/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="RockRating" /> class.
 /// </summary>
 public RockRating()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #6
0
ファイル: PhoneNumberBox.cs プロジェクト: timothybaloyi/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="PhoneNumberBox"/> class.
 /// </summary>
 public PhoneNumberBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
コード例 #7
0
ファイル: ValueFilter.cs プロジェクト: waldo2590/Rock
 /// <summary>
 /// Initializes a new instance of the <see cref="ValueFilter"/> class.
 /// </summary>
 public ValueFilter()
     : base()
 {
     RockControlHelper.Init(this);
     RequiredFieldValidator = null;
 }