Example #1
0
 protected virtual void Init()
 {
     if (!string.IsNullOrEmpty(groupName))
     {
         RadioGroup.Join(groupName, this);
         if (isCheck)
         {
             RadioGroup.SetCheck(groupName, this);
         }
     }
 }
Example #2
0
 private void Click()
 {
     isCheck = true;
     RadioGroup.SetCheck(groupName, this);
 }