Please could someone point me towards a beginner's guide to using radio buttons. I can see they should be contained within a panel but have not figured out how to link them together or make them visible.
If you put several radio buttons into the same panel so that the panel is the parent of all of them then the buttons will look after themselves; only one button will be checked at a time.
An easy way to handle them is to give them different Tag valued but have them all share the same handler.
Here is an example. There are a lot of other options, but this should get you going.
That simple example was enormously helpful, thank you.
I have learnt how to tie the buttons to the panel and a use for Tag. Both of which are obvious for someone who already knows but not obvious to a beginner reading the documentation.
The radio buttons do not have to be necessarily on the same panel. As long as they have the same event name, they are still mutually exclusive, which means when one is checked the others are unchecked.