在众多情况下,我们都没有办法控制RadioButtonList的高度和宽度,即RadioButtonList里面的圆圈始终是那么小,如果你在网页设计状态下拖动RadioButtonList的尺寸,那么,尺寸是改变了,可是RadioButtonList圆圈还是没有改变,网页运行之后还是一样小。
目前还没有找到更好的解决办法,下面我们提供的这种办法,仅仅是勉强的方法,不是通用的方法。因为只有IE浏览器支持这种方法,而其它的诸如FireFox等浏览器,是不支持的。
我们所使用的方法是:通过CSS代码中的zoom参数来调整RadioButtonList的显示比例。
第一步:动态生成RadioButtonList
RadioButtonList Myrb = new RadioButtonList();//显示选项
Myrb.RepeatColumns = 4;
Myrb.ID = "Myrb1" ); //
Myrb.EnableViewState = true;
Myrb.RepeatDirection = RepeatDirection.Horizontal;
Myrb.RepeatLayout = RepeatLayout.Flow;
Myrb.Items.Add("A");
Myrb.Items.Add("B");
Myrb.Items.Add("C");
Myrb.Items.Add("D");
Myrb.Attributes.Add("style", "zoom:200%");
this.Panel1.Controls.Add(Myrb);
第二步:在页面中使用CSS代码
<style type="text/css">
<!--
.myrb input{zoom:200%}
-->
</style>