为了账号安全,请及时绑定邮箱和手机立即绑定

.net事件绑定

.net事件绑定

人到中年有点甜 2018-12-06 18:03:39
我给一个页面的几个事件绑定了同一个事件方法 如:Page.PreRender+=Page_Method; Page.Load+=Page_Method; Page.LoadComplete+=Page_Method;   private void Page_Method(object sender, EventArgs e) {      //怎样在同一方法里知道具体是哪个事件调用 }   以上,谢谢!
查看完整描述

1 回答

?
尚方宝剑之说

TA贡献1788条经验 获得超4个赞

using System.Diagnostics;
using System.Reflection;

StackTrace trace = new StackTrace(); 

MethodBase methodName = trace.GetFrame(1).GetMethod();

查看完整回答
反对 回复 2019-01-21
  • 1 回答
  • 0 关注
  • 582 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信