Beispiel #1
0
 private void ARView_OnLocationSelected(ARView sender, LocationsVM.Location location)
 {
     if (ARView.ExternalUserControl == null)
     {
         ARView.ExternalUserControl = new ExternalControl()
         {
             DataContext = location
         }
     }
     ;
     else
     {
         ARView.ExternalUserControl = null;
     }
 }
Beispiel #2
0
 private void ARView_OnLocationReleased(ARView sender, LocationsVM.Location location)
 {
     ARView.ExternalUserControl = null;
 }