有没有一种简单的方法可以使 Silverlight XAML 中的任何内容可拖动?
我的目标是剪辑在画布中的整个列表框,但我想应该有一些可以适用于所有控件的东西?
如何使控件可拖动甚至附加 x 或 y 约束?
My target is an entire listbox clipped in a canvas, but I guess there should be something that can work for all controls?
How to make a control draggable and even attached x or y constraints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须循环遍历所有子控件并向鼠标事件添加处理程序。
在这些事件中,您可以控制拖动和边界。
You would have to cycle thru all the child controls and add handlers to mouse events.
Within those events you control the drag and the bounds.