gpt4 book ai didi

c# - 在 XAML 中使用矩形作为剪辑

转载 作者:太空狗 更新时间:2023-10-29 22:23:47 25 4
gpt4 key购买 nike

有没有一种方法可以使用普通矩形(形状)作为 XAML 中另一个对象的剪辑的一部分。看起来我应该能够,但解决方案正在躲避我..

<Canvas>

<Rectangle Name="ClipRect" RadiusY="10" RadiusX="10" Stroke="Black" StrokeThickness="0" Width="32.4" Height="164"/>

<!-- This is the part that I cant quite figure out.... -->
<Rectangle Width="100" Height="100" Clip={Binding ElementName=ClipRect, Path="??"/>

</Canvas>

我知道我可以使用“RectangleGeometry”类型的方法,但我对上述代码的解决方案更感兴趣。

最佳答案

尝试 Shape.RenderedGeometry Property .

<Rectangle Width="100" Height="100"
Clip="{Binding ElementName=ClipRect, Path=RenderedGeometry}" />

关于c# - 在 XAML 中使用矩形作为剪辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10075262/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com