Inheritance: IManipulationStartedEventArgs
コード例 #1
0
ファイル: CustomFonts.xaml.cs プロジェクト: jiatingxiu/Win2D
 void gestureRecognizer_ManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     velocity = 0;
     inManipulation = true;
 }
コード例 #2
0
 public void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     physics.OnManipulationStarted(sender, args);
 }
コード例 #3
0
ファイル: GameObject.cs プロジェクト: reeselevine/proj2
 public virtual void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
 }
コード例 #4
0
 public void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     this.zoom_init = this.zoom;
 }
コード例 #5
0
ファイル: GameController.cs プロジェクト: reeselevine/proj2
 public void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     // Pass Manipulation events to the game objects.
 }
コード例 #6
0
ファイル: Player.cs プロジェクト: philyum/TheAmazingFishy
 public override void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     base.OnManipulationStarted(sender, args);
     isShooting = true;
     touched = true;
 }
コード例 #7
0
 // When a manipulation begins, change the color of the object to reflect
 // that a manipulation is in progress
 void OnManipulationStarted(object sender, ManipulationStartedEventArgs e)
 {
     Border b = element as Border;
     b.Background = new SolidColorBrush(Windows.UI.Colors.DeepSkyBlue);
 }
コード例 #8
0
ファイル: PullToFresh.cs プロジェクト: HppZ/UniversalTest
 void ElementScrollViewer_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
 {
     if (VerticalOffset == 0 && e != null && e.Position != null)
     {
         ManipulationStartedYOffset = e.Position.Y;
         ChangeVisualState(RefreshState.Pulling, true);
     }
 }
コード例 #9
0
 void OnManipulationStarted(object sender, ManipulationStartedEventArgs e)
 {
 }
コード例 #10
0
 /// <summary>
 /// Handle initial starting movement of touch/mouse pointer
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="args"></param>
 public void OnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
     Vector2 location = new Vector2((float)args.Position.X, (float)args.Position.Y);
     HandleGrabBody(location);
 }
コード例 #11
0
 private void GrOnManipulationStarted(GestureRecognizer sender, ManipulationStartedEventArgs args)
 {
 }
コード例 #12
0
        private void deleteButton_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
        {

        }