是否可以在椭圆装订矩形中进行点击测试, like on this image ?
答案 0 :(得分:6)
你可以将它们都放入 border 网格并检查它是否被点击
XAML:
<Grid>
<Rectangle Width="100"
Height="100"
Fill="Green"
MouseDown="Border_MouseDown" />
<Ellipse Width="100"
Height="100"
Fill="Orange" />
</Grid>
背后的代码
{{1}}
修改强> 只是为了完成它,只有绿色区域的XAML:
{{1}}