this.cbxTable.SelectionChangeCommitted += new System.EventHandler(this.cbxTable_SelectionChangeCommitted);
这是一个事件的指定,,,想问,,,怎样实现通过字符串,,,达到一样的效果..
如:
string frmName = "this.cbxTable_SelectionChangeCommitted";
this.cbxTable.SelectionChangeCommitted += new System.EventHandler(frmName);
我知道这样是肯定出错的,,类型不符,,但是想要这种动态指定事件的效果,,,求助....