Ejemplo n.º 1
0
        internal bool RollbackPage()
        {
            var args = new WizardPageConfirmEventArgs(this);

            OnRollback(args);
            return(!args.Cancel);
        }
Ejemplo n.º 2
0
        internal bool CommitPage()
        {
            var args = new WizardPageConfirmEventArgs(this);

            OnCommit(args);
            return(!args.Cancel);
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Invoked before going to the previous page.
 /// </summary>
 protected virtual void OnRollback(WizardPageConfirmEventArgs args)
 {
     args.RoutedEvent = RollbackEvent;
     RaiseEvent(args);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Invoked before going to the next page.
 /// </summary>
 protected virtual void OnCommit(WizardPageConfirmEventArgs args)
 {
     args.RoutedEvent = CommitEvent;
     RaiseEvent(args);
 }
Ejemplo n.º 5
0
 internal bool RollbackPage()
 {
     var args = new WizardPageConfirmEventArgs(this);
     OnRollback(args);
     return !args.Cancel;
 }
Ejemplo n.º 6
0
 internal bool CommitPage()
 {
     var args = new WizardPageConfirmEventArgs(this);
     OnCommit(args);
     return !args.Cancel;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Invoked before going to the previous page.
 /// </summary>
 protected virtual void OnRollback(WizardPageConfirmEventArgs args)
 {
     args.RoutedEvent = RollbackEvent;
     RaiseEvent(args);
 }
Ejemplo n.º 8
0
 /// <summary>
 /// Invoked before going to the next page.
 /// </summary>
 protected virtual void OnCommit(WizardPageConfirmEventArgs args)
 {
     args.RoutedEvent = CommitEvent;
     RaiseEvent(args);
 }