Init() 공개 정적인 메소드

Inits the specified rock control.
public static Init ( IRockControl rockControl ) : void
rockControl IRockControl The rock control.
리턴 void
예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MonthYearPicker"/> class.
 /// </summary>
 public MonthYearPicker()
     : base()
 {
     RockControlHelper.Init(this);
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RockTextBox" /> class.
 /// </summary>
 public RockTextBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
예제 #3
0
 /// <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
 /// <summary>
 /// Initializes a new instance of the <see cref="PhoneNumberBox"/> class.
 /// </summary>
 public PhoneNumberBox()
     : base()
 {
     RockControlHelper.Init(this);
 }
예제 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ValueFilter"/> class.
 /// </summary>
 public ValueFilter()
     : base()
 {
     RockControlHelper.Init(this);
     RequiredFieldValidator = null;
 }