Exemplo n.º 1
0
 /// <summary>
 /// This event method will be executed then the user press the Next button in the tooltip/popup
 /// </summary>
 /// <param name="args">This parameter will contain the "sequence" of the current Step so we can get the next Step from the list</param>
 private void GuideFlowEvents_GuidedTourNextStep(GuidedTourMovementEventArgs args)
 {
     NextStep(args.StepSequence);
 }
Exemplo n.º 2
0
 /// <summary>
 /// This event method will be executed when the user press the Back button in the tooltip/popup
 /// </summary>
 /// <param name="args">This parameter will contain the "sequence" of the current Step so we can get the previous Step from the list</param>
 private void GuideFlowEvents_GuidedTourPrevStep(GuidedTourMovementEventArgs args)
 {
     PreviousStep(args.StepSequence);
 }