在wpf中,我必須點擊一個Panel.ZIndex =「1」的圖像,但是這個圖像在Panel.ZIndex =「2」的另一個圖像下面。事件MouseDown失敗。怎麼做?如何點擊Panel.ZIndex低於wpf中的另一個對象?
由於提前, M.
<Grid >
<Image Name="Image_1"
Panel.ZIndex="1" />
<Image Name="Image_2"
Panel.ZIndex="2" />
</Grid>
它現在運行得非常好!謝謝!! –