不好意思,还有个问题:
我在Form1中写了一个函数如下:
public void TextBox2()
{
textBox2.ReadOnly == true;
}
要在Form2中调用他:private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked == false)
{
Form1 form1 = new Form1();
form1.TextBox2();
Close();
}
}
为什么会报错:只有 assignment、call、increment、decrement 和 new 对象表达式可用作语句
谢谢!