如何从 GestureListener.Gesture 触发 EventToCommand
有人使用 Toolkit.GestureListener 来触发 EventToCommand 吗?
Has anyone used a Toolkit.GestureListener to fire an EventToCommand?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前还不可能。 GestureListener.Tap 不支持此功能。
我的代码中有一个事件处理程序,它使用 datacontext 调用 viewmodel 方法:
It is not currently possible. GestureListener.Tap does not support this.
I have an event handler in my code behind, which calls viewmodel method using datacontext:
我认为您不能使用 EventToCommand 行为来做到这一点,但我创建了一种行为,允许通过将 GestureListener 绑定到命令来轻松添加它们。
我只映射了水龙头和双击,但如果需要的话,应该很容易映射其余部分。查看此链接以获取源代码
http://lazycowprojects.tumblr.com/post/ 10397441921/gesturelistenerbehaviourswp7
I don't think you can do it with the EventToCommand behaviour but I have created a behaviour that allows easy addition of the GestureListener by binding them to a command.
I have only mapped the tap and the double tap but it should be easy to map the rest if required. Have a look at this link to get the source code
http://lazycowprojects.tumblr.com/post/10397441921/gesturelistenerbehaviourswp7