本文介绍了WPF:如何使路径的大小符合其父级的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设在混合中我使用钢笔工具并创建了一个封闭的形状.
Let's say in blend I take the pen tool and I just create a closed shape.
然后我想让这个形状的宽度(或高度)拉伸到其容器的尺寸.
I'd like to then make this shape's width (or height) stretch to its container's dimensions.
所以假设我有
<Grid Width="500">
<Path Data="Bla Bla" Width="200">
</Grid>
换句话说,我怎样才能让路径的宽度符合它的父级.我试着去
In other words, how can I make the path's width conform to its parent. I try to just go
<Canvas Width="500">
<Path Data="Bla Bla" HorizontalAlignment="Stretch">
</Canvas>
但这不起作用.它适用于矩形但不适用于路径,那么我该如何使用路径呢?
but that doesn't work. it works with a rectangle but not with a path, so how can I do it with a path?
推荐答案
<Viewbox>
<Path .../>
</Viewbox>
这篇关于WPF:如何使路径的大小符合其父级的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!