PgLoading.xaml.cs 913 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
using System;
using System.Windows.Controls;
using System.Windows.Threading;

namespace FLY.Thick.Blowing360.UI.Server
{
    /// <summary>
    /// PgLoading.xaml 的交互逻辑
    /// </summary>
    public partial class PgLoading : Page
    {
        DispatcherTimer timer;
        public PgLoading()
        {
            InitializeComponent();
            timer = new DispatcherTimer();
            timer.Interval = TimeSpan.FromSeconds(1);
            timer.Tick += Timer_Tick;
            timer.Start();
            Timer_Tick(null, null);
        }
        int cnt = 0;
        private void Timer_Tick(object sender, EventArgs e)
        {
            string str = "";
            for (int i = 0; i < cnt; i++)
            {
                str += ".";
            }
            message.Text = "初始化中" + str;
            cnt++;
            if (cnt > 6)
                cnt = 0;
        }
    }
}