asp.net 动态创建20个RadioButtonList,怎么获取这20个RadioButtonList选中的值,对我有帮助的给20分.

asp.net 动态创建20个RadioButtonList,怎么获取这20个RadioButtonList选中的值,对我有帮助的给20分.,第1张

RadioButton 是单选按钮,只能是选那个值就是那个。

string radioValue="";

foreach(RadioButton radioButton in RadioButtonList)

{

if(radioButtoncheck)

{

radioValue= radioButtonSelectValueToString();

}

}

ResponseWrite(radioValue);

if radiobutton1checked = true then

elseif radiobutton2checked = true then

end if

不可以 c#是无法用代码来获取或设置控件儿的TabIndex属性的

建议用 chontrolchontrols["这里写控件名称"]

例:((RadioButton)GroupBoxControls["RadioButton1"])

前面的RadioButton是为了将Control类型再转换为RadioButton

希忘对你有帮助

对于如图所示的单选按钮 xml文件表示为

  <RadioGroup 

        android:id="@+id/sex"

        android:layout_width="fill_parent"

        android:layout_height="wrap_content">

        <RadioButton 

            android:id="@+id/male"

            android:text="男"/>

        <RadioButton 

            android:id="@+id/female"

            android:text="女"/>

    </RadioGroup>

获取数据内容示例:

thissex=(RadioGroup) superfindViewById(Ridsex);

thismale=(RadioButton) superfindViewById(Ridmale);

thisfemale=(RadioButton) superfindViewById(Ridfemale);

thissexsetOnCheckedChangeListener(new OnCheckedChangeListenerImp());

private class OnCheckedChangeListenerImp implements OnCheckedChangeListener{

public void onCheckedChanged(RadioGroup group, int checkedId) {

String temp=null;

if(MainActivitythismalegetId()==checkedId){

temp="男";

}

else if(MainActivitythisfemalegetId()==checkedId){

temp="女";

}

RadioButton是android开发中常见的一种控件,而使用简单,通常与RadioGroup一起使用。RadioButton表示单个圆形单选框,而RadioGroup是可以容纳多个RadioButton的容器。

<html>

<head>

<title>无标题文档</title>

<meta >

以上就是关于asp.net 动态创建20个RadioButtonList,怎么获取这20个RadioButtonList选中的值,对我有帮助的给20分.全部的内容,包括:asp.net 动态创建20个RadioButtonList,怎么获取这20个RadioButtonList选中的值,对我有帮助的给20分.、vb.net 有没有哪个属性或方法可以得到一组共 5个radiobutton中 选中的按钮、C#控件GroupBox中的多个RadioButton可以实现Tab键的索引吗等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9476189.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存