我正在尝试使用以下代码替换radiobuttonlist中的项目的背景颜色,类似的代码正在处理下拉列表项目
If color Then
rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background: white;")
rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background-color: white;")
Else
rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background-color: LightSlateGray;")
rdBtnList.Items.FindByText(lstItem.Text).Attributes.CssStyle.Add("style", "background: LightSlateGray;")
End If
color = Not color
我错过了什么吗?
由于
答案 0 :(得分:2)
有效
rdBtnList.Items.FindByText(lstItem.Text).Attributes.Add("style", "color: black;font-weight:bold;")