예제 #1
0
        public override void PageUpdateProgress(PageUpdateProgress action)
        {
            VerifyAction(typeof(PageUpdateProgress));

            HadProgressPage = true;

            EnterPage(false);

            base.PageUpdateProgress(action);

            ExitPage();
        }
예제 #2
0
 public virtual void PageUpdateProgress(PageUpdateProgress action)
 {
     VisitChildren(action);
 }
예제 #3
0
        public override void PageUpdateProgress(PageUpdateProgress action)
        {
            VerifyAction(typeof(PageUpdateProgress));

            HadProgressPage = true;

            EnterPage(false);

            base.PageUpdateProgress(action);

            ExitPage();
        }
예제 #4
0
 public virtual void PageUpdateProgress(PageUpdateProgress action)
 {
     VisitChildren(action);
 }
예제 #5
0
            public override void PageUpdateProgress(PageUpdateProgress action)
            {
                using (var continuation = Runner.GetContinuation())
                {
                    _form.ShowPage<ProgressPage>(Runner, continuation);
                }

                base.PageUpdateProgress(action);

                CommitInstallation();
            }