123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Windows.Forms;
- using System.IO;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.ComponentModel;
- namespace LYFZ.ComponentLibrary
- {
- public class GroupBoxEx : System.Windows.Forms.GroupBox
- {
-
- //#region Private Data Members
- //// The enum object to store the colorscheme value
- //private EnmColorScheme meColorScheme = EnmColorScheme.Green;
- //#endregion
- //public GroupBoxEx()
- // : base()
- //{
- // BackColor = Color.Transparent;
- //}
- //#region
- //[Category("控件扩展属性"), Description("选择窗体样式")]
- //public override EnmColorScheme ColorScheme
- //{
- // get
- // {
- // return meColorScheme;
- // }
- // set
- // {
- // // Create object of ColorScheme Class
- // ColorScheme oColor = new ColorScheme(value);
-
- // // Set the controls Diffrent color properties depending on the
- // // Color Scheme selected
- // oColor.SetColorScheme(this);
- // meColorScheme=value;
- // }
- //}
- //// This property is being used in the BaseClass's OnPaint method to
- //// get the drawing path of the control
- //protected override GraphicsPath InteriorRegionPath
- //{
- // get
- // {
- // Rectangle oRectangle = new Rectangle(this.BorderRectangle.X + 1, this.BorderRectangle.Y + 1, this.BorderRectangle.Width - 2, this.BorderRectangle.Height - 2);
- // Size oSize = new Size(mosizeBorderPixelIndent.Width - 2, mosizeBorderPixelIndent.Height - 2);
- // return this.GetRoundedRectanglarPath(oRectangle, moTextSize, oSize);
- // }
- //}
- //// This property is being used in the Base Class's OnPaint method to
- //// get the region path of the control to shape the control that way
- //protected override GraphicsPath ExteriorRegionPath
- //{
- // get
- // {
- // Rectangle oRectangle = new Rectangle(this.BorderRectangle.X, this.BorderRectangle.Y, this.BorderRectangle.Width + 3, this.BorderRectangle.Height + 3);
- // Size oSize = new Size(mosizeBorderPixelIndent.Width + 2, mosizeBorderPixelIndent.Width + 2);
- // return this.GetRoundedRectanglarPath(oRectangle, new SizeF(moTextSize.Width + 3, moTextSize.Height), oSize);
- // }
- //}
- //#endregion
- //#region Private Methods
- //// This Function Gets the Graphic Path to draw the Rectangle with Chamfer
- //private GraphicsPath GetRoundedRectanglarPath(Rectangle aoRectangle, SizeF aoTextSize, Size aoCurveSize)
- //{
- // GraphicsPath oGraphicPath = new GraphicsPath();
- // //=======================================================================
- // // Following code adds path for the chamfer to be drawn
- // //-----------------------------------------------------------------------
-
- // // Add arc for the top left corner curve to the graphic path
- // oGraphicPath.AddArc(aoRectangle.Left, aoRectangle.Top, aoCurveSize.Width,aoCurveSize.Height, 180, 90);
-
- // // Add top horizontal line for chamfer to the graphic path
- // oGraphicPath.AddLine(aoRectangle.Left + (Single)(aoCurveSize.Height / 2),aoRectangle.Top,
- // aoRectangle.Left + (Single)(aoCurveSize.Height / 2) + aoTextSize.Width + 2,
- // aoRectangle.Top);
-
- // // Add Right side arc for the chamfer to the Graphics object
- // oGraphicPath.AddArc(aoRectangle.Left + aoTextSize.Width + 7,
- // aoRectangle.Top, aoCurveSize.Width,
- // aoCurveSize.Height, 270, 90);
- // //=======================================================================
-
- // // Add Top Horizontal line below the chamfer to the graphic path object
- // oGraphicPath.AddLine(aoRectangle.Left + aoTextSize.Width + (Single)(aoCurveSize.Width + 7),
- // aoRectangle.Top + (Single)(aoCurveSize.Height / 2),
- // aoRectangle.Right - (Single)(aoCurveSize.Height / 2),
- // aoRectangle.Top + (Single)(aoCurveSize.Height / 2));
-
- // // Add arc for the top right corner curve to the Graphics Path object
- // oGraphicPath.AddArc(aoRectangle.Right - aoCurveSize.Width,
- // aoRectangle.Top + (Single)(aoCurveSize.Height / 2),
- // aoCurveSize.Width,
- // aoCurveSize.Height, 270, 90);
- // // Add Right Vertical Line to the Graphics Path object
- // oGraphicPath.AddLine(aoRectangle.Right, aoRectangle.Top + aoCurveSize.Height,
- // aoRectangle.Right, aoRectangle.Bottom - (Single)(aoCurveSize.Height / 2));
-
- // // Add arc for the bottom right corner curve to the Graphics Path object
- // oGraphicPath.AddArc(aoRectangle.Right - aoCurveSize.Width,
- // aoRectangle.Bottom - aoCurveSize.Height,
- // aoCurveSize.Width, aoCurveSize.Height, 0, 90);
-
- // // Add Bottom Horizontal line to the Graphics Path object
- // oGraphicPath.AddLine(aoRectangle.Right - (Single)(aoCurveSize.Width / 2),
- // aoRectangle.Bottom,
- // aoRectangle.Left + (Single)(aoCurveSize.Width / 2),
- // aoRectangle.Bottom);
-
- // // Add arc for the bottom left corner curve to the graphics path object
- // oGraphicPath.AddArc(aoRectangle.Left, aoRectangle.Bottom - aoCurveSize.Height,
- // aoCurveSize.Width, aoCurveSize.Height, 90, 90);
-
- // // Add Left Vertical Line to the GraphicsPath object
- // oGraphicPath.AddLine(aoRectangle.Left, aoRectangle.Bottom - (Single)(aoCurveSize.Height / 2),
- // aoRectangle.Left, aoRectangle.Top + (Single)(aoCurveSize.Height / 2));
- // return oGraphicPath;
- //}
- //#endregion
- //#region Overridden Methods
- //// This method is called in the OnPaint Method of the base class
- //protected override void DrawBorder(Graphics aoGraphics, Rectangle aoRectangle)
- //{
- // Pen oPen;
- // Size oSize = new Size(mosizeBorderPixelIndent.Width, mosizeBorderPixelIndent.Height);
-
- // Rectangle oRectangle = new Rectangle(aoRectangle.X, aoRectangle.Y, aoRectangle.Width, aoRectangle.Height);
- // SizeF aotextsize = aoGraphics.MeasureString(this.Text, this.Font);
- // // Draw the shadows for the borders
- // for(int i = 0;i <= 2;i++)
- // {
- // // Creates a pen to draw Lines and Arcs Dark To Light
- // oPen = new Pen(Color.FromArgb((2 - i + 1) * 64, this.ShadowColor));
-
- // // Draws a shadow arc for the Chamfer's right hand side
- // aoGraphics.DrawArc(oPen, oRectangle.Left + aotextsize.Width - i,
- // oRectangle.Top + 2, oSize.Width, oSize.Height, 270, 90);
-
- // // Draws a shadow arc for the Top Right corner
- // aoGraphics.DrawArc(oPen, oRectangle.Right - oSize.Width,
- // oRectangle.Top + (Single)(oSize.Height / 2) + 2,
- // oSize.Width, oSize.Height, 270, 90);
-
- // // Draws a vertical shadow line for the right side
- // aoGraphics.DrawLine(oPen, oRectangle.Right, oRectangle.Top + oSize.Height,
- // oRectangle.Right, oRectangle.Bottom - (Single)(oSize.Height / 2));
-
- // // Draws a shadow arc for bottom right corner
- // aoGraphics.DrawArc(oPen, oRectangle.Right - oSize.Width,
- // oRectangle.Bottom - oSize.Height, oSize.Width,
- // oSize.Height, 0, 90);
-
- // // Creates a pen to draw lines and arcs Light to Dark
- // oPen = new Pen(Color.FromArgb((2 - i) * 127, this.ShadowColor));
-
- // // Draws a horizontal shadow line for the bottom
- // aoGraphics.DrawLine(oPen, oRectangle.Right - (Single)(oSize.Width / 2),
- // oRectangle.Bottom, oRectangle.Left + (Single)(oSize.Width / 2),
- // oRectangle.Bottom);
-
- // // Draw a shadow arc for the bottom left corner
- // aoGraphics.DrawArc(oPen, oRectangle.Left + 2, oRectangle.Bottom - oSize.Height,
- // oSize.Width, oSize.Height, 90, 90);
-
- // // Increasing the Rectangles X and Y position
- // oRectangle.X += 1;
- // oRectangle.Y += 1;
-
- // // Reducing Height and width of the rectangle
- // oRectangle.Width -= 2;
- // oRectangle.Height -= 2;
-
- // // Reducing the size of the arcs to draw the arcs properly
- // oSize.Height -= 2;
- // oSize.Width -= 2;
- // }
- //}
- //#endregion
- }
- }
|