ToolButton.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. using LYFZ.ComponentLibrary.Properties;
  2. using System;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Windows.Forms;
  6. namespace LYFZ.OtherExpansion.SkinControl
  7. {
  8. internal class ToolButton : Control
  9. {
  10. private IContainer components;
  11. private Image btnImage;
  12. private bool isSelectedBtn;
  13. private bool isSingleSelectedBtn;
  14. private bool isSelected;
  15. private bool m_bMouseEnter;
  16. public Image BtnImage
  17. {
  18. get
  19. {
  20. return this.btnImage;
  21. }
  22. set
  23. {
  24. this.btnImage = value;
  25. base.Invalidate();
  26. }
  27. }
  28. public bool IsSelectedBtn
  29. {
  30. get
  31. {
  32. return this.isSelectedBtn;
  33. }
  34. set
  35. {
  36. this.isSelectedBtn = value;
  37. if (!this.isSelectedBtn)
  38. {
  39. this.isSingleSelectedBtn = false;
  40. }
  41. }
  42. }
  43. public bool IsSingleSelectedBtn
  44. {
  45. get
  46. {
  47. return this.isSingleSelectedBtn;
  48. }
  49. set
  50. {
  51. this.isSingleSelectedBtn = value;
  52. if (this.isSingleSelectedBtn)
  53. {
  54. this.isSelectedBtn = true;
  55. }
  56. }
  57. }
  58. public bool IsSelected
  59. {
  60. get
  61. {
  62. return this.isSelected;
  63. }
  64. set
  65. {
  66. if (value == this.isSelected)
  67. {
  68. return;
  69. }
  70. this.isSelected = value;
  71. base.Invalidate();
  72. }
  73. }
  74. public override string Text
  75. {
  76. get
  77. {
  78. return base.Text;
  79. }
  80. set
  81. {
  82. base.Text = value;
  83. base.Width = TextRenderer.MeasureText(this.Text, this.Font).Width + 21;
  84. }
  85. }
  86. protected override void Dispose(bool disposing)
  87. {
  88. if (disposing && this.components != null)
  89. {
  90. this.components.Dispose();
  91. }
  92. base.Dispose(disposing);
  93. }
  94. private void InitializeComponent()
  95. {
  96. this.components = new Container();
  97. }
  98. public ToolButton()
  99. {
  100. this.InitializeComponent();
  101. }
  102. protected override void OnMouseEnter(EventArgs e)
  103. {
  104. this.m_bMouseEnter = true;
  105. base.Invalidate();
  106. base.OnMouseEnter(e);
  107. }
  108. protected override void OnMouseLeave(EventArgs e)
  109. {
  110. this.m_bMouseEnter = false;
  111. base.Invalidate();
  112. base.OnMouseLeave(e);
  113. }
  114. protected override void OnClick(EventArgs e)
  115. {
  116. if (this.isSelectedBtn)
  117. {
  118. if (this.isSelected)
  119. {
  120. if (!this.isSingleSelectedBtn)
  121. {
  122. this.isSelected = false;
  123. base.Invalidate();
  124. }
  125. }
  126. else
  127. {
  128. this.isSelected = true;
  129. base.Invalidate();
  130. int i = 0;
  131. int len = base.Parent.Controls.Count;
  132. while (i < len)
  133. {
  134. if (base.Parent.Controls[i] is ToolButton && base.Parent.Controls[i] != this && ((ToolButton)base.Parent.Controls[i]).isSelected)
  135. {
  136. ((ToolButton)base.Parent.Controls[i]).IsSelected = false;
  137. }
  138. i++;
  139. }
  140. }
  141. }
  142. base.Focus();
  143. base.OnClick(e);
  144. }
  145. protected override void OnDoubleClick(EventArgs e)
  146. {
  147. this.OnClick(e);
  148. base.OnDoubleClick(e);
  149. }
  150. protected override void OnPaint(PaintEventArgs e)
  151. {
  152. Graphics g = e.Graphics;
  153. if (this.m_bMouseEnter)
  154. {
  155. g.FillRectangle(Brushes.LightBlue, base.ClientRectangle);
  156. g.DrawRectangle(Pens.DarkCyan, new Rectangle(0, 0, base.Width - 1, base.Height - 1));
  157. }
  158. if (this.btnImage == null)
  159. {
  160. g.DrawImage(Resources.none, new Rectangle(2, 2, 17, 17));
  161. }
  162. else
  163. {
  164. g.DrawImage(this.btnImage, new Rectangle(2, 2, 17, 17));
  165. }
  166. g.DrawString(this.Text, this.Font, Brushes.Black, 21f, (float)((base.Height - this.Font.Height) / 2));
  167. if (this.isSelected)
  168. {
  169. g.DrawRectangle(Pens.DarkCyan, new Rectangle(0, 0, base.Width - 1, base.Height - 1));
  170. }
  171. base.OnPaint(e);
  172. }
  173. protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
  174. {
  175. base.SetBoundsCore(x, y, TextRenderer.MeasureText(this.Text, this.Font).Width + 21, 21, specified);
  176. }
  177. }
  178. }