コード例 #1
0
 public CheckBoxControl(CheckBoxField field) : base()
 {
     father  = field;
     this.ID = field.Name;
     if (father.text)
     {
         this.Checked = true;
     }
 }
コード例 #2
0
 public static bool IsChecked(CheckBoxField c)
 {
     return(c.text);
 }