cResult.cs
上传用户:svehicle
上传日期:2013-07-27
资源大小:62k
文件大小:0k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. namespace CSharpSerialPort
  3. {
  4. public delegate void TextChangedHandler(string s);
  5. public class cResult
  6. {
  7. public string Result1 = "";
  8. public string Result2 = "";
  9. public event TextChangedHandler TextChanged;
  10. public void ChangeText(string s)
  11. {
  12. if(TextChanged != null)
  13. TextChanged(s);
  14. }
  15. }
  16. }