要自定義 RadioButtonList 的樣式,您可以使用 CSS 和 HTML 來實現。以下是一個簡單的示例,展示了如何為 RadioButtonList 設置自定義樣式:
<asp:RadioButtonList ID="RadioButtonList1" runat="server">
<asp:ListItem Text="選項1" Value="1"></asp:ListItem>
<asp:ListItem Text="選項2" Value="2"></asp:ListItem>
<asp:ListItem Text="選項3" Value="3"></asp:ListItem>
</asp:RadioButtonList>
.customRadioButtonList {
font-size: 16px;
color: #333;
background-color: #f5f5f5;
}
.customRadioButtonList input[type="radio"] {
margin-right: 5px;
}
</style>
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
foreach (ListItem item in RadioButtonList1.Items)
{
item.Attributes.Add("class", "customRadioButtonList");
}
}
}
現在,RadioButtonList 的樣式已經被自定義。請根據需要調整 CSS 代碼以獲得所需的外觀。