首先,我的英语不好,对不起。
我希望textbox
(在Form2.cs中)文本显示MainForm.cs
当我应用以下代码时,显示空白信息。
MainForm.cs
private void btnFilitre_ItemClick(object sender,DevExpress.XtraBars.ItemClickEventArgs e)
{
...
Form2 f2 = new Form2();
f2.Show();
}
private void workingFunction()
{
CommClass com = new CommClass();
MessageBox.Show(comm.Sorgu );
}
Form2.cs
private void button1_Click(object sender, EventArgs e)
{
Form1 f1 = new Form1();
CommClass comm = new CommClass();
comm.Sorgu = textBox1.Text;
f1.workingFunction();
Hide();
}
CommClass.cs
public string Sorgu { get; set; }
有什么问题?
答案 0 :(得分:0)
您需要传入参数。在Form1中进行此更改:
public void workingFunction(CommClass comm)
{
MessageBox.Show(comm.Sorgu );
}
在Form2中,您需要跟踪Form1引用,而不是创建新引用,然后传入CommClass
对象:
private void button1_Click(object sender, EventArgs e)
{
CommClass comm = new CommClass();
comm.Sorgu = textBox1.Text;
f1.workingFunction(comm);
Hide();
}