Why is my WPF splash screen progress bar out of sync with the execution of the startup steps?

Posted by denny_ch on Stack Overflow See other posts from Stack Overflow or by denny_ch
Published on 2010-05-17T10:14:30Z Indexed on 2010/05/22 19:10 UTC
Read the original article Hit count: 713

Filed under:
|
|
|
|

Hello,

I've implemented a simple WPF splash screen window which informs the user about the progress of the application startup.

The startup steps are defined this way:

var bootSequence =
new[]
    {
        new {Do = (Action) InitLogging, Message = "Init logging..."},
        new {Do = (Action) InitNHibernate, Message = "Init NHibernate..."},
        new {Do = (Action) SetupUnityContainer, Message = "Init Unity..."},
        new {Do = (Action) UserLogOn, Message = "Logon..."},
        new {Do = (Action) PrefetchData, Message = "Caching..."},
    };

InitLogging etc. are methods defined elsewhere, which performs some time consuming tasks.

The boot sequence gets executed this way:

foreach (var step in bootSequence)
{
  _status.Update(step.Message);
  step.Do();
}

_status denotes an instance of my XAML splash screen window containing a progress bar and a label for status information. Its Update() method is defined as follows:

public void Update(string status)
{
    int value = ++_updateSteps;
    Update(status, value);
}

private void Update(string status, int value)
{
    var dispatcherOperation = Dispatcher.BeginInvoke(
        DispatcherPriority.Background,
        (ThreadStart) delegate
        {
            lblStatus.Content = status;
            progressBar.Value = value;
        });
    dispatcherOperation.Wait();
}

In the main this works, the steps get executed and the splash screen shows the progress. But I observed that the splash screen for some reasons doesn't update its content for all steps. This is the reason I called the Dispatcher async and wait for its completion. But even this didn't help.

Has anyone else experienced this or some similar behaviour and has some advice how to keep the splash screen's update in sync with the execution of the boot sequence steps? I know that the users will unlikely notice this behaviour, since the splash screen is doing something and the application starts after booting is completed. But myself isn't sleeping well, because I don't know why it is not working as expected...

Thx for your help, Denny

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET