0

ワーキングを作成しましたSplashScreen/LoadingScreen

LoadinScreen を表示して閉じるには、次のコードを使用しました。

   LoadingScreen LS = new LoadingScreen();
   LS.Show();

   databaseThread = new Thread(CheckDataBase);
   databaseThread.Start();
   databaseThread.Join();

   LS.Close();

このコードは私にとって素晴らしい仕事をしており、LoadingScreen.

問題は次のLoadingScreenとおりです。Loading Application...

テキスト(ラベル)の最後にあるドットに次のことをさせるタイマーを作成したい:

Loading Application.

1秒後:

Loading Application..

1 秒後:

Loading Application...

のにを追加する必要があると思いtimerます。Load_eventLoadingScreen form

どうすればこれを達成できますか?

4

2 に答える 2

0

次のように簡単にする必要があります。

Timer timer = new Timer();
timer.Interval = 300;
timer.Tick += new EventHandler(methodToUpdateText);
timer.Start();
于 2013-03-05T14:00:18.317 に答える
0

たぶん、このようなものですか?

class LoadingScreen
{
    Timer timer0;
    TextBox mytextbox = new TextBox();
    public LoadingScreen()
    {
        timer0 = new System.Timers.Timer(1000);
        timer0.Enabled = true;
        timer0.Elapsed += new Action<object, System.Timers.ElapsedEventArgs>((object sender, System.Timers.ElapsedEventArgs e) =>
        {
            switch (mytextbox.Text) 
            {
                case "Loading":
                    mytextbox.Text = "Loading.";
                    break;
                case "Loading.":
                    mytextbox.Text = "Loading..";
                    break;
                case "Loading..":
                    mytextbox.Text = "Loading...";
                    break;
                case "Loading...":
                    mytextbox.Text = "Loading";
                    break;
            }
        });
    }
}

編集: UIスレッドがデータベース操作の待機をブロックするのを防ぐ良い方法は、データベース操作をBackgroundWorker exに移動することです:

public partial class App : Application
{
    LoadingScreen LS;   
    public void Main()
    {
        System.ComponentModel.BackgroundWorker BW;
        BW.DoWork += BW_DoWork;
        BW.RunWorkerCompleted += BW_RunWorkerCompleted;
        LS = new LoadingScreen();
        LS.Show();
    }

    private void BW_DoWork(System.Object sender, System.ComponentModel.DoWorkEventArgs e)
    {
        //Do here anything you have to do with the database
    }

    void BW_RunWorkerCompleted(object sender, System.ComponentModel.RunWorkerCompletedEventArgs e)
    {
        LS.Close();
    }
}
于 2013-03-05T14:03:56.563 に答える