コード例 #1
0
 private void OnNavigationUpdatedEvent(InteractionSourceKind source, Vector3 normalizedOffset, Ray headray)
 {
     NavigationEventArgs args = new NavigationEventArgs(this, 0, normalizedOffset);
     RaiseNavigationUpdatedEvent(args);
 }
コード例 #2
0
 protected void RaiseNavigationUpdatedEvent(NavigationEventArgs e)
 {
     EventHandler<NavigationEventArgs> handler = NavigationUpdated;
     if (handler != null)
     {
         handler(this, e);
     }
 }