AuntieDot.UI.WinPhone8.Pages.Concept.Welcome.GoToServiceRecord C# (CSharp) Method

GoToServiceRecord() public method

public GoToServiceRecord ( ) : void
return void
        public void GoToServiceRecord()
        {
            // Show Pending UI
            ShowPendingUI.Completed += (o, args) =>
                {
                    //Show Processing Animation
                    ProcessingAnimation.Begin();

                    var waitThread = new Thread(() =>
                        {
                            // zzzzz
                            Thread.Sleep(2500);

                            // Go to Service Record
                            Dispatcher.BeginInvoke(() => NavigationService.Navigate(new Uri("/Pages/Concept/ServiceRecord/Hub.xaml", UriKind.Relative)));
                        });
                    waitThread.Start();

                };
            ShowPendingUI.Begin();
        }