PanelEx.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. using System.Runtime.InteropServices;
  10. namespace LYFZ.ComponentLibrary
  11. {
  12. public class PanelEx : System.Windows.Forms.Panel
  13. {
  14. [DllImport("user32.dll")]
  15. private static extern IntPtr GetWindowDC(IntPtr hwnd);
  16. [DllImport("user32.dll")]
  17. private static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc);
  18. private Color _borderColor = Color.Black;
  19. private int _borderWidth = 1;
  20. //
  21. // 摘要:
  22. // 获取或设置控件的边框颜色。
  23. //
  24. // 返回结果:
  25. // 控件的边框颜色 System.Drawing.Color。默认为 System.Drawing.Color.Black
  26. // 属性的值。
  27. [Description("组件的边框颜色。"), Category("Appearance")]
  28. public Color BorderColor
  29. {
  30. get
  31. {
  32. return _borderColor;
  33. }
  34. set
  35. {
  36. _borderColor = value;
  37. this.Invalidate();
  38. }
  39. }
  40. //
  41. // 摘要:
  42. // 获取或设置控件的边框宽度。
  43. //
  44. // 返回结果:
  45. // 控件的边框宽度 int。默认为 1
  46. // 属性的值。
  47. [Description("组件的边框宽度。"), Category("Appearance")]
  48. public int BorderWidth
  49. {
  50. get
  51. {
  52. return _borderWidth;
  53. }
  54. set
  55. {
  56. _borderWidth = value;
  57. this.Invalidate();
  58. }
  59. }
  60. public PanelEx()
  61. {
  62. SetStyle(ControlStyles.DoubleBuffer, true);
  63. SetStyle(ControlStyles.AllPaintingInWmPaint, false);
  64. SetStyle(ControlStyles.ResizeRedraw, true);
  65. SetStyle(ControlStyles.UserPaint, true);
  66. SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  67. this.Paint += new PaintEventHandler(PanelEx_Paint);
  68. }
  69. private void PanelEx_Paint(object sender, PaintEventArgs e)
  70. {
  71. if (this.BorderStyle == BorderStyle.FixedSingle)
  72. {
  73. IntPtr hDC = GetWindowDC(this.Handle);
  74. Graphics g = Graphics.FromHdc(hDC);
  75. ControlPaint.DrawBorder(
  76. g,
  77. new Rectangle(0, 0, this.Width, this.Height),
  78. _borderColor,
  79. _borderWidth,
  80. ButtonBorderStyle.Solid,
  81. _borderColor,
  82. _borderWidth,
  83. ButtonBorderStyle.Solid,
  84. _borderColor,
  85. _borderWidth,
  86. ButtonBorderStyle.Solid,
  87. _borderColor,
  88. _borderWidth,
  89. ButtonBorderStyle.Solid);
  90. g.Dispose();
  91. ReleaseDC(Handle, hDC);
  92. }
  93. }
  94. }
  95. }