1a20904fba5d3ceb72137e02951e171e73a6484f.svn-base 586 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. namespace Core.LZMes.Client.UIM.comm
  7. {
  8. public class CoilPictureBox : PictureBox
  9. {
  10. private string toolTipText = string.Empty;
  11. private string curLoadLoc = string.Empty;
  12. public string ToolTipText
  13. {
  14. get { return toolTipText; }
  15. set { toolTipText = value; }
  16. }
  17. public string CurLoadLoc
  18. {
  19. get { return curLoadLoc; }
  20. set { curLoadLoc = value; }
  21. }
  22. }
  23. }