2010-08-23 87 views
0

我有一個飛濺形式的winform項目(如此問題的第一個答案中所述:C# winforms startup (Splash) form not hiding)。BringToFront()不起作用

當我使用這個splashform時,mainform放鬆了焦點。一旦我用Form.BringToFront()關閉splashform,但它不起作用,我想盡快將其帶到前臺。

有人可以幫忙嗎?

+0

一旦飛濺窗體關閉,主窗體應該會自動再次獲得焦點。重點在哪裏? – Will 2010-08-23 16:53:49

+2

避免重新發明那個輪子:http://stackoverflow.com/questions/392864/c-splash-screen-problem – 2010-08-23 17:54:18

回答

4

Raymond Chen只是在今天的博客中用了Win32程序addressed this issue

基本上,您需要顯示主窗體並在關閉splashscreen之前調用BringToFront。