| | |
| | | public static string tipLeadingIcon = "north-star.png";//输入框后缀 标警告图片 |
| | | |
| | | /// <summary> |
| | | /// 输入框前缀 透明图标 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | public static System.Drawing.Image GetTransparentIcon() |
| | | { |
| | | System.Drawing.Image image = null; |
| | | if (tipTrailingIcon != null) |
| | | { |
| | | image = Properties.Resources.Transparent16;// GlobalResource.BuildImage(tipTrailingIcon); |
| | | } |
| | | return image; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 输入框前缀 标必须图标 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | |
| | | if (tipLeadingIcon != null) |
| | | { |
| | | image = Properties.Resources.Need16;// GlobalResource.BuildImage(tipLeadingIcon); |
| | | //image = Properties.Resources.minNeed16;// GlobalResource.BuildImage(tipLeadingIcon); |
| | | } |
| | | return image; |
| | | } |