Exemplo n.º 1
0
 public void ExitTour()
 {
     if (myPopup == null)
     {
         Log.Warn(nameof(ExitTour) + ": Unable to exit tour - tour has not been started.");
     }
     else
     {
         myPopup?.Release();
         myPopup = null;
     }
 }
Exemplo n.º 2
0
 public void StartTour(IPlacementAware viewModel)
 {
     myPopup?.Release();
     myPopup = new FeatureTourPopup(viewModel);
 }