Exemplo n.º 1
0
 public void ContextOnProgress(object sender, StringEventArgs stringEventArgs)
 {
     //var text = stringEventArgs.Value.Replace("\r\n", "");
     //label2.Text = text;
 }
 public void OnProgress(StringEventArgs e)
 {
     EventHandler<StringEventArgs> handler = Progress;
     if (handler != null) handler(this, e);
 }