123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686 |
- using LYFZ.OtherExpansion.SkinClass;
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(Button))]
- public class SkinButtom : Button
- {
- private DrawStyle drawType = DrawStyle.Draw;
- private Color _baseColor = Color.FromArgb(51, 161, 224);
- private int _imageWidth = 18;
- private RoundStyle _roundStyle;
- private ControlState _controlState;
- private bool palace;
- private bool create;
- private Rectangle backrectangle = new Rectangle(10, 10, 10, 10);
- private Image mouseback;
- private Image downback;
- private Image normlback;
- private int radius = 8;
- private ControlState states;
- private IContainer components;
- [Category("Skin"), DefaultValue(typeof(DrawStyle), "2"), Description("按钮的绘画模式")]
- public DrawStyle DrawType
- {
- get
- {
- return this.drawType;
- }
- set
- {
- if (this.drawType != value)
- {
- this.drawType = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "51, 161, 224"), Description("非图片绘制时Bottom色调")]
- public Color BaseColor
- {
- get
- {
- return this._baseColor;
- }
- set
- {
- this._baseColor = value;
- base.Invalidate();
- }
- }
- [Category("Skin"), DefaultValue(18), Description("设置或获取图像的大小")]
- public int ImageWidth
- {
- get
- {
- return this._imageWidth;
- }
- set
- {
- if (value != this._imageWidth)
- {
- this._imageWidth = ((value < 12) ? 12 : value);
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(RoundStyle), "0"), Description("设置或获取按钮圆角的样式")]
- public RoundStyle RoundStyle
- {
- get
- {
- return this._roundStyle;
- }
- set
- {
- if (this._roundStyle != value)
- {
- this._roundStyle = value;
- base.Invalidate();
- }
- }
- }
- [Description("控件状态")]
- public ControlState ControlState
- {
- get
- {
- return this._controlState;
- }
- set
- {
- if (this._controlState != value)
- {
- this._controlState = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(bool), "false"), Description("是否开启九宫绘图")]
- public bool Palace
- {
- get
- {
- return this.palace;
- }
- set
- {
- if (this.palace != value)
- {
- this.palace = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(bool), "false"), Description("是否开启:根据所绘图限制控件范围")]
- public bool Create
- {
- get
- {
- return this.create;
- }
- set
- {
- if (this.create != value)
- {
- this.create = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Rectangle), "10,10,10,10"), Description("九宫绘画区域")]
- public Rectangle BackRectangle
- {
- get
- {
- return this.backrectangle;
- }
- set
- {
- if (this.backrectangle != value)
- {
- this.backrectangle = value;
- }
- base.Invalidate();
- }
- }
- [Category("MouseEnter"), Description("悬浮时背景")]
- public Image MouseBack
- {
- get
- {
- return this.mouseback;
- }
- set
- {
- if (this.mouseback != value)
- {
- this.mouseback = value;
- base.Invalidate();
- }
- }
- }
- [Category("MouseDown"), Description("点击时背景")]
- public Image DownBack
- {
- get
- {
- return this.downback;
- }
- set
- {
- if (this.downback != value)
- {
- this.downback = value;
- base.Invalidate();
- }
- }
- }
- [Category("MouseNorml"), Description("初始时背景")]
- public Image NormlBack
- {
- get
- {
- return this.normlback;
- }
- set
- {
- if (this.normlback != value)
- {
- this.normlback = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(int), "8"), Description("圆角大小")]
- public int Radius
- {
- get
- {
- return this.radius;
- }
- set
- {
- if (this.radius != value)
- {
- this.radius = ((value < 4) ? 4 : value);
- base.Invalidate();
- }
- }
- }
- public SkinButtom()
- {
- this.Init();
- base.ResizeRedraw = true;
- this.BackColor = Color.Transparent;
- }
- public void Init()
- {
- base.SetStyle(ControlStyles.DoubleBuffer, true);
- base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
- base.SetStyle(ControlStyles.UserPaint, true);
- base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
- base.SetStyle(ControlStyles.StandardDoubleClick, false);
- base.SetStyle(ControlStyles.Selectable, true);
- base.UpdateStyles();
- }
- protected override void OnEnabledChanged(EventArgs e)
- {
- base.Invalidate();
- base.OnEnabledChanged(e);
- }
- protected override void OnMouseEnter(EventArgs e)
- {
- this._controlState = ControlState.Hover;
- base.Invalidate();
- base.OnMouseEnter(e);
- }
- protected override void OnMouseLeave(EventArgs e)
- {
- this._controlState = ControlState.Normal;
- base.Invalidate();
- base.OnMouseLeave(e);
- }
- protected override void OnMouseDown(MouseEventArgs e)
- {
- if ((e.Button & MouseButtons.Left) != MouseButtons.Left)
- {
- return;
- }
- this._controlState = ControlState.Pressed;
- base.Invalidate();
- base.OnMouseDown(e);
- }
- protected override void OnMouseUp(MouseEventArgs e)
- {
- if ((e.Button & MouseButtons.Left) == MouseButtons.Left)
- {
- this._controlState = ControlState.Hover;
- base.Invalidate();
- }
- base.OnMouseUp(e);
- }
- protected override void OnPaint(PaintEventArgs e)
- {
- base.OnPaint(e);
- base.OnPaintBackground(e);
- Graphics g = e.Graphics;
- Rectangle rc = base.ClientRectangle;
- Rectangle imageRect;
- Rectangle textRect;
- this.CalculateRect(out imageRect, out textRect);
- g.SmoothingMode = SmoothingMode.AntiAlias;
- Color innerBorderColor = Color.FromArgb(200, 255, 255, 255);
- int Tx = 0;
- Bitmap btm;
- Color baseColor;
- Color borderColor;
- switch (this._controlState)
- {
- case ControlState.Hover:
- btm = (Bitmap)this.MouseBack;
- baseColor = this.GetColor(this._baseColor, 0, -13, -8, -3);
- borderColor = this._baseColor;
- break;
- case ControlState.Pressed:
- btm = (Bitmap)this.DownBack;
- baseColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
- borderColor = this._baseColor;
- Tx = 1;
- break;
- default:
- btm = (Bitmap)this.NormlBack;
- baseColor = this._baseColor;
- borderColor = this._baseColor;
- break;
- }
- if (!base.Enabled)
- {
- baseColor = SystemColors.ControlDark;
- borderColor = SystemColors.ControlDark;
- }
- if (btm != null && this.DrawType == DrawStyle.Img)
- {
- UpdateForm.CreateRegion(this, rc, this.Radius, this.RoundStyle);
- if (this.Create && this._controlState != this.states)
- {
- UpdateForm.CreateControlRegion(this, btm, 1);
- }
- if (this.Palace)
- {
- LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, btm, new Rectangle(rc.X, rc.Y, rc.Width, rc.Height), Rectangle.FromLTRB(this.BackRectangle.X, this.BackRectangle.Y, this.BackRectangle.Width, this.BackRectangle.Height), 1, 1);
- }
- else
- {
- g.DrawImage(btm, 0, 0, base.Width, base.Height);
- }
- }
- else
- {
- if (this.DrawType == DrawStyle.Draw)
- {
- this.RenderBackgroundInternal(g, rc, baseColor, borderColor, innerBorderColor, this.RoundStyle, this.Radius, 0.35f, true, true, LinearGradientMode.Vertical);
- }
- }
- Size imgs = Size.Empty;
- if (base.Image != null)
- {
- if (string.IsNullOrEmpty(this.Text))
- {
- Image img = base.Image;
- imgs = new Size(img.Width, img.Height);
- rc.Inflate(-4, -4);
- if (imgs.Width * imgs.Height != 0)
- {
- Rectangle imgr = rc;
- imgr = LYFZ.OtherExpansion.SkinClass.ImageDrawRect.HAlignWithin(imgs, imgr, base.ImageAlign);
- imgr = LYFZ.OtherExpansion.SkinClass.ImageDrawRect.VAlignWithin(imgs, imgr, base.ImageAlign);
- if (!base.Enabled)
- {
- ControlPaint.DrawImageDisabled(g, img, imgr.Left, imgr.Top, this.BackColor);
- }
- else
- {
- g.DrawImage(img, imgr.Left + Tx, imgr.Top + Tx, img.Width, img.Height);
- }
- }
- }
- else
- {
- g.InterpolationMode = InterpolationMode.HighQualityBilinear;
- g.DrawImage(base.Image, imageRect, -Tx, -Tx, base.Image.Width, base.Image.Height, GraphicsUnit.Pixel);
- }
- }
- else
- {
- if (base.ImageList != null && base.ImageIndex != -1)
- {
- Image img = base.ImageList.Images[base.ImageIndex];
- }
- }
- Color txtColor = base.Enabled ? this.ForeColor : SystemColors.ControlDark;
- TextRenderer.DrawText(g, this.Text, this.Font, textRect, txtColor, SkinButtom.GetTextFormatFlags(this.TextAlign, this.RightToLeft == RightToLeft.Yes));
- this.states = this._controlState;
- }
- private void CalculateRect(out Rectangle imageRect, out Rectangle textRect)
- {
- imageRect = Rectangle.Empty;
- textRect = Rectangle.Empty;
- if (base.Image == null)
- {
- textRect = new Rectangle(2, 0, base.Width - 4, base.Height);
- return;
- }
- switch (base.TextImageRelation)
- {
- case TextImageRelation.Overlay:
- imageRect = new Rectangle(2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
- textRect = new Rectangle(2, 0, base.Width - 4, base.Height);
- break;
- case TextImageRelation.ImageAboveText:
- imageRect = new Rectangle((base.Width - this.ImageWidth) / 2, 2, this.ImageWidth, this.ImageWidth);
- textRect = new Rectangle(2, imageRect.Bottom, base.Width, base.Height - imageRect.Bottom - 2);
- break;
- case TextImageRelation.TextAboveImage:
- imageRect = new Rectangle((base.Width - this.ImageWidth) / 2, base.Height - this.ImageWidth - 2, this.ImageWidth, this.ImageWidth);
- textRect = new Rectangle(0, 2, base.Width, base.Height - imageRect.Y - 2);
- break;
- case TextImageRelation.ImageBeforeText:
- imageRect = new Rectangle(2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
- textRect = new Rectangle(imageRect.Right + 2, 0, base.Width - imageRect.Right - 4, base.Height);
- break;
- case TextImageRelation.TextBeforeImage:
- imageRect = new Rectangle(base.Width - this.ImageWidth - 2, (base.Height - this.ImageWidth) / 2, this.ImageWidth, this.ImageWidth);
- textRect = new Rectangle(2, 0, imageRect.X - 2, base.Height);
- break;
- }
- if (this.RightToLeft == RightToLeft.Yes)
- {
- imageRect.X = base.Width - imageRect.Right;
- textRect.X = base.Width - textRect.Right;
- }
- }
- public void RenderBackgroundInternal(Graphics g, Rectangle rect, Color baseColor, Color borderColor, Color innerBorderColor, RoundStyle style, int roundWidth, float basePosition, bool drawBorder, bool drawGlass, LinearGradientMode mode)
- {
- if (drawBorder)
- {
- rect.Width--;
- rect.Height--;
- }
- using (LinearGradientBrush brush = new LinearGradientBrush(rect, Color.Transparent, Color.Transparent, mode))
- {
- Color[] colors = new Color[]
- {
- this.GetColor(baseColor, 0, 35, 24, 9),
- this.GetColor(baseColor, 0, 13, 8, 3),
- baseColor,
- this.GetColor(baseColor, 0, 68, 69, 54)
- };
- brush.InterpolationColors = new ColorBlend
- {
- Positions = new float[]
- {
- 0f,
- basePosition,
- basePosition + 0.05f,
- 1f
- },
- Colors = colors
- };
- if (style != RoundStyle.None)
- {
- using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
- {
- g.FillPath(brush, path);
- }
- if (baseColor.A > 80)
- {
- Rectangle rectTop = rect;
- if (mode == LinearGradientMode.Vertical)
- {
- rectTop.Height = (int)((float)rectTop.Height * basePosition);
- }
- else
- {
- rectTop.Width = (int)((float)rect.Width * basePosition);
- }
- using (GraphicsPath pathTop = GraphicsPathHelper.CreatePath(rectTop, roundWidth, RoundStyle.Top, false))
- {
- using (SolidBrush brushAlpha = new SolidBrush(Color.FromArgb(80, 255, 255, 255)))
- {
- g.FillPath(brushAlpha, pathTop);
- }
- }
- }
- if (drawGlass)
- {
- RectangleF glassRect = rect;
- if (mode == LinearGradientMode.Vertical)
- {
- glassRect.Y = (float)rect.Y + (float)rect.Height * basePosition;
- glassRect.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
- }
- else
- {
- glassRect.X = (float)rect.X + (float)rect.Width * basePosition;
- glassRect.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
- }
- this.DrawGlass(g, glassRect, 170, 0);
- }
- if (!drawBorder)
- {
- goto IL_413;
- }
- using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
- {
- using (Pen pen = new Pen(borderColor))
- {
- g.DrawPath(pen, path2);
- }
- }
- rect.Inflate(-1, -1);
- using (GraphicsPath path3 = GraphicsPathHelper.CreatePath(rect, roundWidth, style, false))
- {
- using (Pen pen2 = new Pen(innerBorderColor))
- {
- g.DrawPath(pen2, path3);
- }
- goto IL_413;
- }
- }
- g.FillRectangle(brush, rect);
- if (baseColor.A > 80)
- {
- Rectangle rectTop2 = rect;
- if (mode == LinearGradientMode.Vertical)
- {
- rectTop2.Height = (int)((float)rectTop2.Height * basePosition);
- }
- else
- {
- rectTop2.Width = (int)((float)rect.Width * basePosition);
- }
- using (SolidBrush brushAlpha2 = new SolidBrush(Color.FromArgb(80, 255, 255, 255)))
- {
- g.FillRectangle(brushAlpha2, rectTop2);
- }
- }
- if (drawGlass)
- {
- RectangleF glassRect2 = rect;
- if (mode == LinearGradientMode.Vertical)
- {
- glassRect2.Y = (float)rect.Y + (float)rect.Height * basePosition;
- glassRect2.Height = ((float)rect.Height - (float)rect.Height * basePosition) * 2f;
- }
- else
- {
- glassRect2.X = (float)rect.X + (float)rect.Width * basePosition;
- glassRect2.Width = ((float)rect.Width - (float)rect.Width * basePosition) * 2f;
- }
- this.DrawGlass(g, glassRect2, 200, 0);
- }
- if (drawBorder)
- {
- using (Pen pen3 = new Pen(borderColor))
- {
- g.DrawRectangle(pen3, rect);
- }
- rect.Inflate(-1, -1);
- using (Pen pen4 = new Pen(innerBorderColor))
- {
- g.DrawRectangle(pen4, rect);
- }
- }
- IL_413:;
- }
- }
- private void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
- {
- this.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
- }
- private void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
- {
- using (GraphicsPath path = new GraphicsPath())
- {
- path.AddEllipse(glassRect);
- using (PathGradientBrush brush = new PathGradientBrush(path))
- {
- brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
- brush.SurroundColors = new Color[]
- {
- Color.FromArgb(alphaSurround, glassColor)
- };
- brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
- g.FillPath(brush, path);
- }
- }
- }
- private Color GetColor(Color colorBase, int a, int r, int g, int b)
- {
- int a2 = (int)colorBase.A;
- int r2 = (int)colorBase.R;
- int g2 = (int)colorBase.G;
- int b2 = (int)colorBase.B;
- if (a + a2 > 255)
- {
- a = 255;
- }
- else
- {
- a = Math.Max(a + a2, 0);
- }
- if (r + r2 > 255)
- {
- r = 255;
- }
- else
- {
- r = Math.Max(r + r2, 0);
- }
- if (g + g2 > 255)
- {
- g = 255;
- }
- else
- {
- g = Math.Max(g + g2, 0);
- }
- if (b + b2 > 255)
- {
- b = 255;
- }
- else
- {
- b = Math.Max(b + b2, 0);
- }
- return Color.FromArgb(a, r, g, b);
- }
- public static TextFormatFlags GetTextFormatFlags(ContentAlignment alignment, bool rightToleft)
- {
- TextFormatFlags flags = TextFormatFlags.SingleLine | TextFormatFlags.WordBreak;
- if (rightToleft)
- {
- flags |= (TextFormatFlags.Right | TextFormatFlags.RightToLeft);
- }
- if (alignment <= ContentAlignment.MiddleCenter)
- {
- switch (alignment)
- {
- case ContentAlignment.TopLeft:
- //flags = flags;
- break;
- case ContentAlignment.TopCenter:
- flags |= TextFormatFlags.HorizontalCenter;
- break;
- case (ContentAlignment)3:
- break;
- case ContentAlignment.TopRight:
- flags |= TextFormatFlags.Right;
- break;
- default:
- if (alignment != ContentAlignment.MiddleLeft)
- {
- if (alignment == ContentAlignment.MiddleCenter)
- {
- flags |= (TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter);
- }
- }
- else
- {
- flags |= TextFormatFlags.VerticalCenter;
- }
- break;
- }
- }
- else
- {
- if (alignment <= ContentAlignment.BottomLeft)
- {
- if (alignment != ContentAlignment.MiddleRight)
- {
- if (alignment == ContentAlignment.BottomLeft)
- {
- flags |= TextFormatFlags.Bottom;
- }
- }
- else
- {
- flags |= (TextFormatFlags.Right | TextFormatFlags.VerticalCenter);
- }
- }
- else
- {
- if (alignment != ContentAlignment.BottomCenter)
- {
- if (alignment == ContentAlignment.BottomRight)
- {
- flags |= (TextFormatFlags.Bottom | TextFormatFlags.Right);
- }
- }
- else
- {
- flags |= (TextFormatFlags.Bottom | TextFormatFlags.HorizontalCenter);
- }
- }
- }
- return flags;
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing && this.components != null)
- {
- this.components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.components = new Container();
- }
- }
- }
|