0

我在 xaml 中有以下控件:

<Canvas Height="500" Width="500" Name="canPreview" VerticalAlignment="top" Grid.Row="1" Grid.RowSpan="3" MouseLeftButtonDown="canPreview_MouseLeftButtonDown" 
                MouseLeftButtonUp="canPreview_MouseLeftButtonUp" MouseLeave="canPreview_MouseLeave" MouseMove="canPreview_MouseMove"
                Height="{Binding Path=ActualHeight, ElementName=imgPreview}" Width="{Binding Path=ActualWidth, ElementName=imgPreview}">
            <Rectangle Name="recSelection" StrokeThickness="2" Stroke="Black" Fill="Transparent"  Opacity=".5" Height="100" Width="100" />
        </Canvas>

由于某种原因,Canvas 事件仅在鼠标指针位于矩形上方时触发。知道发生了什么吗?

4

1 回答 1

2

设置 Canvas 的背景颜色;您无法单击未绘制的内容。

如果您不想看到画布,可以使用透明画笔,它是可点击的。

于 2012-08-15T13:17:55.587 回答