示例#1
0
 public virtual void OnInformationDownload(EventArguments e)
 {
     if (InformationDownloadEvent != null)
     {
         InformationDownloadEvent(this, e);
     }
 }
示例#2
0
 void handler_InformationDownloadEvent(object o, EventArguments e)
 {
     label5.Text = e.Name + "    ," + e.Details + "      ," + e.Time;
     Update();
 }