SkinNumericUpDown.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. using LYFZ.OtherExpansion.Win32;
  2. using LYFZ.OtherExpansion.Win32.Struct;
  3. using System;
  4. using System.ComponentModel;
  5. using System.Drawing;
  6. using System.Drawing.Drawing2D;
  7. using System.Windows.Forms;
  8. namespace LYFZ.OtherExpansion.SkinControl
  9. {
  10. [ToolboxBitmap(typeof(NumericUpDown))]
  11. public class SkinNumericUpDown : NumericUpDown
  12. {
  13. private class UpDownButtonNativeWindow : NativeWindow, IDisposable
  14. {
  15. private const int WM_PAINT = 15;
  16. private const int VK_LBUTTON = 1;
  17. private const int VK_RBUTTON = 2;
  18. private SkinNumericUpDown _owner;
  19. private Control _upDownButton;
  20. private IntPtr _upDownButtonWnd;
  21. private bool _bPainting;
  22. private static readonly IntPtr TRUE = new IntPtr(1);
  23. public UpDownButtonNativeWindow(SkinNumericUpDown owner)
  24. {
  25. this._owner = owner;
  26. this._upDownButton = owner.UpDownButton;
  27. this._upDownButtonWnd = this._upDownButton.Handle;
  28. if (Environment.OSVersion.Version.Major > 5 && NativeMethods.IsAppThemed())
  29. {
  30. NativeMethods.SetWindowTheme(this._upDownButtonWnd, "", "");
  31. }
  32. base.AssignHandle(this._upDownButtonWnd);
  33. }
  34. private bool LeftKeyPressed()
  35. {
  36. if (SystemInformation.MouseButtonsSwapped)
  37. {
  38. return NativeMethods.GetKeyState(2) < 0;
  39. }
  40. return NativeMethods.GetKeyState(1) < 0;
  41. }
  42. private void DrawUpDownButton()
  43. {
  44. bool mousePress = this.LeftKeyPressed();
  45. Rectangle clipRect = this._upDownButton.ClientRectangle;
  46. RECT windowRect = default(RECT);
  47. NativeMethods.Point cursorPoint = default(NativeMethods.Point);
  48. NativeMethods.GetCursorPos(ref cursorPoint);
  49. NativeMethods.GetWindowRect(this._upDownButtonWnd, ref windowRect);
  50. bool mouseOver = NativeMethods.PtInRect(ref windowRect, cursorPoint);
  51. cursorPoint.x -= windowRect.Left;
  52. cursorPoint.y -= windowRect.Top;
  53. bool mouseInUpButton = cursorPoint.y < clipRect.Height / 2;
  54. using (Graphics g = Graphics.FromHwnd(this._upDownButtonWnd))
  55. {
  56. UpDownButtonPaintEventArgs e = new UpDownButtonPaintEventArgs(g, clipRect, mouseOver, mousePress, mouseInUpButton);
  57. this._owner.OnPaintUpDownButton(e);
  58. }
  59. }
  60. protected override void WndProc(ref Message m)
  61. {
  62. int msg = m.Msg;
  63. if (msg != 15)
  64. {
  65. base.WndProc(ref m);
  66. return;
  67. }
  68. if (!this._bPainting)
  69. {
  70. this._bPainting = true;
  71. PAINTSTRUCT ps = default(PAINTSTRUCT);
  72. NativeMethods.BeginPaint(m.HWnd, ref ps);
  73. this.DrawUpDownButton();
  74. NativeMethods.EndPaint(m.HWnd, ref ps);
  75. this._bPainting = false;
  76. m.Result = SkinNumericUpDown.UpDownButtonNativeWindow.TRUE;
  77. return;
  78. }
  79. base.WndProc(ref m);
  80. }
  81. public void Dispose()
  82. {
  83. this._owner = null;
  84. this._upDownButton = null;
  85. base.ReleaseHandle();
  86. }
  87. }
  88. private SkinNumericUpDown.UpDownButtonNativeWindow _upDownButtonNativeWindow;
  89. private Color _baseColor = Color.FromArgb(166, 222, 255);
  90. private Color _borderColor = Color.FromArgb(23, 169, 254);
  91. private Color _arrowColor = Color.FromArgb(0, 95, 152);
  92. private static readonly object EventPaintUpDownButton = new object();
  93. public event UpDownButtonPaintEventHandler PaintUpDownButton
  94. {
  95. add
  96. {
  97. base.Events.AddHandler(SkinNumericUpDown.EventPaintUpDownButton, value);
  98. }
  99. remove
  100. {
  101. base.Events.RemoveHandler(SkinNumericUpDown.EventPaintUpDownButton, value);
  102. }
  103. }
  104. [Category("Skin"), DefaultValue(typeof(Color), "166, 222, 255"), Description("色调")]
  105. public Color BaseColor
  106. {
  107. get
  108. {
  109. return this._baseColor;
  110. }
  111. set
  112. {
  113. this._baseColor = value;
  114. this.UpDownButton.Invalidate();
  115. }
  116. }
  117. [Category("Skin"), DefaultValue(typeof(Color), "23, 169, 254"), Description("边框颜色")]
  118. public Color BorderColor
  119. {
  120. get
  121. {
  122. return this._borderColor;
  123. }
  124. set
  125. {
  126. this._borderColor = value;
  127. base.Invalidate(true);
  128. }
  129. }
  130. [Category("Skin"), DefaultValue(typeof(Color), "0, 95, 152"), Description("箭头颜色")]
  131. public Color ArrowColor
  132. {
  133. get
  134. {
  135. return this._arrowColor;
  136. }
  137. set
  138. {
  139. this._arrowColor = value;
  140. this.UpDownButton.Invalidate();
  141. }
  142. }
  143. public override Color BackColor
  144. {
  145. get
  146. {
  147. return base.BackColor;
  148. }
  149. set
  150. {
  151. base.BackColor = value;
  152. base.Invalidate(true);
  153. }
  154. }
  155. public Control UpDownButton
  156. {
  157. get
  158. {
  159. return base.Controls[0];
  160. }
  161. }
  162. protected virtual void OnPaintUpDownButton(UpDownButtonPaintEventArgs e)
  163. {
  164. Graphics g = e.Graphics;
  165. Rectangle rect = e.ClipRectangle;
  166. Color upButtonBaseColor = this._baseColor;
  167. Color upButtonBorderColor = this._borderColor;
  168. Color upButtonArrowColor = this._arrowColor;
  169. Color downButtonBaseColor = this._baseColor;
  170. Color downButtonBorderColor = this._borderColor;
  171. Color downButtonArrowColor = this._arrowColor;
  172. Rectangle upButtonRect = rect;
  173. upButtonRect.Y++;
  174. upButtonRect.Width -= 2;
  175. upButtonRect.Height = rect.Height / 2 - 2;
  176. Rectangle downButtonRect = rect;
  177. downButtonRect.Y = upButtonRect.Bottom + 2;
  178. downButtonRect.Height = rect.Height - upButtonRect.Bottom - 4;
  179. downButtonRect.Width -= 2;
  180. if (base.Enabled)
  181. {
  182. if (e.MouseOver)
  183. {
  184. if (e.MousePress)
  185. {
  186. if (e.MouseInUpButton)
  187. {
  188. upButtonBaseColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
  189. }
  190. else
  191. {
  192. downButtonBaseColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
  193. }
  194. }
  195. else
  196. {
  197. if (e.MouseInUpButton)
  198. {
  199. upButtonBaseColor = this.GetColor(this._baseColor, 0, 35, 24, 9);
  200. }
  201. else
  202. {
  203. downButtonBaseColor = this.GetColor(this._baseColor, 0, 35, 24, 9);
  204. }
  205. }
  206. }
  207. }
  208. else
  209. {
  210. upButtonBaseColor = SystemColors.Control;
  211. upButtonBorderColor = SystemColors.ControlDark;
  212. upButtonArrowColor = SystemColors.ControlDark;
  213. downButtonBaseColor = SystemColors.Control;
  214. downButtonBorderColor = SystemColors.ControlDark;
  215. downButtonArrowColor = SystemColors.ControlDark;
  216. }
  217. g.SmoothingMode = SmoothingMode.AntiAlias;
  218. Color backColor = base.Enabled ? base.BackColor : SystemColors.Control;
  219. using (SolidBrush brush = new SolidBrush(backColor))
  220. {
  221. rect.Inflate(1, 1);
  222. g.FillRectangle(brush, rect);
  223. }
  224. this.RenderButton(g, upButtonRect, upButtonBaseColor, upButtonBorderColor, upButtonArrowColor, ArrowDirection.Up);
  225. this.RenderButton(g, downButtonRect, downButtonBaseColor, downButtonBorderColor, downButtonArrowColor, ArrowDirection.Down);
  226. UpDownButtonPaintEventHandler handler = base.Events[SkinNumericUpDown.EventPaintUpDownButton] as UpDownButtonPaintEventHandler;
  227. if (handler != null)
  228. {
  229. handler(this, e);
  230. }
  231. }
  232. protected override void OnHandleCreated(EventArgs e)
  233. {
  234. base.OnHandleCreated(e);
  235. if (this._upDownButtonNativeWindow == null)
  236. {
  237. this._upDownButtonNativeWindow = new SkinNumericUpDown.UpDownButtonNativeWindow(this);
  238. }
  239. }
  240. protected override void OnHandleDestroyed(EventArgs e)
  241. {
  242. base.OnHandleDestroyed(e);
  243. if (this._upDownButtonNativeWindow != null)
  244. {
  245. this._upDownButtonNativeWindow.Dispose();
  246. this._upDownButtonNativeWindow = null;
  247. }
  248. }
  249. protected override void WndProc(ref Message m)
  250. {
  251. int msg = m.Msg;
  252. if (msg != 15)
  253. {
  254. if (msg != 133)
  255. {
  256. base.WndProc(ref m);
  257. return;
  258. }
  259. }
  260. else
  261. {
  262. base.WndProc(ref m);
  263. if (base.BorderStyle == BorderStyle.None)
  264. {
  265. return;
  266. }
  267. Color borderColor = base.Enabled ? this._borderColor : SystemColors.ControlDark;
  268. using (Graphics g = Graphics.FromHwnd(m.HWnd))
  269. {
  270. ControlPaint.DrawBorder(g, base.ClientRectangle, borderColor, ButtonBorderStyle.Solid);
  271. return;
  272. }
  273. }
  274. if (base.BorderStyle != BorderStyle.None)
  275. {
  276. Color backColor = base.Enabled ? base.BackColor : SystemColors.Control;
  277. Rectangle rect = new Rectangle(0, 0, base.Width, base.Height);
  278. IntPtr hdc = NativeMethods.GetWindowDC(m.HWnd);
  279. if (hdc == IntPtr.Zero)
  280. {
  281. throw new Win32Exception();
  282. }
  283. try
  284. {
  285. using (Graphics g2 = Graphics.FromHdc(hdc))
  286. {
  287. using (Brush brush = new SolidBrush(backColor))
  288. {
  289. g2.FillRectangle(brush, rect);
  290. }
  291. }
  292. }
  293. finally
  294. {
  295. NativeMethods.ReleaseDC(m.HWnd, hdc);
  296. }
  297. }
  298. m.Result = IntPtr.Zero;
  299. }
  300. public void RenderArrowInternal(Graphics g, Rectangle dropDownRect, ArrowDirection direction, Brush brush)
  301. {
  302. Point point = new Point(dropDownRect.Left + dropDownRect.Width / 2, dropDownRect.Top + dropDownRect.Height / 2);
  303. Point[] points;
  304. switch (direction)
  305. {
  306. case ArrowDirection.Left:
  307. points = new Point[]
  308. {
  309. new Point(point.X + 2, point.Y - 3),
  310. new Point(point.X + 2, point.Y + 3),
  311. new Point(point.X - 1, point.Y)
  312. };
  313. break;
  314. case ArrowDirection.Up:
  315. points = new Point[]
  316. {
  317. new Point(point.X - 3, point.Y + 1),
  318. new Point(point.X + 3, point.Y + 1),
  319. new Point(point.X, point.Y - 1)
  320. };
  321. break;
  322. default:
  323. if (direction != ArrowDirection.Right)
  324. {
  325. points = new Point[]
  326. {
  327. new Point(point.X - 3, point.Y - 1),
  328. new Point(point.X + 3, point.Y - 1),
  329. new Point(point.X, point.Y + 1)
  330. };
  331. }
  332. else
  333. {
  334. points = new Point[]
  335. {
  336. new Point(point.X - 2, point.Y - 3),
  337. new Point(point.X - 2, point.Y + 3),
  338. new Point(point.X + 1, point.Y)
  339. };
  340. }
  341. break;
  342. }
  343. g.FillPolygon(brush, points);
  344. }
  345. public void RenderButton(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color arrowColor, ArrowDirection direction)
  346. {
  347. this.RenderBackgroundInternal(g, rect, baseColor, borderColor, 0.45f, true, LinearGradientMode.Vertical);
  348. using (SolidBrush brush = new SolidBrush(arrowColor))
  349. {
  350. this.RenderArrowInternal(g, rect, direction, brush);
  351. }
  352. }
  353. public void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, float basePosition, bool drawBorder, LinearGradientMode mode)
  354. {
  355. using (LinearGradientBrush brush = new LinearGradientBrush(rect, Color.Transparent, Color.Transparent, mode))
  356. {
  357. Color[] colors = new Color[]
  358. {
  359. this.GetColor(baseColor, 0, 35, 24, 9),
  360. this.GetColor(baseColor, 0, 13, 8, 3),
  361. baseColor,
  362. this.GetColor(baseColor, 0, 68, 69, 54)
  363. };
  364. brush.InterpolationColors = new ColorBlend
  365. {
  366. Positions = new float[]
  367. {
  368. 0f,
  369. basePosition,
  370. basePosition + 0.05f,
  371. 1f
  372. },
  373. Colors = colors
  374. };
  375. g.FillRectangle(brush, rect);
  376. }
  377. if (baseColor.A > 80)
  378. {
  379. Rectangle rectTop = rect;
  380. if (mode == LinearGradientMode.Vertical)
  381. {
  382. rectTop.Height = (int)((float)rectTop.Height * basePosition);
  383. }
  384. else
  385. {
  386. rectTop.Width = (int)((float)rect.Width * basePosition);
  387. }
  388. using (SolidBrush brushAlpha = new SolidBrush(Color.FromArgb(80, 255, 255, 255)))
  389. {
  390. g.FillRectangle(brushAlpha, rectTop);
  391. }
  392. }
  393. if (drawBorder)
  394. {
  395. using (Pen pen = new Pen(borderColor))
  396. {
  397. g.DrawRectangle(pen, rect);
  398. }
  399. }
  400. }
  401. private Color GetColor(Color colorBase, int a, int r, int g, int b)
  402. {
  403. int a2 = (int)colorBase.A;
  404. int r2 = (int)colorBase.R;
  405. int g2 = (int)colorBase.G;
  406. int b2 = (int)colorBase.B;
  407. if (a + a2 > 255)
  408. {
  409. a = 255;
  410. }
  411. else
  412. {
  413. a = Math.Max(a + a2, 0);
  414. }
  415. if (r + r2 > 255)
  416. {
  417. r = 255;
  418. }
  419. else
  420. {
  421. r = Math.Max(r + r2, 0);
  422. }
  423. if (g + g2 > 255)
  424. {
  425. g = 255;
  426. }
  427. else
  428. {
  429. g = Math.Max(g + g2, 0);
  430. }
  431. if (b + b2 > 255)
  432. {
  433. b = 255;
  434. }
  435. else
  436. {
  437. b = Math.Max(b + b2, 0);
  438. }
  439. return Color.FromArgb(a, r, g, b);
  440. }
  441. }
  442. }