public HCRadioGroup(HCCustomData aOwnerData) : base(aOwnerData) { this.StyleNo = HCStyle.RadioGroup; Width = 100; FItems = new HCList <HCRadioButton>(); FItems.OnInsert += new EventHandler <NListEventArgs <HCRadioButton> >(DoItemNotify); }
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; }