我需要将参数(在 C# 中)传递给事件处理程序,然后能够分离事件处理程序。
我附加事件处理程序并传递参数:
_map.MouseLeftButtonUp += (sender, e) => _map_MouseLeftButtonUp2(sender, e, showResultsWindow);
该事件按预期调用。我尝试分离事件处理程序:
_map.MouseLeftButtonUp -= (sender, e) => _map_MouseLeftButtonUp2(sender, e, showResultsWindow);
代码执行没有错误,但似乎没有分离。
如果我以更传统的方式附加事件处理程序(不传递参数):
_map.MouseLeftButtonUp+=_map_MouseLeftButtonUp;
并分离
_map.MouseLeftButtonUp -= _map_MouseLeftButtonUp;
一切都按预期工作
通过更传统的方式分离事件处理程序(接受参数)
_map.MouseLeftButtonUp -= _map_MouseLeftButtonUp2;
给我一个错误,说代表不匹配(这是有道理的)
所以我的问题是:为什么当我传递参数时事件处理程序并没有真正分离,有没有办法绕过这个问题。