黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP.NET RadioButtonList RepeatDirection 屬性

ASP.NET RadioButtonList RepeatDirection 屬性

RadioButtonList 控件 RadioButtonList 控件

定義和用法

RepeatDirection 屬性用于獲取或設(shè)置 RadioButtonList 中的項(xiàng)目是垂直顯示還是水平顯示。

語法

<asp:RadioButtonList RepeatDirection="mode" runat="server">
...
一些內(nèi)容
...
</asp:RadioButtonList >

屬性 描述
mode 規(guī)定 RadioButtonList 中的項(xiàng)目的布局。

可能的值:

  • Horizontal - 水平顯示
  • Vertical - 默認(rèn)。垂直顯示。

下面的例子設(shè)置了 RadioButtonList 控件的 RepeatDirection:

<form runat="server">
<asp:RadioButtonList id="rb1"
runat="server" RepeatDirection="Horizontal">

...
一些內(nèi)容
...

</asp:RadioButtonList>
</form>
RadioButtonList 控件 RadioButtonList 控件
相關(guān)文章