public class MsgEventArgs:System.EventArgs //必须从这个类继承
{
public boll textMsg; //回传这个值
public MsgEventArgs()
{
}
}
public delegate void MyHandler(object sender,MsgEventArgs e);
………………
………………
………………
飘过~~