aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/Splash/SplashForm.cs
blob: 1260c34052f5f0d5c51a73676797791fb32fb57b (plain)
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
37
38
39
40
41
42
43
44
45
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MediaBrowser.ServerApplication.Splash
{
    public partial class SplashForm : Form
    {
        private readonly TaskScheduler _uiThread;
        
        private readonly Progress<double> _progress;

        public SplashForm(Version version, Progress<double> progress)
        {
            InitializeComponent();

            lblVersion.Text = string.Format("Version {0}...", version);

            _progress = progress;
            
            progress.ProgressChanged += progress_ProgressChanged;
            _uiThread = TaskScheduler.FromCurrentSynchronizationContext();
        }

        async void progress_ProgressChanged(object sender, double e)
        {
            await Task.Factory.StartNew(() =>
            {
                var width = e * 6.48;

                panelProgress.Width = Convert.ToInt32(width);

            }, CancellationToken.None, TaskCreationOptions.None, _uiThread);
        }

        protected override void OnClosing(CancelEventArgs e)
        {
            _progress.ProgressChanged += progress_ProgressChanged;

            base.OnClosing(e);
        }
    }
}