问题是我有一些显示加载动画的闪屏。 我有特别经理来展示和隐藏它。
class Manager
{
private Form CurForm;
Thread curt;
private Manager()
{
curt= new Thread(start);
curt.ApartmentState = ApartmentState.STA;
curt.IsBackground = true;
curt.Start();
}
void start()
{
CurForm = new Animation();
Application.Run(CurForm);
}
public static readonly Manager Active = new Manager();
public static void Show()
{
if (Active.CurForm != null)
{
Active.CurForm.Invoke(new Action(() => { Active.CurForm.Show(); }));
}
}
public static void Hide()
{
if (Active.CurForm != null)
{
Active.CurForm.Invoke(new Action(() => { Active.CurForm.Hide(); }));
}
}
}
我打开一些模态表单(ShowDialog)。此模式窗体未显示在任务栏中。
我可以轻松地将其最小化,点击任务栏上的主窗体后,它会在顶部显示模态窗体。
但是当我在加载所有必要的数据时显示这个加载动画。
某种类似的东西(当然它只是一个测试它工作的样本,在真正的应用程序中花了很多时间来加载所有数据和带有大量控件的表单)
public modal()
{
Manager.Show();
InitializeComponent();
Thread.Sleep(5000);
Manager.Hide();
}
当我试图最小化并恢复它时,就像我上面说的那样,它不会恢复我的模态形式,只显示我的主要不可用形式。而且在某些情况下它可以工作,但在某些情况下却没有。
有人知道它为什么会发生或如何修复它?
答案 0 :(得分:0)
这很奇怪但是当我像这样修改时,一切似乎都正常。
我只是杀了单独的ui线程。
public class MyApplicationContext:ApplicationContext
{
public Form CurForm;
ManualResetEvent ready = new ManualResetEvent(false);
public MyApplicationContext()
{
CurForm=new Animation();
CurForm.Show();
}
}
class Manager
{
private MyApplicationContext CurContext;
Thread curt;
void start()
{
try
{
CurContext = new MyApplicationContext();
Application.Run(CurContext);
}
catch
{
CurContext.CurForm.Close();
}
}
private void Init()
{
curt = new Thread(start);
curt.SetApartmentState(ApartmentState.STA);
curt.IsBackground = true;
curt.Start();
}
public static Manager Active
{
get
{
if (active == null)
{
active = new Manager();
}
return active;
}
}
private static Manager active;
public static void Show()
{
Active.Init();
}
public static void Hide()
{
Active.curt.Abort();
}