如何在 Select 另一个 GroupBox 中的单选按钮之一时隐藏 GroupBox?

How to hidden the GroupBox when Select one of radio button in another GroupBox?

GM大家,

我使用 Vb.net

在 WinForms 上工作

当我选中 groupbox1 中的单选按钮时,我想隐藏 groupbox2 中的所有组件

我需要通过单选按钮或组框

知道事件的名称以及select它的位置

如果您想隐藏整个组框本身:

Sub SomeRadioButton_CheckedChanged(sender As Object, e as EventArgs) Handles SomeRadioButton.CheckedChanged
  GroupBox2.Visible = Not SomeRadioButton.Checked
End Sub

如果你想隐藏里面的控件但留下一个空的组框:

Sub SomeRadioButton_CheckedChanged(sender As Object, e as EventArgs) Handles SomeRadioButton.CheckedChanged
  GroupBox2.Controls.ToList().ForEach(Function(c) c.Visible = Not SomeRadioButton.Checked)
End Sub