我可以在Delphi和HTML中使用多列Radio组吗?

时间:2011-01-11 06:18:15

标签: html css delphi

我可以在Delphi和HTML中使用多列Radio组吗?

2 个答案:

答案 0 :(得分:6)

在Delphi中,RadioGroup具有您可以设置的Columns属性。

下面的代码将设置3列

RadioGroup1.Columns := 3;

答案 1 :(得分:5)

在HTML中,您只需将喜欢的单选按钮放在表格中即可定义自己的布局:

<table>
    <tr>
        <td>
            <input type="radio" name="group1" value="Milk">Milk<br />
            <input type="radio" name="group1" value="Butter">Butter<br />
            <input type="radio" name="group1" value="Cheese">Cheese
        </td>

        <td>
            <input type="radio" name="group1" value="Water">Water<br />
            <input type="radio" name="group1" value="Bread">Bread<br />
            <input type="radio" name="group1" value="Soda">Soda
        </td>
    </tr>
</table>

对于Delphi部分,我不知道,因为我不熟悉Delphi。

如果它与Windows Forms类似,我认为您只需使用可视化设计器将单个单选按钮放在您希望的任何位置。