internal override void RemoveChild(Atk.Object childToRemove)
        {
            RadioButton rad = childToRemove as RadioButton;

            if (rad != null)
            {
                RadioButtons.Remove(rad);
            }

            base.RemoveChild(childToRemove);
        }