如何用单选按钮替换组框文本 属性?

How to replace Groupbox Text property with a Radio Button?

我一直在尝试编辑 GroupBox Class 但默认文本 属性 returns 字符串和 RadioButton 是对象。我无法弄清楚缺少什么。

重要 我想要做的是更改 GroupBox1 的文本,而不是放置一个单选按钮以允许我启用表单。我不想在 groupBox 中放置多个单选按钮。

我也能够在 HTML 中做到这一点,简单如下:

<form>
<fieldset>
    <legend>
        <input type="radio">
        <label>RadioButton1<label>
    </legend>
</fieldset>

出于好奇,它将呈现此表单: enter image description here

我最近在修复一些网络问题时也看到了类似的表格,在 IPV4 下的 WLAN 属性中询问 DNS。这是表格的预览。 enter image description here

这通常是通过将 RadioButton 叠加在 GroupBox 控件之上来完成的。您可能希望将组框的标签设置为空格序列,以便正确绘制其边框。