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