3个radioButton如何使用的问题
我做了个软件,其中有一项要设置参数,0为钢琴radioButton1,6为古钢琴radioButton2,20为风琴radioButton3,
我做了个类比如
public int ints()
{
int i;
if(radioButton1.checked)
i=0;
else if(radioButton2.checked)
i=6;
else if(radioButton3.checked)
i=20;
}
然后调用这个方法 int intsa=ints();
但调式时出现:并非所有的代码路径都返回值