WPF MouseDown&Up不触发事件
2021-03-06 22:26
标签:ted net sha end ref handle obj span 16px 由于微软的一些迷之bug,像click事件一样直接在事件中生成的方法无法触发,包括MouseLeftButtonDown等,必须采取手动方法: 1.新建路由事件: 2.在初始化函数中加入路由委托: 这样两步就可以实现功能了。 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.htmlprivate void bt_MouseDown(object sender, RoutedEventArgs e)
{
//bilibili
}
ResetButton.AddHandler(Button.MouseDownEvent, new RoutedEventHandler(bt_MouseDown), true);
文章标题:WPF MouseDown&Up不触发事件
文章链接:http://soscw.com/index.php/essay/61051.html