热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

与众不同windowsphone(25)Input(输入)之捕获UIElement之外的触控操作,Silverlight方式捕获手势操作,XNA方式捕获手势操作,多点触控

原文:与众不同

原文:



与众不同 windows phone (25) - Input(输入)之捕获 UIElement 之外的触控操作, Silverlight 方式捕获手势操作, XNA 方式捕获手势操作, 多点触控

作者:



介绍
与众不同 windows phone 7.5 (sdk 7.1) 之输入

捕获 UIElement 之外的触控操作
Silverlight 方式捕获手势操作
XNA 方式捕获手势操作

示例
1、演示如何捕获 UIElement 之外的触控操作
OutsideCapture.xaml

phone:PhoneApplicationPage
x:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phOne="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FOntFamily="{StaticResource PhoneFontFamilyNormal}"
FOntSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientatiOns="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:Design d:Design
shell:SystemTray.IsVisible="True"
Grid x:Name="LayoutRoot" Background="Transparent"
Rectangle Name="rect" Fill="Red"
MouseLeftButtOnDown="rect_MouseLeftButtonDown"
MouseLeftButtOnUp="rect_MouseLeftButtonUp"
MouseMove="rect_MouseMove" /
TextBlock Name="lblMsg" VerticalAlignment="Top" TextWrapping="Wrap" Text="用手指触摸红色方块,然后将手指移除红色方块区域" /
/Grid
/phone:PhoneApplicationPage

OutsideCapture.xaml.cs

/*
* 演示如何在 UIElement 外响应 UIElement 上的触控事件
*
* UIElement - UI 元素
* CaptureMouse() - 捕获外部触摸事件,这样即使触摸事件在 UIElement 之外也可以响应
* ReleaseMouseCapture() - 取消外部触摸事件的捕获
*
* 注:
* 调用 UIElement 的 CaptureMouse() 方法需要满足以下条件
* 1、当前没有任何 UIElement 正在捕获中
* 2、必须在 UIElement 的 MouseLeftButtonDown 事件中调用 CaptureMouse() 方法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
namespace Demo.Input.Touch
{
public partial class OutsideCapture : PhoneApplicationPage
{
public OutsideCapture()
{
InitializeComponent();
private void rect_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
rect.CaptureMouse();
lblMsg.Text = "触摸点坐标为:" + e.GetPosition(LayoutRoot).ToString();
private void rect_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
rect.ReleaseMouseCapture();
private void rect_MouseMove(object sender, MouseEventArgs e)
{
// 调用了 rect.CaptureMouse() 之后,即使触控移出 rect 也可以响应触控事件
lblMsg.Text = "触摸点坐标为:" + e.GetPosition(LayoutRoot).ToString();
}
}
}

2、演示如何通过 Silverlight 捕获手势操作
ManipulationDemo.xaml

phone:PhoneApplicationPage
x:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phOne="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FOntFamily="{StaticResource PhoneFontFamilyNormal}"
FOntSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientatiOns="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:Design d:Design
shell:SystemTray.IsVisible="True"
Grid x:Name="LayoutRoot" Background="Transparent"
StackPanel Orientation="Vertical"
TextBlock Text="请随便做一些手势操作,以查看演示效果" /
TextBlock Name="lblMsg" /
/StackPanel
/Grid
/phone:PhoneApplicationPage

ManipulationDemo.xaml.cs

/*
* 演示如何在 Silverlight 下捕获手势操作
*
* UIElement - UI 元素
* ManipulationStarted - 手势操作开始时触发的事件,即触摸屏幕时触发的事件(事件参数:ManipulationStartedEventArgs)
* ManipulationDelta - 手势操作过程中触发的事件(事件参数:ManipulationDeltaEventArgs)
* ManipulationCompleted - 手持操作完成时触发的事件(事件参数:ManipulationCompletedEventArgs)
*
*
* ManipulationStartedEventArgs
* ManipulationContainer - 手势操作的容器,即坐标的参照物
* ManipulationOrigin - 手势起始点坐标
* Complete() - 停止捕获手势操作,即不会再触发 ManipulationDelta 事件
*
* ManipulationDeltaEventArgs
* ManipulationContainer - 手势操作的容器,即坐标的参照物
* ManipulationOrigin - 当前手势的中心点坐标
* Complete() - 停止捕获手势操作,即不会再触发 ManipulationDelta 事件
* DeltaManipulation.Scale - 最近一次缩放比的变化
* DeltaManipulation.Translation - 最近一次位移的变化
* CumulativeManipulation.Scale - 缩放比的累计的变化
* CumulativeManipulation.Translation - 位移的累计的变化
*
* ManipulationCompletedEventArgs
* ManipulationContainer - 手势操作的容器,即坐标的参照物
* ManipulationOrigin - 当前手势的中心点坐标
* TotalManipulation.Scale - 缩放比的总计变化
* TotalManipulation.Translation - 位移的总计变化
* IsInertial - 手势操作收尾时是否有惯性
* FinalVelocities.LinearVelocity - 如果手势操作收尾时有惯性,则此属性会返回其线性速度
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
namespace Demo.Input.Touch
{
public partial class ManipulationDemo : PhoneApplicationPage
{
public ManipulationDemo()
{
InitializeComponent();
// 注册相关手势事件
LayoutRoot.ManipulationStarted += new EventHandler ManipulationStartedEventArgs (LayoutRoot_ManipulationStarted);
LayoutRoot.ManipulationDelta += new EventHandler ManipulationDeltaEventArgs (LayoutRoot_ManipulationDelta);
LayoutRoot.ManipulationCompleted += new EventHandler ManipulationCompletedEventArgs (LayoutRoot_ManipulationCompleted);
void LayoutRoot_ManipulationStarted(object sender, ManipulationStartedEventArgs e)
{
lblMsg.Text = string.Format("手势起始点坐标 - x: {0},y: {1}", e.ManipulationOrigin.X, e.ManipulationOrigin.Y);
void LayoutRoot_ManipulationDelta(object sender, ManipulationDeltaEventArgs e)
{
lblMsg.Text = string.Format("当前手势的中心点坐标 - x: {0},y: {1}", e.ManipulationOrigin.X, e.ManipulationOrigin.Y);
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "缩放比最近的变化:" + e.DeltaManipulation.Scale.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "位移最近的变化" + e.DeltaManipulation.Translation.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "缩放比总共的变化:" + e.CumulativeManipulation.Scale.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "位移总共的变化:" + e.CumulativeManipulation.Translation.ToString();
lblMsg.Text += Environment.NewLine;
void LayoutRoot_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
{
lblMsg.Text = string.Format("当前手势的中心点坐标 - x: {0},y: {1}", e.ManipulationOrigin.X, e.ManipulationOrigin.Y);
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "缩放比总共的变化:" + e.TotalManipulation.Scale.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "位移总共的变化:" + e.TotalManipulation.Translation.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "手势操作收尾时是否有惯性:" + e.IsInertial.ToString();
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "如果手势操作收尾时有惯性,其速度为:" + e.FinalVelocities.LinearVelocity.ToString();
}
}
}

3、演示如何通过 XNA 捕获手势操作
XNAGesture.xaml

phone:PhoneApplicationPage
x:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phOne="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FOntFamily="{StaticResource PhoneFontFamilyNormal}"
FOntSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientatiOns="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:Design d:Design
shell:SystemTray.IsVisible="True"
Grid x:Name="LayoutRoot" Background="Transparent"
StackPanel Orientation="Vertical"
TextBlock Text="请随便做一些手势操作,以查看演示效果" /
TextBlock Name="lblMsg" TextWrapping="Wrap" /
/StackPanel
/Grid
/phone:PhoneApplicationPage

XNAGesture.xaml.cs

/*
* 演示如何在 XNA 下捕获手势操作
*
* TouchPanel - 触摸面板
* DisplayOrientation - 显示方向(Microsoft.Xna.Framework.DisplayOrientation 枚举)
* Default, LandscapeLeft, LandscapeRight, Portrait
* DisplayWidth - 宽
* DisplayHeight - 高
* IsGestureAvailable - 当前是否存在有效的手势操作
* EnabledGestures - 指定需要捕获的手势操作类型(Microsoft.Xna.Framework.Input.Touch.GestureType 枚举)
* None, Tap, DoubleTap, Hold, HorizontalDrag, VerticalDrag, FreeDrag, Pinch, Flick, DragComplete, PinchComplete
* GetCapabilities() - 返回 TouchPanelCapabilities 类型对象
* ReadGesture() - 返回 GestureSample 类型对象
*
*
* TouchPanelCapabilities - 触摸板的能力
* IsConnected - 触摸板是否有效
* MaximumTouchCount - 触摸板可以同时捕获的最大点数,即最大支持几点触摸
*
* GestureSample - 手势信息
* GestureType - 手势操作类型
* Position - 两点手势操作时,第一点的位置
* Position2 - 两点手势操作时,第二点的位置
* Delta - 两点手势操作时,第一点的位移的最近变化值
* Delta2 - 两点手势操作时,第二点的位移的最近变化值
* Timestamp - 此手势开始的时间戳(此值为系统自上次启动以来到此手势开始时所经过的时间)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using Microsoft.Xna.Framework.Input.Touch;
namespace Demo.Input.Touch
{
public partial class XNAGesture : PhoneApplicationPage
{
public XNAGesture()
{
InitializeComponent();
// 在手势操作完成后获取相关的手势信息
LayoutRoot.ManipulationCompleted += new EventHandler ManipulationCompletedEventArgs (LayoutRoot_ManipulationCompleted);
TouchPanelCapabilities tpc = TouchPanel.GetCapabilities();
lblMsg.Text = "触摸板是否有效:" + tpc.IsConnected;
lblMsg.Text += Environment.NewLine;
lblMsg.Text += "触摸板最大支持 " + tpc.MaximumTouchCount + " 点触摸";
lblMsg.Text += Environment.NewLine;
// 指定需要捕获的手势类型(只有指定的类型才能捕获到)
TouchPanel.EnabledGestures = GestureType.Tap | GestureType.DoubleTap | GestureType.Hold | GestureType.HorizontalDrag | GestureType.VerticalDrag | GestureType.FreeDrag | GestureType.Pinch | GestureType.Flick | GestureType.DragComplete | GestureType.PinchComplete;
// 当一次手势操作完成后,获取此次手势操作包含的全部手势信息
void LayoutRoot_ManipulationCompleted(object sender, ManipulationCompletedEventArgs e)
{
/*
* 由于一次手势操作可能会有多个手势信息,所以这里要一直输出手势信息直至没有有效的手势为止
* 这里的一次手势操作指的是手指按下到抬起后,这期间可能会有多个手势信息(比如一次手势操作可能会由多个水平移动、多个垂直移动等组成)
* 可以在每一帧当 TouchPanel.IsGestureAvailable 有效时都获取一下 TouchPanel.ReadGesture(),这样就可以即时获取到当前手势信息
*/
while (TouchPanel.IsGestureAvailable)
{
GestureSample gs = TouchPanel.ReadGesture();
lblMsg.Text += gs.GestureType.ToString() + ",";
}
}
}
}

4、演示如何响应多点触控
MutiTouch.xaml

phone:PhoneApplicationPage
x:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phOne="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FOntFamily="{StaticResource PhoneFontFamilyNormal}"
FOntSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientatiOns="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:Design d:Design
shell:SystemTray.IsVisible="True"
Grid x:Name="LayoutRoot" Background="Transparent"
StackPanel Orientation="Vertical"
TextBlock Text="请多点触摸此屏幕,以查看演示效果" /
TextBlock Name="lblMsg" /
/StackPanel
/Grid
/phone:PhoneApplicationPage

MutiTouch.xaml.cs

/*
* 演示系统对多点触摸的支持
*
*
* TouchPanel - 触摸面板
* GetState() - 返回触摸面板上,被触摸的所有点的状态(TouchCollection 类型)
*
* TouchCollection - 触摸点的集合(TouchLocation 的集合)
*
* TouchLocation - 触摸点
* Position - 触摸点的坐标
* State - 触摸点的状态(TouchLocationState 类型)
*
* TouchLocationState - 触摸点状态(Microsoft.Xna.Framework.Input.Touch.TouchLocationState 枚举)
* Invalid - 无效
* Released - 被释放
* Pressed - 被触摸,即一个新的触摸点
* Moved - 被触摸后移动
*
*
* 注:目前只支持 4 点触摸
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Windows.Navigation;
using Microsoft.Xna.Framework.Input.Touch;
namespace Demo.Input.Touch
{
public partial class MutiTouch : PhoneApplicationPage
{
public MutiTouch()
{
InitializeComponent();
protected override void OnNavigatedTo(NavigationEventArgs e)
{
CompositionTarget.Rendering += new EventHandler(CompositionTarget_Rendering);
void CompositionTarget_Rendering(object sender, EventArgs e)
{
this.Dispatcher.BeginInvoke(delegate
{
lblMsg.Text = "";
// 获取当前触摸点集合
TouchCollection touchLocatiOns= TouchPanel.GetState();
for (int i = ; i touchLocations.Count; i++)
{
TouchLocation touchLocation = touchLocations[i];
float x = touchLocation.Position.X;
float y = touchLocation.Position.Y;
// 显示每个触摸点的坐标及状态
this.Dispatcher.BeginInvoke(new InvokeUIWidthParameterDelegate(ShowMessage), i, x, y, touchLocation.State);
}
void ShowMessage(int i, float x, float y, TouchLocationState state)
{
lblMsg.Text += string.Format("触摸点{0}坐标 - X: {1},Y: {2},状态: {3}", i, x, y, state.ToString());
lblMsg.Text += Environment.NewLine;
private delegate void InvokeUIWidthParameterDelegate(int i, float x, float y, TouchLocationState state);
}
}

OK


   



推荐阅读
  • 在Delphi7下要制作系统托盘,只能制作一个比较简单的系统托盘,因为ShellAPI文件定义的TNotifyIconData结构体是比较早的版本。定义如下:1234 ... [详细]
  • 深入解析 Android 中 EditText 的 getLayoutParams 方法及其代码应用实例 ... [详细]
  • ButterKnife 是一款用于 Android 开发的注解库,主要用于简化视图和事件绑定。本文详细介绍了 ButterKnife 的基础用法,包括如何通过注解实现字段和方法的绑定,以及在实际项目中的应用示例。此外,文章还提到了截至 2016 年 4 月 29 日,ButterKnife 的最新版本为 8.0.1,为开发者提供了最新的功能和性能优化。 ... [详细]
  • 本文探讨了资源访问的学习路径与方法,旨在帮助学习者更高效地获取和利用各类资源。通过分析不同资源的特点和应用场景,提出了多种实用的学习策略和技术手段,为学习者提供了系统的指导和建议。 ... [详细]
  • 掌握Android UI设计:利用ZoomControls实现图片缩放功能
    本文介绍了如何在Android应用中通过使用ZoomControls组件来实现图片的缩放功能。ZoomControls提供了一种简单且直观的方式,让用户可以通过点击放大和缩小按钮来调整图片的显示大小。文章详细讲解了ZoomControls的基本用法、布局设置以及与ImageView的结合使用方法,适合初学者快速掌握Android UI设计中的这一重要功能。 ... [详细]
  • 在探讨C语言编程文本编辑器的最佳选择与专业推荐时,本文将引导读者构建一个基础的文本编辑器程序。该程序不仅能够打开并显示文本文件的内容及其路径,还集成了菜单和工具栏功能,为用户提供更加便捷的操作体验。通过本案例的学习,读者可以深入了解文本编辑器的核心实现机制。 ... [详细]
  • VB.net 进程通信中FindWindow、FindWindowEX、SendMessage函数的理解
    目录一、代码背景二、主要工具三、函数解析1、FindWindow:2、FindWindowEx:3、SendMessage: ... [详细]
  • 在Java项目中,当两个文件进行互相调用时出现了函数错误。具体问题出现在 `MainFrame.java` 文件中,该文件位于 `cn.javass.bookmgr` 包下,并且导入了 `java.awt.BorderLayout` 和 `java.awt.Event` 等相关类。为了确保项目的正常运行,请求提供专业的解决方案,以解决函数调用中的错误。建议从类路径、依赖关系和方法签名等方面入手,进行全面排查和调试。 ... [详细]
  • 如何在Linux系统中实现Windows风格的桌面环境:将Ubuntu 18.04定制为Windows主题界面
    如果您是从Windows转到Linux系统的用户,可能会觉得默认的Ubuntu主题和桌面环境缺乏吸引力和可定制性。尤其是对于习惯了Windows风格的任务栏和主题的用户,Ubuntu 18.04的橙色主题可能显得过于简洁。为了提升用户体验,可以通过安装特定的桌面环境和主题来实现类似Windows的界面效果。本文将详细介绍如何在Ubuntu 18.04中配置和定制桌面环境,使其具备Windows风格的外观和功能。 ... [详细]
  • 本文介绍了如何在 Windows 系统上利用 Docker 构建一个包含 NGINX、PHP、MySQL、Redis 和 Elasticsearch 的集成开发环境。通过详细的步骤说明,帮助开发者快速搭建和配置这一复杂的技术栈,提升开发效率和环境一致性。 ... [详细]
  • Android Studio 安装指南:详细步骤与常见问题解答
    Android Studio 安装指南:详细步骤与常见问题解答 ... [详细]
  • 在Android 4.4系统中,通过使用 `Intent` 对象并设置动作 `ACTION_GET_CONTENT` 或 `ACTION_OPEN_DOCUMENT`,可以从相册中选择图片并获取其路径。具体实现时,需要为 `Intent` 添加相应的类别,并处理返回的 Uri 以提取图片的文件路径。此方法适用于需要从用户相册中选择图片的应用场景,能够确保兼容性和用户体验。 ... [详细]
  • 通过 NuGet 获取最新版本的 Rafy 框架及其详细文档
    为了帮助开发者更便捷地使用Rafy领域实体框架,我们已将最新版的Rafy框架程序集上传至nuget.org,并同步发布了最新版本的Rafy SDK至Visual Studio。此外,我们还提供了详尽的文档和示例,以确保开发者能够快速上手并充分利用该框架的强大功能。 ... [详细]
  • Eclipse JFace Text框架中IDocument接口的getNumberOfLines方法详解与编程实例 ... [详细]
  • Android 图像色彩处理技术详解
    本文详细探讨了 Android 平台上的图像色彩处理技术,重点介绍了如何通过模仿美图秀秀的交互方式,利用 SeekBar 实现对图片颜色的精细调整。文章展示了具体的布局设计和代码实现,帮助开发者更好地理解和应用图像处理技术。 ... [详细]
author-avatar
sdlzq
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有