예제 #1
0
 protected void OnNavigationCompletedEvent(NavigationCompletedEventArgs obj)
 {
     inputManager.RaiseNavigationCompleted(this, (uint)obj.source.id, obj.normalizedOffset);
 }
예제 #2
0
 private void NavigationRecognizer_NavigationCompleted(NavigationCompletedEventArgs obj)
 {
     // 2.b: Set IsNavigating to be false.
     IsNavigating = false;
 }
예제 #3
0
 private void NavigationRecognizer_NavigationCompleted(NavigationCompletedEventArgs obj)
 {
     IsNavigating = false;
 }
 protected void NavigationGestureRecognizer_NavigationCompleted(NavigationCompletedEventArgs obj)
 {
     InputManager.Instance.RaiseNavigationCompleted(this, obj.source.id, obj.normalizedOffset);
 }
예제 #5
0
 private void GestureHandler_OnNavigationCompleted(NavigationCompletedEventArgs eventArgs)
 {
     OnNavigationCompletedOrCanceled();
 }
예제 #6
0
 protected override void OnNavigationCompleted(NavigationCompletedEventArgs e)
 {
     _parentBrowser.HandleTabNavCompleted(_tabId, this, e.IsSuccess);
     base.OnNavigationCompleted(e);
 }
예제 #7
0
 void InterNav.NavComplete(NavigationCompletedEventArgs args)
 {
 }
예제 #8
0
 void AdjNav.NavComplete(NavigationCompletedEventArgs args)
 {
 }
예제 #9
0
 private void GestureNavigationCompleted(NavigationCompletedEventArgs args)
 { SendAxesGesture("navigation", Vector3.zero); }
예제 #10
0
 void CaliNav.NavComplete(NavigationCompletedEventArgs args)
 {
 }
 private void OnNavigationCompleted(object sender, NavigationCompletedEventArgs e)
 {
     Debug.Print("IsSuccess:" + e.IsSuccess);
     Debug.Print("NavigationId" + e.NavigationId);
     Debug.Print("WebErrorStatus:" + e.WebErrorStatus);
 }
예제 #12
0
 private void OnWebViewFrameNavigationCompleted(object sender, NavigationCompletedEventArgs e)
 {
     Trace.TraceInformation("OnWebViewFrameNavigationCompleted");
     //MessageBox.Show(this, "OnWebViewFrameNavigationCompleted");
 }
예제 #13
0
 public virtual void OnNavigationCompleted(NavigationCompletedEventArgs args)
 {
 }
예제 #14
0
        private void NavigationRecognizer_NavigationCompleted(NavigationCompletedEventArgs obj)
        {
            //Debug.Log ("NavigationRecognizer_NavigationCompleted");

            IsNavigating = false;
        }
 void GestureRecognizer_NavigationCompleted(NavigationCompletedEventArgs obj)
 {
     inputAction    = MultiARInterop.InputAction.Release;
     inputTimestamp = lastFrameTimestamp;
     //Debug.Log("GestureRecognizer_NavigationCompleted: " + obj.normalizedOffset);
 }