What group group method (if any) controls the selection of switches?

I am creating a VB.NET application that includes two radio buttons inside a group field. If the first switch is selected, you must enable a specific tab in the form of a tab. If the second switch is selected, this tab should be disabled.

Is there a group group method that controls both switches and fires when a selection changes? Or do I need to configure separate methods for each switch?

+4
source share
1 answer

You must set an event for each individual switch.

RadioButton.CheckedChanged Event

+2
source

Source: https://habr.com/ru/post/1307717/


All Articles