本帖最后由 yycmd 于 2021-2-17 10:15 编辑
直接将if判断是否有加密狗的地方去掉。
改成下面这样就可以了
[C#] 纯文本查看 复制代码 if (Generl.oneSpecalType == 1)
{
this.SDanOne_radioButton.Checked = false;
this.SDanTwo_radioButton.Checked = true;
}
else
{
this.SDanOne_radioButton.Checked = true;
this.SDanTwo_radioButton.Checked = false;
}
if (Generl.twoSpecalType == 1)
{
this.SShuangOne_radioButton.Checked = false;
this.SShuangTwo_radioButton.Checked = true;
return;
}
this.SShuangOne_radioButton.Checked = true;
this.SShuangTwo_radioButton.Checked = false; |