[源码下载]

重新想象 Windows 8 Store Apps (50) - 输入: 边缘手势, 手势操作, 手势识别

作者:webabcd

介绍
重新想象 Windows 8 Store Apps 之 手势

  • 监测边缘手势
  • 手势操作 - Manipulate 的应用(位移手势,缩放手势,旋转手势)
  • 手势识别 - GestureRecognizer 的应用

示例
1、演示如何监测边缘手势
Input/Touch/EdgeGestureDemo.xaml

  1. <Page
  2. x:Class="XamlDemo.Input.Touch.EdgeGestureDemo"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:XamlDemo.Input.Touch"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9.  
  10. <Grid Background="Transparent">
  11. <StackPanel Margin="120 0 0 0">
  12.  
  13. <TextBlock Name="lblMsg" FontSize="14.667" />
  14.  
  15. </StackPanel>
  16. </Grid>
  17. </Page>

Input/Touch/EdgeGestureDemo.xaml.cs

  1. /*
  2. * 演示如何监测边缘手势
  3. *
  4. * EdgeGesture - 边缘手势的帮助类
  5. * GetForCurrentView() - 获取当前的 EdgeGesture 对象
  6. * Starting - 边缘手势开始时触发的事件
  7. * Completed - 边缘手势完成后触发的事件
  8. * Canceled - 边缘手势取消后触发的事件
  9. *
  10. * EdgeGestureEventArgs - 触发边缘手势事件后的事件参数
  11. * EdgeGestureKind - 边缘手势的输入类型(Touch, Keyboard, Mouse)
  12. */
  13.  
  14. using System;
  15. using Windows.UI.Input;
  16. using Windows.UI.Xaml.Controls;
  17.  
  18. namespace XamlDemo.Input.Touch
  19. {
  20. public sealed partial class EdgeGestureDemo : Page
  21. {
  22. public EdgeGestureDemo()
  23. {
  24. this.InitializeComponent();
  25.  
  26. EdgeGesture edgeGesture = EdgeGesture.GetForCurrentView();
  27.  
  28. edgeGesture.Canceled += edgeGesture_Canceled;
  29. edgeGesture.Completed += edgeGesture_Completed;
  30. edgeGesture.Starting += edgeGesture_Starting;
  31. }
  32.  
  33. void edgeGesture_Starting(EdgeGesture sender, EdgeGestureEventArgs args)
  34. {
  35. lblMsg.Text += "EdgeGesture Starting";
  36. lblMsg.Text += Environment.NewLine;
  37. }
  38.  
  39. void edgeGesture_Completed(EdgeGesture sender, EdgeGestureEventArgs args)
  40. {
  41. lblMsg.Text += "EdgeGesture Completed";
  42. lblMsg.Text += Environment.NewLine;
  43. }
  44.  
  45. void edgeGesture_Canceled(EdgeGesture sender, EdgeGestureEventArgs args)
  46. {
  47. lblMsg.Text += "EdgeGesture Canceled";
  48. lblMsg.Text += Environment.NewLine;
  49. }
  50. }
  51. }

2、演示 Manipulate 的应用(位移手势,缩放手势,旋转手势)
Input/Touch/Manipulate.xaml

  1. <Page
  2. x:Class="XamlDemo.Input.Touch.Manipulate"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:XamlDemo.Input.Touch"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9.  
  10. <Grid Background="Transparent">
  11. <Grid Margin="120 0 0 0">
  12.  
  13. <TextBlock Name="lblMsg" FontSize="14.667" />
  14.  
  15. <Rectangle Name="rectangle" Height="200" Width="200" Fill="Orange" />
  16.  
  17. </Grid>
  18. </Grid>
  19. </Page>

Input/Touch/Manipulate.xaml.cs

  1. /*
  2. * 演示 Manipulate 的应用(位移手势,缩放手势,旋转手势)
  3. *
  4. *
  5. * 注:Manipulate 一般用于手势操作,GestureRecognizer 一般用于手势识别
  6. *
  7. *
  8. * UIElement - UI 元素
  9. * ManipulationModes - 需要监测的手势(Windows.UI.Xaml.Input.ManipulationModes 枚举)
  10. * 包括:位移手势以及是否带有位移惯性以及是否带有位移轨道,缩放手势以及是否带有缩放惯性,旋转手势以及是否带有旋转惯性
  11. * ManipulationStarting - 触控操作开始时触发的事件
  12. * ManipulationStarted - 触控操作开始后触发的事件
  13. * ManipulationInertiaStarting - 触控操作的惯性开始时触发的事件
  14. * ManipulationCompleted - 触控操作结束后触发的事件
  15. * ManipulationDelta - 触控值发生变化时触发的事件
  16. *
  17. *
  18. * ManipulationStartingRoutedEventArgs
  19. * Container - 此 Manipulation 的容器
  20. * Mode - 获取或设置 ManipulationModes
  21. * Pivot - 获取或设置轴对象,ManipulationPivot 类型的数据
  22. * Center - 旋转中心点
  23. * Radius - 有效的旋转半径
  24. *
  25. * ManipulationStartedRoutedEventArgs
  26. * Container - 此 Manipulation 的容器
  27. * Cumulative - 自操作开始后的累计变化量,返回 ManipulationDelta 类型的对象
  28. * Position - 触摸点相对于 UIElement 的位置
  29. * Complete() - 马上完成 Manipulation 而不发生惯性
  30. *
  31. * ManipulationDeltaRoutedEventArgs
  32. * Container - 此 Manipulation 的容器
  33. * Cumulative - 自操作开始后的累计变化量,返回 ManipulationDelta 类型的对象
  34. * Delta - 当前变化量,返回 ManipulationDelta 类型的对象
  35. * Velocities - 当前变化的速率,返回 ManipulationVelocities 类型的对象
  36. * IsInertial - 是否在惯性运动之中
  37. * Position - 触摸点相对于 UIElement 的位置
  38. * Complete() - 马上完成 Manipulation 而不发生惯性
  39. *
  40. * ManipulationInertiaStartingRoutedEventArgs
  41. * Container - 此 Manipulation 的容器
  42. * Cumulative - 自操作开始后的累计变化量,返回 ManipulationDelta 类型的对象
  43. * Delta - 当前变化量,返回 ManipulationDelta 类型的对象
  44. * Velocities - 当前变化的速率,返回 ManipulationVelocities 类型的对象
  45. * ExpansionBehavior - 惯性的缩放行为,获取或设置 InertiaExpansionBehavior 类型的对象
  46. * DesiredDeceleration - 惯性运动时,缩放的减慢速率
  47. * DesiredExpansion - 惯性结束后,缩放的值
  48. * RotationBehavior - 惯性的旋转行为,获取或设置 InertiaRotationBehavior 类型的对象
  49. * DesiredDeceleration - 惯性运动时,旋转的减慢速率
  50. * DesiredRotation - 惯性结束后,旋转的度数
  51. * TranslationBehavior - 惯性的位移行为,获取或设置 InertiaTranslationBehavior 类型的对象
  52. * DesiredDeceleration - 惯性运动时,直线位移的减慢速率
  53. * DesiredDisplacement - 惯性结束后,直线位移的的值
  54. *
  55. * ManipulationCompletedRoutedEventArgs
  56. * Container - 此 Manipulation 的容器
  57. * Cumulative - 自操作开始后的累计变化量,返回 ManipulationDelta 类型的对象
  58. * Velocities - 当前变化的速率,返回 ManipulationVelocities 类型的对象
  59. * IsInertial - 结束前是否发生了惯性运动
  60. * Position - 触摸点相对于 UIElement 的位置
  61. *
  62. *
  63. * ManipulationDelta - 变化量
  64. * Expansion - 触摸点间距离的变化,单位 dip
  65. * Scale - 触摸点间距离的变化,以一个百分比表示
  66. * Rotation - 旋转角度的变化,以角度为单位
  67. * Translation - 位移的变化,Point 类型的对象
  68. *
  69. * ManipulationVelocities - 变化速率
  70. * Angular - 旋转速度,单位:度/毫秒
  71. * Expansion - 缩放速度,单位:dip/毫秒
  72. * Linear - 直线位移速度,单位:Point/毫秒
  73. *
  74. *
  75. * 什么是 dip: device independent pixels(设备独立像素),不管屏大小和分辨率,把屏幕分成 480 * 320 个点,其中每一点代表 1 dip
  76. */
  77.  
  78. using System;
  79. using Windows.Foundation;
  80. using Windows.UI.Xaml.Controls;
  81. using Windows.UI.Xaml.Input;
  82. using Windows.UI.Xaml.Media;
  83.  
  84. namespace XamlDemo.Input.Touch
  85. {
  86. public sealed partial class Manipulate : Page
  87. {
  88. private TransformGroup _transformGroup;
  89. private CompositeTransform _compositeTransform;
  90. private MatrixTransform _previousTransform;
  91.  
  92. public Manipulate()
  93. {
  94. this.InitializeComponent();
  95.  
  96. // 监测全部手势
  97. rectangle.ManipulationMode = ManipulationModes.All;
  98.  
  99. _transformGroup = new TransformGroup();
  100. _compositeTransform = new CompositeTransform();
  101. _previousTransform = new MatrixTransform() { Matrix = Matrix.Identity };
  102.  
  103. _transformGroup.Children.Add(_previousTransform);
  104. _transformGroup.Children.Add(_compositeTransform);
  105.  
  106. rectangle.RenderTransform = _transformGroup;
  107.  
  108. rectangle.ManipulationStarting += rectangle_ManipulationStarting;
  109. rectangle.ManipulationStarted += rectangle_ManipulationStarted;
  110. rectangle.ManipulationInertiaStarting += rectangle_ManipulationInertiaStarting;
  111. rectangle.ManipulationCompleted += rectangle_ManipulationCompleted;
  112. rectangle.ManipulationDelta += rectangle_ManipulationDelta;
  113. }
  114.  
  115. // 将触控操作的结果显示出来
  116. void rectangle_ManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)
  117. {
  118. _previousTransform.Matrix = _transformGroup.Value;
  119.  
  120. // 获取操作点相对于此 GeneralTransform 的位置
  121. Point center = _previousTransform.TransformPoint(new Point(e.Position.X, e.Position.Y));
  122. _compositeTransform.CenterX = center.X;
  123. _compositeTransform.CenterY = center.Y;
  124.  
  125. _compositeTransform.Rotation = e.Delta.Rotation;
  126. _compositeTransform.ScaleX = e.Delta.Scale;
  127. _compositeTransform.ScaleY = e.Delta.Scale;
  128. _compositeTransform.TranslateX = e.Delta.Translation.X;
  129. _compositeTransform.TranslateY = e.Delta.Translation.Y;
  130. }
  131.  
  132. void rectangle_ManipulationStarting(object sender, ManipulationStartingRoutedEventArgs e)
  133. {
  134. lblMsg.Text += "ManipulationStarting";
  135. lblMsg.Text += Environment.NewLine;
  136. }
  137.  
  138. void rectangle_ManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
  139. {
  140. lblMsg.Text += "ManipulationStarted";
  141. lblMsg.Text += Environment.NewLine;
  142. }
  143.  
  144. void rectangle_ManipulationInertiaStarting(object sender, ManipulationInertiaStartingRoutedEventArgs e)
  145. {
  146. lblMsg.Text += "ManipulationInertiaStarting";
  147. lblMsg.Text += Environment.NewLine;
  148. }
  149.  
  150. void rectangle_ManipulationCompleted(object sender, ManipulationCompletedRoutedEventArgs e)
  151. {
  152. lblMsg.Text += "ManipulationCompleted";
  153. lblMsg.Text += Environment.NewLine;
  154. }
  155. }
  156. }

3、演示 GestureRecognizer 的应用
Input/Touch/GestureRecognizerDemo.xaml

  1. <Page
  2. x:Class="XamlDemo.Input.Touch.GestureRecognizerDemo"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:XamlDemo.Input.Touch"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9.  
  10. <Grid Background="Transparent">
  11. <StackPanel Margin="120 0 0 0">
  12.  
  13. <StackPanel Orientation="Horizontal">
  14. <RadioButton Name="radVertical" GroupName="group" Content="垂直 Cross Slide" Click="radVertical_Click_1" IsChecked="True" />
  15. <RadioButton Name="radHorizontal" GroupName="group" Content="水平 Cross Slide" Click="radHorizontal_Click_1" Margin="10 0 0 0" />
  16. </StackPanel>
  17.  
  18. <TextBlock Name="lblMsg" FontSize="14.667" Margin="0 10 0 0">
  19. <Run>通过 GestureRecognizer 监测手势(本例以 Cross Slide 手势为例)</Run>
  20. </TextBlock>
  21.  
  22. </StackPanel>
  23. </Grid>
  24. </Page>

Input/Touch/GestureRecognizerDemo.xaml.cs

  1. /*
  2. * 演示 GestureRecognizer 的应用
  3. *
  4. * 本例以监测 Cross Slide 手势为例,其它类似
  5. *
  6. * 注:Manipulate 一般用于手势操作,GestureRecognizer 一般用于手势识别
  7. */
  8.  
  9. using System;
  10. using Windows.UI.Input;
  11. using Windows.UI.Xaml.Controls;
  12. using Windows.UI.Xaml.Input;
  13.  
  14. namespace XamlDemo.Input.Touch
  15. {
  16. public sealed partial class GestureRecognizerDemo : Page
  17. {
  18. private GestureRecognizer _gestureRecognizer;
  19.  
  20. public GestureRecognizerDemo()
  21. {
  22. this.InitializeComponent();
  23.  
  24. _gestureRecognizer = new GestureRecognizer();
  25.  
  26. /*
  27. * Windows.UI.Input.GestureSettings 是一个 flag 枚举,其值包括:
  28. * None, Tap, DoubleTap, Hold, HoldWithMouse, RightTap, Drag, CrossSlide, ManipulationTranslateX, ManipulationTranslateY, ManipulationTranslateRailsX, ManipulationTranslateRailsY, ManipulationRotate, ManipulationScale, ManipulationTranslateInertia, ManipulationRotateInertia, ManipulationScaleInertia
  29. */
  30.  
  31. // 监测 CrossSlide 手势
  32. _gestureRecognizer.GestureSettings = GestureSettings.CrossSlide;
  33. _gestureRecognizer.CrossSliding += _gestureRecognizer_CrossSliding;
  34.  
  35. this.PointerMoved += GestureRecognizerDemo_PointerMoved;
  36. this.PointerPressed += GestureRecognizerDemo_PointerPressed;
  37. this.PointerReleased += GestureRecognizerDemo_PointerReleased;
  38. }
  39.  
  40. void GestureRecognizerDemo_PointerPressed(object sender, PointerRoutedEventArgs e)
  41. {
  42. // 告诉 GestureRecognizer 指针按下了,以便 GestureRecognizer 做手势监测
  43. _gestureRecognizer.ProcessDownEvent(e.GetCurrentPoint(null));
  44. }
  45.  
  46. void GestureRecognizerDemo_PointerMoved(object sender, PointerRoutedEventArgs e)
  47. {
  48. // 告诉 GestureRecognizer 指针移动中,以便 GestureRecognizer 做手势监测
  49. _gestureRecognizer.ProcessMoveEvents(e.GetIntermediatePoints(null));
  50. }
  51.  
  52. void GestureRecognizerDemo_PointerReleased(object sender, PointerRoutedEventArgs e)
  53. {
  54. // 告诉 GestureRecognizer 指针释放了,以便 GestureRecognizer 做手势监测
  55. _gestureRecognizer.ProcessUpEvent(e.GetCurrentPoint(null));
  56. }
  57.  
  58. void _gestureRecognizer_CrossSliding(GestureRecognizer sender, CrossSlidingEventArgs args)
  59. {
  60. lblMsg.Text += Environment.NewLine;
  61. lblMsg.Text += " CrossSliding: " + args.CrossSlidingState + "; " + args.Position.ToString();
  62. }
  63.  
  64. private void radVertical_Click_1(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  65. {
  66. // 监测垂直 Cross Slide 手势
  67. _gestureRecognizer.CrossSlideHorizontally = false;
  68. }
  69.  
  70. private void radHorizontal_Click_1(object sender, Windows.UI.Xaml.RoutedEventArgs e)
  71. {
  72. // 监测水平 Cross Slide 手势
  73. _gestureRecognizer.CrossSlideHorizontally = true;
  74. }
  75. }
  76. }

OK
[源码下载]

重新想象 Windows 8 Store Apps (50) - 输入: 边缘手势, 手势操作, 手势识别的更多相关文章

  1. 重新想象 Windows 8 Store Apps (51) - 输入: 涂鸦板

    [源码下载] 重新想象 Windows 8 Store Apps (51) - 输入: 涂鸦板 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 涂鸦板 通过 Poin ...

  2. 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop

    [源码下载] 重新想象 Windows 8 Store Apps (49) - 输入: 获取输入设备信息, 虚拟键盘, Tab 导航, Pointer, Tap, Drag, Drop 作者:weba ...

  3. 重新想象 Windows 8 Store Apps 系列文章索引

    [源码下载][重新想象 Windows 8.1 Store Apps 系列文章] 重新想象 Windows 8 Store Apps 系列文章索引 作者:webabcd 1.重新想象 Windows ...

  4. 重新想象 Windows 8 Store Apps (16) - 控件基础: 依赖属性, 附加属性, 控件的继承关系, 路由事件和命中测试

    原文:重新想象 Windows 8 Store Apps (16) - 控件基础: 依赖属性, 附加属性, 控件的继承关系, 路由事件和命中测试 [源码下载] 重新想象 Windows 8 Store ...

  5. 重新想象 Windows 8 Store Apps (38) - 契约: Search Contract

    [源码下载] 重新想象 Windows 8 Store Apps (38) - 契约: Search Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之 ...

  6. 重新想象 Windows 8 Store Apps (39) - 契约: Share Contract

    [源码下载] 重新想象 Windows 8 Store Apps (39) - 契约: Share Contract 作者:webabcd 介绍重新想象 Windows 8 Store Apps 之  ...

  7. 重新想象 Windows 8 Store Apps (52) - 绑定: 与 Element Model Indexer Style RelativeSource 绑定, 以及绑定中的数据转换

    [源码下载] 重新想象 Windows 8 Store Apps (52) - 绑定: 与 Element Model Indexer Style RelativeSource 绑定, 以及绑定中的数 ...

  8. 重新想象 Windows 8 Store Apps (53) - 绑定: 与 ObservableCollection CollectionViewSource VirtualizedFilesVector VirtualizedItemsVector 绑定

    [源码下载] 重新想象 Windows 8 Store Apps (53) - 绑定: 与 ObservableCollection CollectionViewSource VirtualizedF ...

  9. 重新想象 Windows 8 Store Apps (56) - 系统 UI: Scale, Snap, Orientation, High Contrast 等

    [源码下载] 重新想象 Windows 8 Store Apps (56) - 系统 UI: Scale, Snap, Orientation, High Contrast 等 作者:webabcd ...

随机推荐

  1. End of HTML blink tag

    Recently I have read a news which said "Firfox 23 nixes support for outdated blink HTML tag&quo ...

  2. Codeforces 346C Number Transformation II 构造

    题目链接:点击打开链接 = = 990+ms卡过 #include<stdio.h> #include<iostream> #include<string.h> # ...

  3. Linux环境的PHP执行

    /usr/local/php5/bin/php -c /var/spool/php.ini -q /var/spool/auto.php

  4. [置顶] 开关电源的pcb设计规范

    参数设置相邻导线间距必须能满足电气安全要求 印制线的长度和宽度会影响其阻抗和感抗 尽量加粗接地线若接地线很细 按照电路的流程安排各个功能电路单元的位置 在任何开关电源设计中,pcb板的物理设计都是最后 ...

  5. IOS 开发环境,证书和授权文件等详解

    (转自:http://blog.csdn.net/gtncwy/article/details/8617788) 一.成员介绍1.    Certification(证书)证书是对电脑开发资格的认证, ...

  6. WIN7,WIN8,WIN8.1,64位客户端使用32位的ODBC配置

    运行64位的ODBC管理器,点开始-->运行-->odbcad32回车即可打开,但打开后看不到32位的驱动, 如果要运行32位的ODBC管理器,该怎么办呢,其实很简单, 只要执行C:\Wi ...

  7. 字节对齐导致的iOS EXC_ARM_DA_ALIGN崩溃

    本文原链接: http://www.cnblogs.com/zouzf/p/4455167.html 先看一下这个链接:http://www.cnblogs.com/ren54/archive/201 ...

  8. php 连接redis,并登录验证

    环境: centos7 上安装了redis, 同时安装了php的redis扩展 yum install redis yum install php-pecl-redis redis服务端设置了登录密码 ...

  9. 查询修改linux 打开文件句柄数量

    查询系统支持最大可打开文件句柄数量: #vi /proc/sys/fs/file-max 查询当前连接用户最大可打开文件句柄数量: #ulimit -a 修改当前连接用户最大可打开文件句柄数量: #u ...

  10. SkipList 跳表

    1.定义描述      跳跃列表(也称跳表)是一种随机化数据结构,基于并联的链表,其效率可比拟于二叉查找树(对于大多数操作需要O(log n)平均时间).      基本上,跳跃列表是对有序的链表增加 ...