钢笔工具缩放(Silverlight、Expression Blend)
我有一个由钢笔工具绘制的自定义形状。例如,假设我画了一个梯形。当您缩放对象时,整个对象的大小都会适当调整。
我的问题是:当我横向缩放它时,我只想扩展顶部和底部边缘。我不想改变“对角线”边缘。执行此操作最简单的方法是什么?
I have a custom shape which is drawn out by the pen tool. For example, lets pretend I drew a trapezoid. When you scale the object, the whole thing gets resized appropriately.
My question is: When I scale it width-wise, I only want the top and the bottom edges to expand. I do not want the 'diagonal' edges to be changed. What is the easiest way to go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
右键单击
对象和时间轴
中的路径
,然后选择分组 ->网格
。然后再次选择Path
并将其HorizontalAlignment
更改为Center
。现在调整Grid
的宽度不会扭曲Path
。Right-click the
Path
inObjects and Timeline
and selectGroup Into -> Grid
. Then pick thePath
again and change itsHorizontalAlignment
toCenter
. Now resizing the width of theGrid
will not distort thePath
.