在Windows WPF中未触发鼠标事件

js4nwp54  于 2022-11-18  发布在  Windows
关注(0)|答案(3)|浏览(237)

我有一个简单的WPF应用程序

<Grid>
    <Border BorderBrush="Black" BorderThickness="1" 
            HorizontalAlignment="Left" Height="388" Margin="10,10,0,0" VerticalAlignment="Top" Width="329"/>
    <Image x:Name="PreviewImg" HorizontalAlignment="Left" Height="400" Margin="10,10,0,0" VerticalAlignment="Top" Width="329"       MouseDown="PreviewImgMouse" AllowDrop="True" PreviewMouseWheel="PreviewImg_PreviewMouseWheel" MouseEnter="Entered"       Focusable="True"></Image>
    <Label Content="Matched Products" HorizontalAlignment="Left" Margin="344,10,0,0" VerticalAlignment="Top" Width="290"/>
    <Label Content="Unknown Products" HorizontalAlignment="Left" Margin="661,10,0,0" VerticalAlignment="Top" Width="290"/>
    <TextBlock x:Name="MatchedProducts" HorizontalAlignment="Left" Margin="349,36,0,0" TextWrapping="Wrap" Text="TextBlock"           VerticalAlignment="Top" Height="362" Width="295"/>
    <TextBlock x:Name="UnknownProducts" HorizontalAlignment="Left" Margin="666,36,0,0" TextWrapping="Wrap" Text="TextBlock"           VerticalAlignment="Top" Height="362" Width="295"/>
    <Grid HorizontalAlignment="Left" Height="50" Margin="10,410,0,0" VerticalAlignment="Top" Width="957">
        <Button x:Name="FinalizeBtn" Content="Finalize" HorizontalAlignment="Left" Margin="826,10,0,0" VerticalAlignment="Top"        Width="120" Height="30"/>
        <Button x:Name="NewEntryBtn" Content="Create new entry" HorizontalAlignment="Left" Margin="701,10,0,0"
                VerticalAlignment="Top" Width="120" Height="30"/>
        <Button x:Name="FreeBtn" Content="Free Button" HorizontalAlignment="Left" Margin="576,10,0,0" VerticalAlignment="Top"        Width="120" Height="30"/>
    </Grid>
</Grid>

Image组件下定义的所有事件都没有触发,我尝试了所有的Google首页搜索,但没有一个起作用。
我在我的应用程序中了解到路由事件的差异,MouseDownPreviewMouseDown都应该工作。
唯一可以阻止图像的是Border组件,但我没有尝试它,仍然没有任何东西,因为它是第一次声明的图像应该覆盖它...?
所有函数名称都是正确的,因为它们是自动生成的。
如果有帮助,我可以粘贴到.cs文件中。
谢谢
E1:不知怎么的,它现在可以工作了,但我不知道是什么修复了它...我做的一个更改是在边框内对图像进行模式设置:

<Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="388" Margin="10,10,0,0" VerticalAlignment="Top" Width="329">
    <Image x:Name="PreviewImg" Height="400" Margin="0" VerticalAlignment="Center" HorizontalAlignment="Center" Width="329" MouseDown="PreviewImgMouse" AllowDrop="True" PreviewMouseWheel="PreviewImg_PreviewMouseWheel" MouseEnter="Entered" Focusable="True"/>
</Border>

但我无法想象这能解决问题。

rbpvctlc

rbpvctlc1#

你需要为你的图像定义一个源,比如<Image Source="image.jpg"。没有图像,事件将不会触发。

58wvjzkj

58wvjzkj2#

对于高级用户

适合初学者

  • Image组件需要一个源代码来触发@Örvar发布的事件。添加一个透明源代码是解决方案,尽管有点麻烦。
8qgya5xd

8qgya5xd3#

一种方法是将图像放在按钮中,然后删除按钮样式。这里有一个很好的例子:
WPF Image Control with Click Event

相关问题