WPF MouseDown&Up不触发事件

2021-03-06 22:26

阅读:404

标签:ted   net   sha   end   ref   handle   obj   span   16px   

由于微软的一些迷之bug,像click事件一样直接在事件中生成的方法无法触发,包括MouseLeftButtonDown等,必须采取手动方法:

1.新建路由事件:

private void bt_MouseDown(object sender, RoutedEventArgs e)
{
    //bilibili
}

2.在初始化函数中加入路由委托:

ResetButton.AddHandler(Button.MouseDownEvent, new RoutedEventHandler(bt_MouseDown), true);

这样两步就可以实现功能了。

by:https://blog.csdn.net/xiapi3/article/details/80758763

WPF MouseDown&Up不触发事件

标签:ted   net   sha   end   ref   handle   obj   span   16px   

原文地址:https://www.cnblogs.com/Stay627/p/12848379.html


评论


亲,登录后才可以留言!