[WPF]UserControl的MouseWheel事件触发

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[WPF]UserControl的MouseWheel事件触发相关的知识,希望对你有一定的参考价值。

用户控件:

<UserControl>
    <Grid>
        <TextBox x:Name="textBlock" HorizontalAlignment="Center" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Center" Width="100" Height="30"/>
    </Grid>
</UserControl>

主窗体:

<Window>
    <Grid>
        <local:UserControl1 MouseWheel="UserControl1_MouseWheel"/>
    </Grid>
</Window>

效果:

技术分享

只有鼠标在TextBox控件上时,才会触发MouseWheel事件(因为UserControl.Background默认Null)。

将Background设为不为Null时,即可在UserControl范围触发MouseWheel事件:

<Window>
    <Grid>
        <local:UserControl1 MouseWheel="UserControl1_MouseWheel" Background="SteelBlue"/>
    </Grid>
</Window>

技术分享

 

以上是关于[WPF]UserControl的MouseWheel事件触发的主要内容,如果未能解决你的问题,请参考以下文章

当我将WPF UserControl用于其内置项目以外的项目时,我的WPF UserControl无法找到资源

在WPF中UserControl

WPF 导航和销毁当前 UserControl

在 UserControl WPF MVVM caliburn 内的 UserControl 之间切换

WPF中UserControl中DesignWidth和Width的区别

数据绑定到 WPF 中的 UserControl