예제 #1
0
        private void Popup_KeyDown(object sender, KeyEventArgs e)
        {
            switch (e.Key)
            {
            case Key.Left:
                GuideFlowEvents.OnGuidedTourPrev();
                break;

            case Key.Right:
                GuideFlowEvents.OnGuidedTourNext();
                break;
            }
        }
예제 #2
0
 private void NextButton_Click(object sender, RoutedEventArgs e)
 {
     GuideFlowEvents.OnGuidedTourNext();
 }
예제 #3
0
 private void StartTourButton_Click(object sender, System.Windows.RoutedEventArgs e)
 {
     GuideFlowEvents.OnGuidedTourNext();
 }
예제 #4
0
 private void StartTourButton_Click(object sender, System.Windows.RoutedEventArgs e)
 {
     GuideFlowEvents.OnGuidedTourNext(popupViewModel.Step.Sequence);
 }
예제 #5
0
 private void NextButton_Click(object sender, RoutedEventArgs e)
 {
     GuideFlowEvents.OnGuidedTourNext(popupViewModel.Step.Sequence);
 }
예제 #6
0
 /// <summary>
 /// This method will execute the action of moving the Guide to the next Step (it is triggered when a specific html div that contains the package is clicked).
 /// </summary>
 internal void MoveToNextStep()
 {
     GuideFlowEvents.OnGuidedTourNext();
 }