在wpf中通过Adorner拉伸多边形
我有一个带有轮廓的多边形(装饰者在四个角有四个拇指)。 当我用拇指改变高度时,多边形点不会改变它们的值 但多边形很好地改变了它的宽度和高度。
我的意思是如果我有多边形有点 ((10,20),(50,160),(300,10)) 当我拉伸多边形时,点不会改变
I have a polygon with outline (adorner has four thumb in four corners ).
When I change with or height by thumbs the polygon points doesn't change their values
but the polygon change its Width and height well.
I mean if I have polygon has points ((10,20),(50,160),(300,10))
when I stretch the polygon the points doesn't change
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它永远不会改变。根据
WPF
,您仅缩放(更改多边形的宽度和高度)(UIElement
)。您可能已指定Stretch="Fill"
,在这种情况下请勿使用它。创建 Adroners 并使用它们直观地编辑点,或者只是更新每个点宽度或高度变化。It will never change. As per
WPF
, you are only scaling (changing width and height of) polygon (UIElement
). You might have specifiedStretch="Fill"
, don't use it in this case. Create Adroners and edit points using them visually OR simply just update each point on Width or Height change.