GlassButton.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.IO;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.ComponentModel;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. /// <summary>
  12. /// 水晶按钮
  13. /// </summary>
  14. public class GlassButton : Control
  15. {
  16. #region 控件状态
  17. /// <summary>
  18. /// 控件状态
  19. /// </summary>
  20. public enum State
  21. {
  22. /// <summary>
  23. /// 无0
  24. /// </summary>
  25. Normal = 0,
  26. /// <summary>
  27. /// 获得焦点1
  28. /// </summary>
  29. Focused = 1,
  30. /// <summary>
  31. /// 失去焦点2
  32. /// </summary>
  33. LostFocused = 2,
  34. /// <summary>
  35. /// 鼠标指针进入控件3
  36. /// </summary>
  37. MouseEnter = 3,
  38. /// <summary>
  39. /// 鼠标按下按钮时4
  40. /// </summary>
  41. MouseDown = 4 //
  42. }
  43. #endregion
  44. #region//私有变量
  45. private int bmp_Left;
  46. private const int bmp_Top = 6;
  47. private const int bmp_Size = 48;
  48. // private bool _focused = false;
  49. private State state = State.Normal;
  50. private Bitmap _BackImg = new Bitmap(LYFZ.ComponentLibrary.Properties.Resources.toolbar_hover);
  51. /// <summary>
  52. /// 设置背景图片
  53. /// </summary>
  54. public Bitmap BackImg
  55. {
  56. get { return _BackImg; }
  57. set { _BackImg = value; }
  58. }
  59. private Bitmap _bmp = LYFZ.ComponentLibrary.Properties.Resources._062;
  60. #endregion
  61. #region//构造函数
  62. public GlassButton()
  63. {
  64. try
  65. {
  66. this.SetStyle(ControlStyles.DoubleBuffer, true);
  67. this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  68. this.SetStyle(ControlStyles.UserPaint, true);
  69. this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  70. this.SetStyle(ControlStyles.StandardDoubleClick, false);
  71. this.SetStyle(ControlStyles.Selectable, true);
  72. ResizeRedraw = true;
  73. BackColor = Color.Transparent;
  74. ForeColor = Color.White;//初始文本颜色
  75. Size = new Size(80, 75);//初始大小
  76. Font = new Font("微软雅黑", 9, System.Drawing.FontStyle.Bold);//控件字体
  77. }
  78. catch { }
  79. }
  80. #endregion
  81. #region//属性
  82. private bool _thisButton = false;
  83. /// <summary>
  84. /// 当前铵钮
  85. /// </summary>
  86. public bool ThisButton
  87. {
  88. get { return _thisButton; }
  89. set { _thisButton = value; Invalidate(false); }
  90. }
  91. /// <summary>
  92. /// 获取或设置控件显示的图片
  93. /// </summary>
  94. [CategoryAttribute("组件扩展属性"), Description("获取或设置控件显示的图标")]
  95. public Bitmap Bitmap
  96. {
  97. get { return _bmp; }
  98. set
  99. {
  100. _bmp = value;
  101. Invalidate(false);
  102. }
  103. }
  104. /// <summary>
  105. /// 重写Text属性
  106. /// </summary>
  107. [DescriptionAttribute("重写Text属性"), CategoryAttribute("组件扩展属性")]
  108. public override string Text
  109. {
  110. set { base.Text = value; Invalidate(false); }
  111. get
  112. {
  113. return base.Text;
  114. }
  115. }
  116. #endregion
  117. #region//重载事件
  118. //自定义绘制
  119. protected override void OnPaint(PaintEventArgs e)
  120. {
  121. base.OnPaint(e);
  122. Graphics g = e.Graphics;
  123. g.SmoothingMode = SmoothingMode.HighQuality;
  124. g.PixelOffsetMode = PixelOffsetMode.HighQuality;
  125. switch (state)
  126. {
  127. case State.MouseEnter:
  128. case State.Focused:
  129. {
  130. DrawIsSelected(g,2);
  131. break;
  132. }
  133. case State.MouseDown:
  134. DrawIsSelected(g, 1);
  135. break;
  136. case State.Normal:
  137. case State.LostFocused:
  138. if (ThisButton)
  139. {
  140. DrawIsSelected(g,2);
  141. }
  142. break;
  143. }
  144. DrawImage(g);
  145. DrawText(g);
  146. }
  147. /// <summary>
  148. /// 禁止调整大小
  149. /// </summary>
  150. /// <param name="e"></param>
  151. protected override void OnResize(EventArgs e)
  152. {
  153. Width = 80;
  154. Height = 75;
  155. }
  156. /// <summary>
  157. /// 获取焦点后
  158. /// </summary>
  159. /// <param name="e"></param>
  160. protected override void OnGotFocus(EventArgs e)
  161. {
  162. base.OnGotFocus(e);
  163. this.state = State.Focused;
  164. Invalidate(false);
  165. }
  166. /// <summary>
  167. /// 失去焦点后
  168. /// </summary>
  169. /// <param name="e"></param>
  170. protected override void OnLostFocus(EventArgs e)
  171. {
  172. base.OnLostFocus(e);
  173. this.state = State.LostFocused;
  174. Invalidate(false);
  175. }
  176. /// <summary>
  177. /// 鼠标进入控件可见部份
  178. /// </summary>
  179. /// <param name="e"></param>
  180. protected override void OnMouseEnter(EventArgs e)
  181. {
  182. base.OnMouseEnter(e);
  183. state = State.MouseEnter;
  184. Invalidate(false);
  185. }
  186. /// <summary>
  187. /// 鼠标离开控件可见部份
  188. /// </summary>
  189. /// <param name="e"></param>
  190. protected override void OnMouseLeave(EventArgs e)
  191. {
  192. base.OnMouseLeave(e);
  193. state = State.Normal;
  194. Invalidate(false);
  195. }
  196. /// <summary>
  197. /// 鼠标弹起后
  198. /// </summary>
  199. /// <param name="mevent"></param>
  200. protected override void OnMouseUp(MouseEventArgs mevent)
  201. {
  202. base.OnMouseUp(mevent);
  203. this.state = State.MouseEnter;
  204. Invalidate(false);
  205. }
  206. /// <summary>
  207. /// 按下
  208. /// </summary>
  209. /// <param name="e"></param>
  210. protected override void OnMouseDown(MouseEventArgs e)
  211. {
  212. base.OnMouseDown(e);
  213. this.state = State.MouseDown;
  214. Invalidate(false);
  215. }
  216. #endregion
  217. #region//方法
  218. #region//Draw
  219. void DrawIsSelected(Graphics g,int index)
  220. {
  221. ImageDrawRect.DrawRect(g, _BackImg, ClientRectangle, index, 2);
  222. }
  223. void DrawImage(Graphics g)
  224. {
  225. if (_bmp != null)
  226. {
  227. Bitmap bmp = ScaleZoom(_bmp);
  228. if (!this.Enabled) {
  229. bmp =LYFZ.WinAPI.CustomPublicMethod.GetGrayImage(bmp);
  230. }
  231. bmp_Left = (Width - bmp.Width) / 2;
  232. g.DrawImage(bmp, new Rectangle(bmp_Left, bmp_Top, bmp.Width, bmp.Height));
  233. }
  234. }
  235. void DrawText(Graphics g)
  236. {
  237. SizeF size = g.MeasureString(this.Text, Font);
  238. Color fColor = ForeColor;
  239. if (!this.Enabled)
  240. fColor = Color.Gray;
  241. g.DrawString(this.Text, Font, new SolidBrush(fColor), (Width - size.Width) / 2, 55);
  242. }
  243. #endregion
  244. #region//按比例缩放图片
  245. public Bitmap ScaleZoom(Bitmap bmp)
  246. {
  247. if (bmp != null)
  248. {
  249. double zoomScale;
  250. if (bmp.Width > bmp_Size || bmp.Height > bmp_Size)
  251. {
  252. double imageScale = (double)bmp.Width / (double)bmp.Height;
  253. double thisScale = 1;
  254. if (imageScale > thisScale)
  255. {
  256. zoomScale = (double)bmp_Size / (double)bmp.Width;
  257. return BitMapZoom(bmp, bmp_Size, (int)(bmp.Height * zoomScale));
  258. }
  259. else
  260. {
  261. zoomScale = (double)bmp_Size / (double)bmp.Height;
  262. return BitMapZoom(bmp, (int)(bmp.Width * zoomScale), bmp_Size);
  263. }
  264. }
  265. }
  266. return bmp;
  267. }
  268. #endregion
  269. #region//缩放BitMap
  270. /// <summary>
  271. /// 图片缩放
  272. /// </summary>
  273. /// <param name="bmpSource">源图片</param>
  274. /// <param name="bmpSize">缩放图片的大小</param>
  275. /// <returns>缩放的图片</returns>
  276. public Bitmap BitMapZoom(Bitmap bmpSource, int bmpWidth, int bmpHeight)
  277. {
  278. Bitmap bmp, zoomBmp;
  279. try
  280. {
  281. bmp = new Bitmap(bmpSource);
  282. zoomBmp = new Bitmap(bmpWidth, bmpHeight);
  283. Graphics gh = Graphics.FromImage(zoomBmp);
  284. gh.InterpolationMode = InterpolationMode.HighQualityBicubic;
  285. gh.DrawImage(bmp, new Rectangle(0, 0, bmpWidth, bmpHeight), new Rectangle(0, 0, bmp.Width, bmp.Height), GraphicsUnit.Pixel);
  286. gh.Dispose();
  287. return zoomBmp;
  288. }
  289. catch
  290. { }
  291. finally
  292. {
  293. bmp = null;
  294. zoomBmp = null;
  295. GC.Collect();
  296. }
  297. return null;
  298. }
  299. #endregion
  300. #endregion
  301. }
  302. }