示例#1
0
 public HCRadioGroup(HCCustomData aOwnerData)
     : base(aOwnerData)
 {
     this.StyleNo     = HCStyle.RadioGroup;
     Width            = 100;
     FItems           = new HCList <HCRadioButton>();
     FItems.OnInsert += new EventHandler <NListEventArgs <HCRadioButton> >(DoItemNotify);
 }
示例#2
0
 public HCRadioGroup(HCCustomData aOwnerData)
     : base(aOwnerData)
 {
     this.StyleNo     = HCStyle.RadioGroup;
     Width            = 100;
     FBatchCount      = 0;
     FColumns         = 0;
     FColumnAlign     = true;
     FItemHit         = false;
     FItems           = new HCList <HCRadioButton>();
     FItems.OnInsert += new EventHandler <NListEventArgs <HCRadioButton> >(DoItemNotify);
     FItems.OnDelete += OnItemDelete;
 }