SkinComboBox.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using LYFZ.OtherExpansion.Win32;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.ComponentModel;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.Runtime.InteropServices;
  9. using System.Windows.Forms;
  10. namespace LYFZ.OtherExpansion.SkinControl
  11. {
  12. [ToolboxBitmap(typeof(ComboBox))]
  13. public class SkinComboBox : ComboBox
  14. {
  15. private class EditNativeWindow : NativeWindow, IDisposable
  16. {
  17. private const int WM_PAINT = 15;
  18. private SkinComboBox _owner;
  19. public EditNativeWindow(SkinComboBox owner)
  20. {
  21. this._owner = owner;
  22. base.AssignHandle(this._owner.EditHandle);
  23. }
  24. [DllImport("user32.dll")]
  25. private static extern IntPtr GetDC(IntPtr ptr);
  26. [DllImport("user32.dll")]
  27. private static extern int ReleaseDC(IntPtr hwnd, IntPtr hDC);
  28. protected override void WndProc(ref Message m)
  29. {
  30. base.WndProc(ref m);
  31. if (m.Msg == 15)
  32. {
  33. IntPtr handle = m.HWnd;
  34. IntPtr hdc = SkinComboBox.EditNativeWindow.GetDC(handle);
  35. if (hdc == IntPtr.Zero)
  36. {
  37. return;
  38. }
  39. try
  40. {
  41. using (Graphics graphics = Graphics.FromHdc(hdc))
  42. {
  43. if (this._owner.Text.Length == 0 && !this._owner.Focused && !string.IsNullOrEmpty(this._owner.WaterText))
  44. {
  45. TextFormatFlags format = TextFormatFlags.EndEllipsis | TextFormatFlags.VerticalCenter;
  46. if (this._owner.RightToLeft == RightToLeft.Yes)
  47. {
  48. format |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
  49. }
  50. TextRenderer.DrawText(graphics, this._owner.WaterText, new Font("微软雅黑", 8.5f), new Rectangle(0, 0, this._owner.EditRect.Width, this._owner.EditRect.Height), this._owner.WaterColor, format);
  51. }
  52. }
  53. }
  54. finally
  55. {
  56. SkinComboBox.EditNativeWindow.ReleaseDC(handle, hdc);
  57. }
  58. }
  59. }
  60. public void Dispose()
  61. {
  62. this.ReleaseHandle();
  63. this._owner = null;
  64. }
  65. }
  66. private SkinComboBox.EditNativeWindow _editNativeWindow;
  67. private bool _bPainting;
  68. private Color mouseColor = Color.FromArgb(62, 151, 216);
  69. private Color mouseGradientColor = Color.FromArgb(51, 137, 201);
  70. private Color dropBackColor = Color.White;
  71. private Color itemBorderColor = Color.CornflowerBlue;
  72. private Color itemHoverForeColor = Color.White;
  73. private string _waterText = string.Empty;
  74. private Color _waterColor = Color.FromArgb(127, 127, 127);
  75. private Color _baseColor = Color.FromArgb(51, 161, 224);
  76. private Color _borderColor = Color.FromArgb(51, 161, 224);
  77. private Color _arrowColor = Color.FromArgb(19, 88, 128);
  78. private ControlState _buttonState;
  79. private IntPtr _editHandle;
  80. [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "62, 151, 216"), Description("项被选中后的高亮度颜色")]
  81. public Color MouseColor
  82. {
  83. get
  84. {
  85. return this.mouseColor;
  86. }
  87. set
  88. {
  89. this.mouseColor = value;
  90. base.Invalidate();
  91. }
  92. }
  93. [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "51, 137, 201"), Description("项被选中后的渐变颜色")]
  94. public Color MouseGradientColor
  95. {
  96. get
  97. {
  98. return this.mouseGradientColor;
  99. }
  100. set
  101. {
  102. this.mouseGradientColor = value;
  103. base.Invalidate();
  104. }
  105. }
  106. [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "White"), Description("下拉框背景色")]
  107. public Color DropBackColor
  108. {
  109. get
  110. {
  111. return this.dropBackColor;
  112. }
  113. set
  114. {
  115. this.dropBackColor = value;
  116. base.Invalidate();
  117. }
  118. }
  119. [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "CornflowerBlue"), Description("项被选中时的边框颜色")]
  120. public Color ItemBorderColor
  121. {
  122. get
  123. {
  124. return this.itemBorderColor;
  125. }
  126. set
  127. {
  128. this.itemBorderColor = value;
  129. base.Invalidate();
  130. }
  131. }
  132. [Browsable(true), Category("DropDown"), DefaultValue(typeof(Color), "White"), Description("项被选中时的字体颜色")]
  133. public Color ItemHoverForeColor
  134. {
  135. get
  136. {
  137. return this.itemHoverForeColor;
  138. }
  139. set
  140. {
  141. this.itemHoverForeColor = value;
  142. base.Invalidate();
  143. }
  144. }
  145. [Category("Skin"), Description("水印文字")]
  146. public string WaterText
  147. {
  148. get
  149. {
  150. return this._waterText;
  151. }
  152. set
  153. {
  154. this._waterText = value;
  155. base.Invalidate();
  156. }
  157. }
  158. [Category("Skin"), DefaultValue(typeof(Color), "127, 127, 127"), Description("水印的颜色")]
  159. public Color WaterColor
  160. {
  161. get
  162. {
  163. return this._waterColor;
  164. }
  165. set
  166. {
  167. this._waterColor = value;
  168. base.Invalidate();
  169. }
  170. }
  171. [Category("Base"), DefaultValue(typeof(Color), "51, 161, 224"), Description("下拉按钮背景色")]
  172. public Color BaseColor
  173. {
  174. get
  175. {
  176. return this._baseColor;
  177. }
  178. set
  179. {
  180. if (this._baseColor != value)
  181. {
  182. this._baseColor = value;
  183. base.Invalidate();
  184. }
  185. }
  186. }
  187. [Category("Base"), DefaultValue(typeof(Color), "51, 161, 224"), Description("边框颜色")]
  188. public Color BorderColor
  189. {
  190. get
  191. {
  192. return this._borderColor;
  193. }
  194. set
  195. {
  196. if (this._borderColor != value)
  197. {
  198. this._borderColor = value;
  199. base.Invalidate();
  200. }
  201. }
  202. }
  203. [Category("Base"), DefaultValue(typeof(Color), "19, 88, 128"), Description("箭头颜色")]
  204. public Color ArrowColor
  205. {
  206. get
  207. {
  208. return this._arrowColor;
  209. }
  210. set
  211. {
  212. if (this._arrowColor != value)
  213. {
  214. this._arrowColor = value;
  215. base.Invalidate();
  216. }
  217. }
  218. }
  219. internal ControlState ButtonState
  220. {
  221. get
  222. {
  223. return this._buttonState;
  224. }
  225. set
  226. {
  227. if (this._buttonState != value)
  228. {
  229. this._buttonState = value;
  230. base.Invalidate(this.ButtonRect);
  231. }
  232. }
  233. }
  234. internal Rectangle ButtonRect
  235. {
  236. get
  237. {
  238. return this.GetDropDownButtonRect();
  239. }
  240. }
  241. internal bool ButtonPressed
  242. {
  243. get
  244. {
  245. return base.IsHandleCreated && this.GetComboBoxButtonPressed();
  246. }
  247. }
  248. internal IntPtr EditHandle
  249. {
  250. get
  251. {
  252. return this._editHandle;
  253. }
  254. }
  255. internal Rectangle EditRect
  256. {
  257. get
  258. {
  259. if (base.DropDownStyle == ComboBoxStyle.DropDownList)
  260. {
  261. Rectangle rect = new Rectangle(3, 3, base.Width - this.ButtonRect.Width - 6, base.Height - 6);
  262. if (this.RightToLeft == RightToLeft.Yes)
  263. {
  264. rect.X += this.ButtonRect.Right;
  265. }
  266. return rect;
  267. }
  268. if (base.IsHandleCreated && this.EditHandle != IntPtr.Zero)
  269. {
  270. RECT rcClient = default(RECT);
  271. NativeMethods.GetWindowRect(this.EditHandle, ref rcClient);
  272. return base.RectangleToClient(rcClient.Rect);
  273. }
  274. return Rectangle.Empty;
  275. }
  276. }
  277. public SkinComboBox()
  278. {
  279. base.SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer, true);
  280. base.DrawMode = DrawMode.OwnerDrawFixed;
  281. }
  282. protected override void OnDrawItem(DrawItemEventArgs e)
  283. {
  284. base.OnDrawItem(e);
  285. if (e.Index == -1)
  286. {
  287. return;
  288. }
  289. if ((e.State & DrawItemState.Selected) != DrawItemState.None)
  290. {
  291. LinearGradientBrush brush = new LinearGradientBrush(e.Bounds, this.MouseColor, this.mouseGradientColor, LinearGradientMode.Vertical);
  292. Rectangle borderRect = new Rectangle(1, e.Bounds.Y + 1, e.Bounds.Width - 2, e.Bounds.Height - 2);
  293. e.Graphics.FillRectangle(brush, borderRect);
  294. Pen pen = new Pen(this.ItemBorderColor);
  295. e.Graphics.DrawRectangle(pen, borderRect);
  296. }
  297. else
  298. {
  299. SolidBrush brush2 = new SolidBrush(this.DropBackColor);
  300. e.Graphics.FillRectangle(brush2, e.Bounds);
  301. }
  302. string itemText = base.Items[e.Index].ToString();
  303. Color fore = ((e.State & DrawItemState.Selected) != DrawItemState.None) ? this.ItemHoverForeColor : this.ForeColor;
  304. StringFormat strFormat = new StringFormat();
  305. strFormat.LineAlignment = StringAlignment.Center;
  306. e.Graphics.DrawString(itemText, this.Font, new SolidBrush(fore), e.Bounds, strFormat);
  307. }
  308. protected override void OnHandleCreated(EventArgs e)
  309. {
  310. base.OnHandleCreated(e);
  311. NativeMethods.ComboBoxInfo cbi = default(NativeMethods.ComboBoxInfo);
  312. cbi.cbSize = Marshal.SizeOf(cbi);
  313. NativeMethods.GetComboBoxInfo(base.Handle, ref cbi);
  314. this._editHandle = cbi.hwndEdit;
  315. if (base.DropDownStyle != ComboBoxStyle.DropDownList)
  316. {
  317. this._editNativeWindow = new SkinComboBox.EditNativeWindow(this);
  318. }
  319. }
  320. protected override void OnHandleDestroyed(EventArgs e)
  321. {
  322. base.OnHandleDestroyed(e);
  323. if (this._editNativeWindow != null)
  324. {
  325. this._editNativeWindow.Dispose();
  326. this._editNativeWindow = null;
  327. }
  328. }
  329. protected override void OnCreateControl()
  330. {
  331. base.OnCreateControl();
  332. this._editHandle = this.GetComboBoxInfo().hwndEdit;
  333. }
  334. protected override void OnMouseMove(MouseEventArgs e)
  335. {
  336. base.OnMouseMove(e);
  337. Point point = e.Location;
  338. if (this.ButtonRect.Contains(point))
  339. {
  340. this.ButtonState = ControlState.Hover;
  341. return;
  342. }
  343. this.ButtonState = ControlState.Normal;
  344. }
  345. protected override void OnMouseEnter(EventArgs e)
  346. {
  347. base.OnMouseEnter(e);
  348. Point point = base.PointToClient(Cursor.Position);
  349. if (this.ButtonRect.Contains(point))
  350. {
  351. this.ButtonState = ControlState.Hover;
  352. }
  353. }
  354. protected override void OnMouseLeave(EventArgs e)
  355. {
  356. base.OnMouseLeave(e);
  357. this.ButtonState = ControlState.Normal;
  358. }
  359. protected override void OnMouseUp(MouseEventArgs e)
  360. {
  361. base.OnMouseUp(e);
  362. this.ButtonState = ControlState.Normal;
  363. }
  364. protected override void WndProc(ref Message m)
  365. {
  366. int msg = m.Msg;
  367. if (msg == 15)
  368. {
  369. this.WmPaint(ref m);
  370. return;
  371. }
  372. base.WndProc(ref m);
  373. }
  374. private void WmPaint(ref Message m)
  375. {
  376. if (base.DropDownStyle == ComboBoxStyle.Simple)
  377. {
  378. base.WndProc(ref m);
  379. return;
  380. }
  381. if (base.DropDownStyle != ComboBoxStyle.DropDown)
  382. {
  383. base.WndProc(ref m);
  384. this.RenderComboBox(ref m);
  385. return;
  386. }
  387. if (!this._bPainting)
  388. {
  389. PAINTSTRUCT ps = default(PAINTSTRUCT);
  390. this._bPainting = true;
  391. NativeMethods.BeginPaint(m.HWnd, ref ps);
  392. this.RenderComboBox(ref m);
  393. NativeMethods.EndPaint(m.HWnd, ref ps);
  394. this._bPainting = false;
  395. m.Result = Result.TRUE;
  396. return;
  397. }
  398. base.WndProc(ref m);
  399. }
  400. private void RenderComboBox(ref Message m)
  401. {
  402. Rectangle rect = new Rectangle(Point.Empty, base.Size);
  403. Rectangle buttonRect = this.ButtonRect;
  404. ControlState state = this.ButtonPressed ? ControlState.Pressed : this.ButtonState;
  405. using (Graphics g = Graphics.FromHwnd(m.HWnd))
  406. {
  407. this.RenderComboBoxBackground(g, rect, buttonRect);
  408. this.RenderConboBoxDropDownButton(g, this.ButtonRect, state);
  409. this.RenderConboBoxBorder(g, rect);
  410. }
  411. }
  412. private void RenderConboBoxBorder(Graphics g, Rectangle rect)
  413. {
  414. Color borderColor = base.Enabled ? this._borderColor : SystemColors.ControlDarkDark;
  415. using (Pen pen = new Pen(borderColor))
  416. {
  417. rect.Width--;
  418. rect.Height--;
  419. g.DrawRectangle(pen, rect);
  420. }
  421. }
  422. private void RenderComboBoxBackground(Graphics g, Rectangle rect, Rectangle buttonRect)
  423. {
  424. Color backColor = base.Enabled ? base.BackColor : SystemColors.Control;
  425. using (SolidBrush brush = new SolidBrush(backColor))
  426. {
  427. buttonRect.Inflate(-1, -1);
  428. rect.Inflate(-1, -1);
  429. using (Region region = new Region(rect))
  430. {
  431. region.Exclude(buttonRect);
  432. region.Exclude(this.EditRect);
  433. g.FillRegion(brush, region);
  434. }
  435. }
  436. }
  437. private void RenderConboBoxDropDownButton(Graphics g, Rectangle buttonRect, ControlState state)
  438. {
  439. Color backColor = Color.FromArgb(160, 250, 250, 250);
  440. Color borderColor = base.Enabled ? this._borderColor : SystemColors.ControlDarkDark;
  441. Color arrowColor = base.Enabled ? this._arrowColor : SystemColors.ControlDarkDark;
  442. Rectangle rect = buttonRect;
  443. Color baseColor;
  444. if (base.Enabled)
  445. {
  446. switch (state)
  447. {
  448. case ControlState.Hover:
  449. baseColor = RenderHelper.GetColor(this._baseColor, 0, -33, -22, -13);
  450. break;
  451. case ControlState.Pressed:
  452. baseColor = RenderHelper.GetColor(this._baseColor, 0, -65, -47, -25);
  453. break;
  454. default:
  455. baseColor = this._baseColor;
  456. break;
  457. }
  458. }
  459. else
  460. {
  461. baseColor = SystemColors.ControlDark;
  462. }
  463. rect.Inflate(-1, -1);
  464. this.RenderScrollBarArrowInternal(g, rect, baseColor, borderColor, backColor, arrowColor, RoundStyle.None, true, false, ArrowDirection.Down, LinearGradientMode.Vertical);
  465. }
  466. internal void RenderScrollBarArrowInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, Color arrowColor, RoundStyle roundStyle, bool drawBorder, bool drawGlass, ArrowDirection arrowDirection, LinearGradientMode mode)
  467. {
  468. RenderHelper.RenderBackgroundInternal(g, rect, baseColor, borderColor, innerBorderColor, roundStyle, 0, 0.45f, drawBorder, drawGlass, mode);
  469. using (SolidBrush brush = new SolidBrush(arrowColor))
  470. {
  471. this.RenderArrowInternal(g, rect, arrowDirection, brush);
  472. }
  473. }
  474. internal void RenderArrowInternal(Graphics g, Rectangle dropDownRect, ArrowDirection direction, Brush brush)
  475. {
  476. Point point = new Point(dropDownRect.Left + dropDownRect.Width / 2, dropDownRect.Top + dropDownRect.Height / 2);
  477. Point[] points;
  478. switch (direction)
  479. {
  480. case ArrowDirection.Left:
  481. points = new Point[]
  482. {
  483. new Point(point.X + 2, point.Y - 3),
  484. new Point(point.X + 2, point.Y + 3),
  485. new Point(point.X - 1, point.Y)
  486. };
  487. break;
  488. case ArrowDirection.Up:
  489. points = new Point[]
  490. {
  491. new Point(point.X - 3, point.Y + 2),
  492. new Point(point.X + 3, point.Y + 2),
  493. new Point(point.X, point.Y - 2)
  494. };
  495. break;
  496. default:
  497. if (direction != ArrowDirection.Right)
  498. {
  499. points = new Point[]
  500. {
  501. new Point(point.X - 2, point.Y - 1),
  502. new Point(point.X + 3, point.Y - 1),
  503. new Point(point.X, point.Y + 2)
  504. };
  505. }
  506. else
  507. {
  508. points = new Point[]
  509. {
  510. new Point(point.X - 2, point.Y - 3),
  511. new Point(point.X - 2, point.Y + 3),
  512. new Point(point.X + 1, point.Y)
  513. };
  514. }
  515. break;
  516. }
  517. g.FillPolygon(brush, points);
  518. }
  519. private NativeMethods.ComboBoxInfo GetComboBoxInfo()
  520. {
  521. NativeMethods.ComboBoxInfo cbi = default(NativeMethods.ComboBoxInfo);
  522. cbi.cbSize = Marshal.SizeOf(cbi);
  523. NativeMethods.GetComboBoxInfo(base.Handle, ref cbi);
  524. return cbi;
  525. }
  526. private bool GetComboBoxButtonPressed()
  527. {
  528. return this.GetComboBoxInfo().stateButton == NativeMethods.ComboBoxButtonState.STATE_SYSTEM_PRESSED;
  529. }
  530. private Rectangle GetDropDownButtonRect()
  531. {
  532. return this.GetComboBoxInfo().rcButton.Rect;
  533. }
  534. }
  535. }