Ejemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="e"></param>
 protected virtual void OnInformationNotify(stringEventArgs e)
 {
     if (InformationNotifyDelegate != null)
     {
         InformationNotifyDelegate(null, e);
     }
 }
Ejemplo n.º 2
0
        void InformationNotify(string i_str)
        {
            stringEventArgs e = new stringEventArgs();

            e.StrData = i_str;

            OnInformationNotify(e);
        }