yhxhappy 发表于 2021-10-30 15:08:59

可以考虑这种方式

$Form1 = GUICreate("Form1", 615, 438, 306, 243)

GUICtrlCreateLabel("CMD和批处理", 10, 20, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 20, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 20, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("注册表", 10, 60, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 60, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 60, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("任务管理器", 10, 100, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 100, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 100, 120, 20)
GUIStartGroup()
GUICtrlCreateLabel("修改密码/锁定本机", 10, 140, 120, 20, 0x0200+0x0002)
$iRadio1 = GUICtrlCreateRadio("禁止", 140, 140, 40, 20)
$iRadio2 = GUICtrlCreateRadio("解除", 200, 140, 120, 20)


GUISetState(@SW_SHOW)

While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case -3
                        Exit

      EndSwitch
WEnd

hljkwan 发表于 2021-10-30 15:23:22

yhxhappy 发表于 2021-10-30 15:08
可以考虑这种方式

感谢~~感谢~~
页: 1 2 [3]
查看完整版本: 【已解决】选了(1)禁止就无法选择(1)解除,怎么搞