我在这里读过几样这样的事情,但在我的问题中找不到解决方案。
我正在从form1向tempGraph表单发送数据。一切都没关系,直到我关闭我的tempGraph表单并尝试重新打开它。当我试图重新打开它时CANNOT ACCESS A DISPOSED OBJECT
说现在是我的问题。
我怎样才能再次打开我的临时图?
这是我将数据发送到不同形式的代码,例如我的tempGraph:
public void SetText(string text)//Set values to my textboxes
{
if (this.receive_tb.InvokeRequired)
{
SetTextCallback d = new SetTextCallback(SetText);
this.Invoke(d, new object[] { text });
}
else
{ var controls = new TextBox[]
{ wdirection_tb,
wspeed_tb,
humidity_tb,
temperature_tb,
rainin_tb,
drainin_tb,
pressure_tb,
light_tb
};
data = text.Split(':');
for (int index = 0; index < controls.Length && index < data.Length; index++) // This code segment Copy the data to TextBoxes
{
TextBox control = controls[index];
control.Text = data[index];
//planning to pud the code for placing data to DataGridView here.
}
//or Place a code here to Call a UDF function that will start copying files to DataGridView
//index1++; //it will count what row will be currently added by datas
if (data.Length != 0)
{ datagridreport(temperature_tb.Text.ToString(), humidity_tb.Text.ToString(), pressure_tb.Text.ToString()); }
//sending of data to each graph. THIS CODE SENDS DATA TO OTHER FORMS
tempG.temp.Text = temperature_tb.Text;
humdidG.humid.Text = humidity_tb.Text;
pressG.Text = pressure_tb.Text;
//updating textbox message buffer
this.receive_tb.Text += text;
this.receive_tb.Text += Environment.NewLine;
}
}
以下是我打开位于form1
private void temperatureToolStripMenuItem_Click(object sender, EventArgs e)
{
tempG.Show();
}
我使用位于右上角的X按钮关闭我的tempG / tempGraph,或使用带有以下命令的按钮关闭它:
private void button1_Click(object sender, EventArgs e)
{
timer1.Stop();
timer1.Enabled = false;
TempGraph.ActiveForm.Close();
}
注意:关闭后重新打开tempGraph时会发生错误。
答案 0 :(得分:3)
这是因为您已将对当前tempGraph
表单的引用存储在全局变量中,并且当您关闭当前实例时该变量仍保留对现在已处置对象的引用。
解决方案是以主窗体形式获取已关闭的事件,并将全局变量重置为null。
因此,假设您将菜单更改为
private void temperatureToolStripMenuItem_Click(object sender, EventArgs e)
{
if(tempG == null)
{
tempG = new tempGraph();
tempG.FormClosed += MyGraphFormClosed;
}
tempG.Show();
}
并在主窗体中添加以下事件处理程序
private void MyGraphFormClosed(object sender, FormClosedEventArgs e)
{
tempG = null;
}
现在,当tempGraph
引用的tempG
表单实例关闭时,您将收到通知,您可以将全局变量tempG
设置为null。当然现在你需要在使用该变量之前检查所有地方,但是当你调用tempG.Show()时,你肯定会让它指向一个正确的非DISPOSED实例。