MouseDragElementBehavior 绑定属性
默认情况下,MouseDragElementBehavior 不实现 Binding 方法(SetBinding、GetBindingExpression 等),如何为该行为创建绑定对象?这可能吗?
By default MouseDragElementBehavior does not implement the methods of Binding (SetBinding, GetBindingExpression, etc) how can I make a binding object to this behavior? Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定我是否理解您的问题,但类似这样的事情可能会起作用:
MouseDragElementBehavior 从 DependencyObject 继承,您可以设置对属性 X 和 Y 的绑定,请注意在前面的代码中如何指定元素名称。
希望这有帮助。
Not sure if i understand your question, but something like this may work:
The MouseDragElementBehavior inerits from DependencyObject and you can set bindings to the properties X and Y, note in the previous code how the element name is specified.
Hope this helps.