嘿,我正在尝试做作业。当专业人士输入其有效但我的无效时,我正在观看和键入代码。
完全错误:CS1061'对象'不包含针对 '已检查',并且没有扩展方法'已检查'接受第一个参数 可以找到“对象”类型(您是否缺少using指令,或者 组装参考?)
if (radioButton2.Checked == true)
{
if (kayitokuma["kullaniciadi"].ToString() == textBox1.Text &&
kayitokuma["parola"].ToString() == textBox2.Text &&
kayitokuma["yetki"].ToString() == "Kullanıcı");
{
答案 0 :(得分:3)
您的radioButton2
类型为object
,没有任何Checked
属性。
因此,您的radioButton2
必须为RadioButton
类型,然后才能使用RadioButton.Checked
属性。
将您的单选按钮实例化为private RadioButton radioButton2
。