Example #1
0
 public virtual void OnInformationDownload(EventArguments e)
 {
     if (InformationDownloadEvent != null)
     {
         InformationDownloadEvent(this, e);
     }
 }
Example #2
0
 void settings_InformationDownloadEvent(object o, EventArguments e)
 {
     if (e.Name.Equals("SET"))
     {
         SetTextBoxText(e.Details);
     }
 }
Example #3
0
 void finder_InformationDownloadEvent(object o, EventArguments e)
 {
     if (e.Name.Equals("SETRICHBOX"))
     {
         SetRichboxText(e.Details);
     }
     else
     {
         SetLabelText(e.Name + "    ," + e.Details + "      ," + e.Time);
     }
     // Update();
 }