在C#法典的一节一开始,可以有几秒钟才能完成,我想展示一种非模式,其贴上“请等”的标签。
WaitForm myWaitForm = null;
try
{
// if conditions suggest process will take awhile
myWaitForm = new WaitForm();
myWaitForm.Show();
// do stuff
}
finally
{
if (myWaitForm != null)
{
myWaitForm.Hide();
myWaitForm.Dispose();
myWaitForm = null;
}
}
问题:WaitForm在法典的其余部分交织起来之前完全展示。 因此,我只看表格的框架。 在德尔菲(我的老 st场),我称之为申请。 展览后的程序 C#中是否有类似之处? 我是否可以在类似情况下使用“状态”的形式? 是否有更好的办法处理这一问题?
Thanks in advance. David Jennings