or
Private Sub ButtonTakeAttendance_DropDownOpening(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles ButtonTakeAttendance.DropDownOpening If TypeOf (sender) Is RadDropDownButtonElement Then e.Cancel = True End IfEnd Sub
private void radioBtn_ToggleStateChanged(object sender,Telerik.WinControls.UI.StateChangedEventArgs args)
{
<my code here>
}
I need to iterate through the radiobuttons to see which one was selected. All the event handler gives me it the toggle state. I am looking for a foreach() to do this.
