我有一个消息框。显示我想要阻止基于定时器的方法在MessageBox保持打开状态时运行的事件。
下面是我的代码(每隔x分钟更改网络上文件位置的值):
public void offlineSetTurn()
{
try
{
using (StreamWriter sWriter = new StreamWriter("FileLocation"))
{
sWriter.WriteLine(Variable);
}
}
catch (Exception ex)
{
DialogResult result = MessageBox.Show("Can't find file. Click Okay to try again and Cancel to kill program",MessageBoxButtons.OKCancel);
if (result == DialogResult.OK)
{
offlineSetTurn();
}
else if (result == DialogResult.Cancel)
{
Application.Exit();
}
}
}
表单中有方法每30秒调用一次。意思是每隔30秒,就会弹出另一个MessageBox。是否有办法用MessageBox暂停应用程序,如果没有,解决这个问题的最佳方法是什么?如果可能的话,我想避免使用Timer. stop(),因为它会重置计时器计数。
最简单的解决方案是使用一个标志来指示消息框当前是否打开:
private bool isMessageBoxOpen = false;
public void offlineSetTurn()
{
if (isMessageBoxOpen)
return;
try
{
using (StreamWriter sWriter = new StreamWriter("FileLocation"))
{
sWriter.WriteLine(Variable);
}
}
catch (Exception ex)
{
isMessageBoxOpen = true;
DialogResult result = MessageBox.Show("Can't find file. Click Okay to try again and Cancel to kill program",MessageBoxButtons.OKCancel);
isMessageBoxOpen = false;
if (result == DialogResult.OK)
{
offlineSetTurn();
}
else if (result == DialogResult.Cancel)
{
Application.Exit();
}
}
}