Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/.net/25.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在VB.NET中,如果没有GroupBox,如何对单选按钮进行分组?_.net_Vb.net_Winforms_Visual Studio - Fatal编程技术网

在VB.NET中,如果没有GroupBox,如何对单选按钮进行分组?

在VB.NET中,如果没有GroupBox,如何对单选按钮进行分组?,.net,vb.net,winforms,visual-studio,.net,Vb.net,Winforms,Visual Studio,我想对单选按钮进行分组,但不想使用可见控件GroupBox。VB.NET中是否有类似的功能?使用面板控件。使用面板控件。我不确定是否可以更改asp:RadioButtonList我不确定是否可以更改asp:RadioButtonList查看 希望这有帮助。查看 希望这能有所帮助。您希望如何将他们分组?你说的团体是什么意思?它们是相互排斥的吗?如果是,请使用RadioButtonList.WinForms?WPF?银灯?ASP.Net?我使用的是VB.Net,所以WinFormsVB.Net也可以

我想对单选按钮进行分组,但不想使用可见控件GroupBox。VB.NET中是否有类似的功能?

使用面板控件。

使用面板控件。

我不确定是否可以更改asp:RadioButtonList

我不确定是否可以更改asp:RadioButtonList

查看

希望这有帮助。

查看


希望这能有所帮助。

您希望如何将他们分组?你说的团体是什么意思?它们是相互排斥的吗?如果是,请使用RadioButtonList.WinForms?WPF?银灯?ASP.Net?我使用的是VB.Net,所以WinFormsVB.Net也可以使用WPF、Silverlight和ASP.Net。您希望如何对它们进行分组?你说的团体是什么意思?它们是相互排斥的吗?如果是,请使用RadioButtonList.WinForms?WPF?银灯?ASP.Net?我使用VB.Net,所以WinFormsVB.Net也可以使用WPF、Silverlight和ASP.Net。他几乎肯定使用WinForms。他几乎肯定使用WinForms。+1面板控件是“无边界”分组收音机/选项框的最佳方式。+1面板控件是“无边界”分组收音机/选项框的最佳方式。
<asp:RadioButtonList id=RadioButtonList1 runat="server">
      <asp:ListItem>Item 1</asp:ListItem>
      <asp:ListItem>Item 2</asp:ListItem>
      <asp:ListItem>Item 3</asp:ListItem>
      <asp:ListItem>Item 4</asp:ListItem>
      <asp:ListItem>Item 5</asp:ListItem>
      <asp:ListItem>Item 6</asp:ListItem>
</asp:RadioButtonList>