绑定工具包:GestureListener 事件到视图模型中的方法
在Windows Phone 7.5项目中,有没有办法
<toolkit:GestureListener DoubleTap="GestureListener_DoubleTap"/>
直接绑定到视图模型方法?
In a Windows Phone 7.5 project, is there a way to bind
<toolkit:GestureListener DoubleTap="GestureListener_DoubleTap"/>
directly to a view model method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您可能需要 EventToCommand 行为。或者,您可以使用触摸事件处理程序命令属性或处理事件的 ICommand 类型的附加依赖属性来滚动您自己的行为。取决于喜好。
Sounds like you might need the EventToCommand behavior. Alternatively you could roll your own behaviors with touch event handler command properties or attached dependency properties of type ICommand that handle the events. Depending on preference.