在简单的线条上调整装饰器的大小?
有许多适用于 WPF 的调整大小装饰器示例,但我还没有找到适合与简单线条一起使用的示例...显然,我希望控制点显示在线条的末端,并且不在其周围形成矩形。有人遇到过这样的事情吗?
There are a number of Resizing Adorner samples for WPF out there, but I haven't found one that would be good to use with a simple Line... Obviously I'd like the control points to show up on the ends of the line, and not form a rectangle around it. Anyone run across something like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的线装饰器的实现,您可以移动起点和终点或移动线(当前已注释)。
这是用于捕捉点的 SnapToGrid 类(如果不需要,可以从代码中删除)。
以下是模型对象:
My implementation of Line Adorner, you can either move start and end point or move line (currently commented).
And here is SnapToGrid class used for snapping Point (can be removed from code if not needed).
Here are model objects: