私は時間のかかるコードを持つスプラッシュ画面を持っており、メインスレッドで実行したくありません。私はスレッドを停止し、フォームを閉じるべきであるコードを作ったが、うまくいきません。どんな助けも歓迎されます。スプラッシュ画面のスレッド
コード:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
namespace Cobalt
{
partial class Cobalt : Form
{
public static bool splashCont { get; set; }
public Cobalt()
{
this.Text = "Cobalt V1.0.0";
this.Width = 400;
this.Height = 100;
this.BackgroundImage = Properties.Resources.cobaltlgo;
this.FormBorderStyle = FormBorderStyle.None;
this.TopMost = true;
this.StartPosition = FormStartPosition.CenterScreen;
Thread splash = new Thread(new ThreadStart(splashLoadAction));
splash.Start();
if (splashCont)
{
splash.Abort();
this.Close();
}
}
private void splashLoadAction()
{
Thread.Sleep(5000);
Cobalt.splashCont = true;
}
}
}
プログラムは、ちょうどこの画面のまま: Screen EDIT:
Invoke((MethodInvoker)delegate { MyNextForm.Show(); });
呼び出す:私は次のコードを使用してこの問題を解決することができました UIスレッドのMyNextForm.Show()
。
「機能しません」とはどういう意味ですか? – Enigmativity
また、 'Thread.Abort()'を呼び出すと、アプリ全体を強制的に閉じようとしているのでなければ、**間違った**をやっています。 – Enigmativity