GroupBoxEx.cs 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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. public class GroupBoxEx : System.Windows.Forms.GroupBox
  12. {
  13. //#region Private Data Members
  14. //// The enum object to store the colorscheme value
  15. //private EnmColorScheme meColorScheme = EnmColorScheme.Green;
  16. //#endregion
  17. //public GroupBoxEx()
  18. // : base()
  19. //{
  20. // BackColor = Color.Transparent;
  21. //}
  22. //#region
  23. //[Category("控件扩展属性"), Description("选择窗体样式")]
  24. //public override EnmColorScheme ColorScheme
  25. //{
  26. // get
  27. // {
  28. // return meColorScheme;
  29. // }
  30. // set
  31. // {
  32. // // Create object of ColorScheme Class
  33. // ColorScheme oColor = new ColorScheme(value);
  34. // // Set the controls Diffrent color properties depending on the
  35. // // Color Scheme selected
  36. // oColor.SetColorScheme(this);
  37. // meColorScheme=value;
  38. // }
  39. //}
  40. //// This property is being used in the BaseClass's OnPaint method to
  41. //// get the drawing path of the control
  42. //protected override GraphicsPath InteriorRegionPath
  43. //{
  44. // get
  45. // {
  46. // Rectangle oRectangle = new Rectangle(this.BorderRectangle.X + 1, this.BorderRectangle.Y + 1, this.BorderRectangle.Width - 2, this.BorderRectangle.Height - 2);
  47. // Size oSize = new Size(mosizeBorderPixelIndent.Width - 2, mosizeBorderPixelIndent.Height - 2);
  48. // return this.GetRoundedRectanglarPath(oRectangle, moTextSize, oSize);
  49. // }
  50. //}
  51. //// This property is being used in the Base Class's OnPaint method to
  52. //// get the region path of the control to shape the control that way
  53. //protected override GraphicsPath ExteriorRegionPath
  54. //{
  55. // get
  56. // {
  57. // Rectangle oRectangle = new Rectangle(this.BorderRectangle.X, this.BorderRectangle.Y, this.BorderRectangle.Width + 3, this.BorderRectangle.Height + 3);
  58. // Size oSize = new Size(mosizeBorderPixelIndent.Width + 2, mosizeBorderPixelIndent.Width + 2);
  59. // return this.GetRoundedRectanglarPath(oRectangle, new SizeF(moTextSize.Width + 3, moTextSize.Height), oSize);
  60. // }
  61. //}
  62. //#endregion
  63. //#region Private Methods
  64. //// This Function Gets the Graphic Path to draw the Rectangle with Chamfer
  65. //private GraphicsPath GetRoundedRectanglarPath(Rectangle aoRectangle, SizeF aoTextSize, Size aoCurveSize)
  66. //{
  67. // GraphicsPath oGraphicPath = new GraphicsPath();
  68. // //=======================================================================
  69. // // Following code adds path for the chamfer to be drawn
  70. // //-----------------------------------------------------------------------
  71. // // Add arc for the top left corner curve to the graphic path
  72. // oGraphicPath.AddArc(aoRectangle.Left, aoRectangle.Top, aoCurveSize.Width,aoCurveSize.Height, 180, 90);
  73. // // Add top horizontal line for chamfer to the graphic path
  74. // oGraphicPath.AddLine(aoRectangle.Left + (Single)(aoCurveSize.Height / 2),aoRectangle.Top,
  75. // aoRectangle.Left + (Single)(aoCurveSize.Height / 2) + aoTextSize.Width + 2,
  76. // aoRectangle.Top);
  77. // // Add Right side arc for the chamfer to the Graphics object
  78. // oGraphicPath.AddArc(aoRectangle.Left + aoTextSize.Width + 7,
  79. // aoRectangle.Top, aoCurveSize.Width,
  80. // aoCurveSize.Height, 270, 90);
  81. // //=======================================================================
  82. // // Add Top Horizontal line below the chamfer to the graphic path object
  83. // oGraphicPath.AddLine(aoRectangle.Left + aoTextSize.Width + (Single)(aoCurveSize.Width + 7),
  84. // aoRectangle.Top + (Single)(aoCurveSize.Height / 2),
  85. // aoRectangle.Right - (Single)(aoCurveSize.Height / 2),
  86. // aoRectangle.Top + (Single)(aoCurveSize.Height / 2));
  87. // // Add arc for the top right corner curve to the Graphics Path object
  88. // oGraphicPath.AddArc(aoRectangle.Right - aoCurveSize.Width,
  89. // aoRectangle.Top + (Single)(aoCurveSize.Height / 2),
  90. // aoCurveSize.Width,
  91. // aoCurveSize.Height, 270, 90);
  92. // // Add Right Vertical Line to the Graphics Path object
  93. // oGraphicPath.AddLine(aoRectangle.Right, aoRectangle.Top + aoCurveSize.Height,
  94. // aoRectangle.Right, aoRectangle.Bottom - (Single)(aoCurveSize.Height / 2));
  95. // // Add arc for the bottom right corner curve to the Graphics Path object
  96. // oGraphicPath.AddArc(aoRectangle.Right - aoCurveSize.Width,
  97. // aoRectangle.Bottom - aoCurveSize.Height,
  98. // aoCurveSize.Width, aoCurveSize.Height, 0, 90);
  99. // // Add Bottom Horizontal line to the Graphics Path object
  100. // oGraphicPath.AddLine(aoRectangle.Right - (Single)(aoCurveSize.Width / 2),
  101. // aoRectangle.Bottom,
  102. // aoRectangle.Left + (Single)(aoCurveSize.Width / 2),
  103. // aoRectangle.Bottom);
  104. // // Add arc for the bottom left corner curve to the graphics path object
  105. // oGraphicPath.AddArc(aoRectangle.Left, aoRectangle.Bottom - aoCurveSize.Height,
  106. // aoCurveSize.Width, aoCurveSize.Height, 90, 90);
  107. // // Add Left Vertical Line to the GraphicsPath object
  108. // oGraphicPath.AddLine(aoRectangle.Left, aoRectangle.Bottom - (Single)(aoCurveSize.Height / 2),
  109. // aoRectangle.Left, aoRectangle.Top + (Single)(aoCurveSize.Height / 2));
  110. // return oGraphicPath;
  111. //}
  112. //#endregion
  113. //#region Overridden Methods
  114. //// This method is called in the OnPaint Method of the base class
  115. //protected override void DrawBorder(Graphics aoGraphics, Rectangle aoRectangle)
  116. //{
  117. // Pen oPen;
  118. // Size oSize = new Size(mosizeBorderPixelIndent.Width, mosizeBorderPixelIndent.Height);
  119. // Rectangle oRectangle = new Rectangle(aoRectangle.X, aoRectangle.Y, aoRectangle.Width, aoRectangle.Height);
  120. // SizeF aotextsize = aoGraphics.MeasureString(this.Text, this.Font);
  121. // // Draw the shadows for the borders
  122. // for(int i = 0;i <= 2;i++)
  123. // {
  124. // // Creates a pen to draw Lines and Arcs Dark To Light
  125. // oPen = new Pen(Color.FromArgb((2 - i + 1) * 64, this.ShadowColor));
  126. // // Draws a shadow arc for the Chamfer's right hand side
  127. // aoGraphics.DrawArc(oPen, oRectangle.Left + aotextsize.Width - i,
  128. // oRectangle.Top + 2, oSize.Width, oSize.Height, 270, 90);
  129. // // Draws a shadow arc for the Top Right corner
  130. // aoGraphics.DrawArc(oPen, oRectangle.Right - oSize.Width,
  131. // oRectangle.Top + (Single)(oSize.Height / 2) + 2,
  132. // oSize.Width, oSize.Height, 270, 90);
  133. // // Draws a vertical shadow line for the right side
  134. // aoGraphics.DrawLine(oPen, oRectangle.Right, oRectangle.Top + oSize.Height,
  135. // oRectangle.Right, oRectangle.Bottom - (Single)(oSize.Height / 2));
  136. // // Draws a shadow arc for bottom right corner
  137. // aoGraphics.DrawArc(oPen, oRectangle.Right - oSize.Width,
  138. // oRectangle.Bottom - oSize.Height, oSize.Width,
  139. // oSize.Height, 0, 90);
  140. // // Creates a pen to draw lines and arcs Light to Dark
  141. // oPen = new Pen(Color.FromArgb((2 - i) * 127, this.ShadowColor));
  142. // // Draws a horizontal shadow line for the bottom
  143. // aoGraphics.DrawLine(oPen, oRectangle.Right - (Single)(oSize.Width / 2),
  144. // oRectangle.Bottom, oRectangle.Left + (Single)(oSize.Width / 2),
  145. // oRectangle.Bottom);
  146. // // Draw a shadow arc for the bottom left corner
  147. // aoGraphics.DrawArc(oPen, oRectangle.Left + 2, oRectangle.Bottom - oSize.Height,
  148. // oSize.Width, oSize.Height, 90, 90);
  149. // // Increasing the Rectangles X and Y position
  150. // oRectangle.X += 1;
  151. // oRectangle.Y += 1;
  152. // // Reducing Height and width of the rectangle
  153. // oRectangle.Width -= 2;
  154. // oRectangle.Height -= 2;
  155. // // Reducing the size of the arcs to draw the arcs properly
  156. // oSize.Height -= 2;
  157. // oSize.Width -= 2;
  158. // }
  159. //}
  160. //#endregion
  161. }
  162. }