Ejemplo n.º 1
0
        public override void PageUpdateProgress(PageUpdateProgress action)
        {
            VerifyAction(typeof(PageUpdateProgress));

            HadProgressPage = true;

            EnterPage(false);

            base.PageUpdateProgress(action);

            ExitPage();
        }
Ejemplo n.º 2
0
 public virtual void PageUpdateProgress(PageUpdateProgress action)
 {
     VisitChildren(action);
 }
Ejemplo n.º 3
0
        public override void PageUpdateProgress(PageUpdateProgress action)
        {
            VerifyAction(typeof(PageUpdateProgress));

            HadProgressPage = true;

            EnterPage(false);

            base.PageUpdateProgress(action);

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

                base.PageUpdateProgress(action);

                CommitInstallation();
            }