标签: wpf
按钮命令仅在单击鼠标时未触及图像时触发。我错过了什么?
<Button Cursor="Hand" Command="{Binding Path=SomeCommand}"> <Image Source="image.png" /> </Button>
答案 0 :(得分:5)
我认为你的图像是在吞咽你的鼠标。
尝试在图片中添加IsHitTestVisible =“False”。