gpt4 book ai didi

c# - 如何在 wpf 中单击 Panel.ZIndex 低于另一个的对象?

转载 作者:太空狗 更新时间:2023-10-29 22:54:16 26 4
gpt4 key购买 nike

在 wpf 中,我必须单击 Panel.ZIndex="1"的图像,但该图像位于另一个 Panel.ZIndex="2"的图像“下方”。 MouseDown 事件失败。如何做到这一点?

提前致谢,

<Grid >
<Image Name="Image_1"
Panel.ZIndex="1" />

<Image Name="Image_2"
Panel.ZIndex="2" />

</Grid>

最佳答案

尝试使用 IsHitTestVisible

<Grid >
<Image Name="Image_1"
Panel.ZIndex="1" />

<Image Name="Image_2" IsHitTestVisible="false"
Panel.ZIndex="2" />
</Grid>

关于c# - 如何在 wpf 中单击 Panel.ZIndex 低于另一个的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7595990/

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