123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631 |
- 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(CheckBox))]
- public class SkinCheckBox : CheckBox
- {
- private ControlState _controlState;
- private static readonly ContentAlignment RightAlignment = (ContentAlignment)1092;
- private static readonly ContentAlignment LeftAligbment = (ContentAlignment)273;
- private Color _baseColor = Color.FromArgb(51, 161, 224);
- private int defaultcheckbuttonwidth = 12;
- private Image mouseback;
- private Image downback;
- private Image normlback;
- private Image selectedmouseback;
- private Image selectedownback;
- private Image selectenormlback;
- private bool lighteffect = true;
- private Color lighteffectback = Color.White;
- private int lighteffectWidth = 4;
- private IContainer components;
- [Category("Skin"), DefaultValue(typeof(Color), "51, 161, 224"), Description("非图片绘制时CheckBox色调")]
- public Color BaseColor
- {
- get
- {
- return this._baseColor;
- }
- set
- {
- if (this._baseColor != value)
- {
- this._baseColor = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(12), Description("选择框大小")]
- public int DefaultCheckButtonWidth
- {
- get
- {
- return this.defaultcheckbuttonwidth;
- }
- set
- {
- if (this.defaultcheckbuttonwidth != value)
- {
- this.defaultcheckbuttonwidth = value;
- base.Invalidate();
- }
- }
- }
- public ControlState ControlState
- {
- get
- {
- return this._controlState;
- }
- set
- {
- if (this._controlState != value)
- {
- this._controlState = 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("MouseEnter"), Description("选中悬浮时图像")]
- public Image SelectedMouseBack
- {
- get
- {
- return this.selectedmouseback;
- }
- set
- {
- if (this.selectedmouseback != value)
- {
- this.selectedmouseback = value;
- base.Invalidate();
- }
- }
- }
- [Category("MouseDown"), Description("选中点击时图像")]
- public Image SelectedDownBack
- {
- get
- {
- return this.selectedownback;
- }
- set
- {
- if (this.selectedownback != value)
- {
- this.selectedownback = value;
- base.Invalidate();
- }
- }
- }
- [Category("MouseNorml"), Description("选中初始时图像")]
- public Image SelectedNormlBack
- {
- get
- {
- return this.selectenormlback;
- }
- set
- {
- if (this.selectenormlback != value)
- {
- this.selectenormlback = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(bool), "true"), Description("是否绘制发光字体")]
- public bool LightEffect
- {
- get
- {
- return this.lighteffect;
- }
- set
- {
- if (this.lighteffect != value)
- {
- this.lighteffect = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(Color), "White"), Description("发光字体背景色")]
- public Color LightEffectBack
- {
- get
- {
- return this.lighteffectback;
- }
- set
- {
- if (this.lighteffectback != value)
- {
- this.lighteffectback = value;
- base.Invalidate();
- }
- }
- }
- [Category("Skin"), DefaultValue(typeof(int), "4"), Description("光圈大小")]
- public int LightEffectWidth
- {
- get
- {
- return this.lighteffectWidth;
- }
- set
- {
- if (this.lighteffectWidth != value)
- {
- this.lighteffectWidth = value;
- base.Invalidate();
- }
- }
- }
- public SkinCheckBox()
- {
- this.Init();
- base.ResizeRedraw = true;
- this.BackColor = Color.Transparent;
- this.Font = new Font("微软雅黑", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
- }
- public void Init()
- {
- base.SetStyle(ControlStyles.ResizeRedraw, true);
- base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
- base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
- base.SetStyle(ControlStyles.UserPaint, true);
- base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
- base.UpdateStyles();
- }
- 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 && e.Clicks == 1)
- {
- if (base.ClientRectangle.Contains(e.Location))
- {
- this.ControlState = ControlState.Hover;
- }
- else
- {
- this.ControlState = ControlState.Normal;
- }
- }
- base.Invalidate();
- base.OnMouseUp(e);
- }
- protected override void OnEnter(EventArgs e)
- {
- this.ControlState = ControlState.Focused;
- base.OnEnter(e);
- }
- protected override void OnPaint(PaintEventArgs e)
- {
- base.OnPaint(e);
- base.OnPaintBackground(e);
- Graphics g = e.Graphics;
- Rectangle checkButtonRect;
- Rectangle textRect;
- this.CalculateRect(out checkButtonRect, out textRect);
- g.SmoothingMode = SmoothingMode.AntiAlias;
- ControlPaint.Light(this._baseColor);
- bool hover = false;
- Color borderColor;
- Color innerBorderColor;
- Color checkColor;
- Bitmap btm;
- if (base.Enabled)
- {
- switch (this.ControlState)
- {
- case ControlState.Hover:
- borderColor = this._baseColor;
- innerBorderColor = this._baseColor;
- checkColor = this.GetColor(this._baseColor, 0, 35, 24, 9);
- btm = (base.Checked ? ((Bitmap)this.SelectedMouseBack) : ((Bitmap)this.MouseBack));
- hover = true;
- break;
- case ControlState.Pressed:
- borderColor = this._baseColor;
- innerBorderColor = this.GetColor(this._baseColor, 0, -13, -8, -3);
- checkColor = this.GetColor(this._baseColor, 0, -35, -24, -9);
- btm = (base.Checked ? ((Bitmap)this.SelectedDownBack) : ((Bitmap)this.DownBack));
- hover = true;
- break;
- default:
- borderColor = this._baseColor;
- innerBorderColor = Color.Empty;
- checkColor = this._baseColor;
- btm = (base.Checked ? ((Bitmap)this.SelectedNormlBack) : ((Bitmap)this.NormlBack));
- break;
- }
- }
- else
- {
- borderColor = SystemColors.ControlDark;
- innerBorderColor = SystemColors.ControlDark;
- checkColor = SystemColors.ControlDark;
- btm = (base.Checked ? ((Bitmap)this.SelectedNormlBack) : ((Bitmap)this.NormlBack));
- }
- if (btm == null)
- {
- using (SolidBrush brush = new SolidBrush(Color.White))
- {
- g.FillRectangle(brush, checkButtonRect);
- }
- if (hover)
- {
- using (Pen pen = new Pen(innerBorderColor, 2f))
- {
- g.DrawRectangle(pen, checkButtonRect);
- }
- }
- switch (base.CheckState)
- {
- case CheckState.Checked:
- this.DrawCheckedFlag(g, checkButtonRect, checkColor);
- break;
- case CheckState.Indeterminate:
- checkButtonRect.Inflate(-1, -1);
- using (GraphicsPath path = new GraphicsPath())
- {
- path.AddEllipse(checkButtonRect);
- using (PathGradientBrush brush2 = new PathGradientBrush(path))
- {
- brush2.CenterColor = checkColor;
- brush2.SurroundColors = new Color[]
- {
- Color.White
- };
- brush2.Blend = new Blend
- {
- Positions = new float[]
- {
- 0f,
- 0.4f,
- 1f
- },
- Factors = new float[]
- {
- 0f,
- 0.3f,
- 1f
- }
- };
- g.FillEllipse(brush2, checkButtonRect);
- }
- }
- checkButtonRect.Inflate(1, 1);
- break;
- }
- using (Pen pen2 = new Pen(borderColor))
- {
- g.DrawRectangle(pen2, checkButtonRect);
- goto IL_2EE;
- }
- }
- g.DrawImage(btm, checkButtonRect);
- IL_2EE:
- Color textColor = base.Enabled ? this.ForeColor : SystemColors.GrayText;
- if (this.LightEffect)
- {
- Image imgText = UpdateForm.ImageLightEffect(this.Text, this.Font, textColor, this.LightEffectBack, this.LightEffectWidth);
- g.DrawImage(imgText, textRect);
- return;
- }
- TextRenderer.DrawText(g, this.Text, this.Font, textRect, textColor, SkinCheckBox.GetTextFormatFlags(this.TextAlign, this.RightToLeft == RightToLeft.Yes));
- }
- private void DrawCheckedFlag(Graphics graphics, Rectangle rect, Color color)
- {
- PointF[] points = new PointF[]
- {
- new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
- new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
- new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
- };
- using (Pen pen = new Pen(color, 2f))
- {
- graphics.DrawLines(pen, points);
- }
- }
- 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;
- }
- private void CalculateRect(out Rectangle checkButtonRect, out Rectangle textRect)
- {
- checkButtonRect = new Rectangle(0, 0, this.DefaultCheckButtonWidth, this.DefaultCheckButtonWidth);
- textRect = Rectangle.Empty;
- bool bCheckAlignLeft = (SkinCheckBox.LeftAligbment & base.CheckAlign) != (ContentAlignment)0;
- bool bCheckAlignRight = (SkinCheckBox.RightAlignment & base.CheckAlign) != (ContentAlignment)0;
- bool bRightToLeft = this.RightToLeft == RightToLeft.Yes;
- if ((bCheckAlignLeft && !bRightToLeft) || (bCheckAlignRight && bRightToLeft))
- {
- ContentAlignment checkAlign = base.CheckAlign;
- if (checkAlign <= ContentAlignment.MiddleLeft)
- {
- if (checkAlign == ContentAlignment.TopLeft || checkAlign == ContentAlignment.TopRight)
- {
- checkButtonRect.Y = 2;
- goto IL_CD;
- }
- if (checkAlign != ContentAlignment.MiddleLeft)
- {
- goto IL_CD;
- }
- }
- else
- {
- if (checkAlign != ContentAlignment.MiddleRight)
- {
- if (checkAlign != ContentAlignment.BottomLeft && checkAlign != ContentAlignment.BottomRight)
- {
- goto IL_CD;
- }
- checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
- goto IL_CD;
- }
- }
- checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
- IL_CD:
- checkButtonRect.X = 1;
- textRect = new Rectangle(checkButtonRect.Right + 2, 0, base.Width - checkButtonRect.Right - 4, base.Height);
- return;
- }
- if ((bCheckAlignRight && !bRightToLeft) || (bCheckAlignLeft && bRightToLeft))
- {
- ContentAlignment checkAlign2 = base.CheckAlign;
- if (checkAlign2 <= ContentAlignment.MiddleLeft)
- {
- if (checkAlign2 == ContentAlignment.TopLeft || checkAlign2 == ContentAlignment.TopRight)
- {
- checkButtonRect.Y = 2;
- goto IL_17F;
- }
- if (checkAlign2 != ContentAlignment.MiddleLeft)
- {
- goto IL_17F;
- }
- }
- else
- {
- if (checkAlign2 != ContentAlignment.MiddleRight)
- {
- if (checkAlign2 != ContentAlignment.BottomLeft && checkAlign2 != ContentAlignment.BottomRight)
- {
- goto IL_17F;
- }
- checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
- goto IL_17F;
- }
- }
- checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
- IL_17F:
- checkButtonRect.X = base.Width - this.DefaultCheckButtonWidth - 1;
- textRect = new Rectangle(2, 0, base.Width - this.DefaultCheckButtonWidth - 6, base.Height);
- return;
- }
- ContentAlignment checkAlign3 = base.CheckAlign;
- if (checkAlign3 != ContentAlignment.TopCenter)
- {
- if (checkAlign3 != ContentAlignment.MiddleCenter)
- {
- if (checkAlign3 == ContentAlignment.BottomCenter)
- {
- checkButtonRect.Y = base.Height - this.DefaultCheckButtonWidth - 2;
- textRect.Y = 0;
- textRect.Height = base.Height - this.DefaultCheckButtonWidth - 6;
- }
- }
- else
- {
- checkButtonRect.Y = (base.Height - this.DefaultCheckButtonWidth) / 2;
- textRect.Y = 0;
- textRect.Height = base.Height;
- }
- }
- else
- {
- checkButtonRect.Y = 2;
- textRect.Y = checkButtonRect.Bottom + 2;
- textRect.Height = base.Height - this.DefaultCheckButtonWidth - 6;
- }
- checkButtonRect.X = (base.Width - this.DefaultCheckButtonWidth) / 2;
- textRect.X = 2;
- textRect.Width = base.Width - 4;
- }
- 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);
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing && this.components != null)
- {
- this.components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.components = new Container();
- }
- }
- }
|