protected void OnIrOut(IrOutEventArgs e) { if (OnIrOutHandler != null) OnIrOutHandler(this, e); }
private void IR_OnIrOut(object sender, IrOutEventArgs e) { OnIrOut(e); }
private void App_OnIrOut(object sender, IrOutEventArgs e) { string data = e.Data.Replace("\n", "\r\n"); txtIntRep.Text += data; }