I have a Dialog created by MonoTouch.Dialog. There is a list of Doctors in a radio group:
Section secDr = new Section ("Dr. Details") {
new RootElement ("Name", rdoDrNames){
secDrNames
}
I wish to update an Element
in the code once a Doctor has been chosen. What's the best way to be notified that a RadioElement
has been selected?
Create your own
RadioElement
like:note: do not use a static event if you want to have more than one radio group
Then create a
RootElement
that use this new type, like:[UPDATE]
Here is a more modern version of this RadioElement: