本文为大家讲解RadioButtonList对象的两种常用技巧,分别为:RadioButtonList如何让文字显示在左边、设置各项间距。
一、RadioButtonList文字在左边显示
如果是动态生成的控件,那么,请使用下面的代码:
RadioButtonList Myrb = new RadioButtonList();
Myrb.TextAlign = TextAlign.Left;//文字显示在控件左边
上面这下代码,就是控制RadioButtonList文字在左边显示的功能代码。
当然,如果不是动态控件,是静态的,那么,你就在属性面板中找到TextAlign这一项,将其设置为TextAlign.Left也是可以的。
二、RadioButtonList设置各项间距
如果要设置各选项值之间的间距,那么,得使用下面的代码。
RadioButtonList Myrb = new RadioButtonList();
Myrb.RepeatLayout = RepeatLayout.Table;
Myrb.Width = 140;
看到上面的代码了吧,首先设置RepeatLayout属性为RepeatLayout.Table表格式的。
然后,再设置控件的宽度.Width,只要这个宽度足够大,那么,各项之间的间距会平均分配。