| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.LZMes.Client.UIM.comm
- {
- public class CoilPictureBox : PictureBox
- {
- private string toolTipText = string.Empty;
- private string curLoadLoc = string.Empty;
- public string ToolTipText
- {
- get { return toolTipText; }
- set { toolTipText = value; }
- }
- public string CurLoadLoc
- {
- get { return curLoadLoc; }
- set { curLoadLoc = value; }
- }
- }
- }
|