123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- using LYFZ.ComponentLibrary.Properties;
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- internal class ToolButton : Control
- {
- private IContainer components;
- private Image btnImage;
- private bool isSelectedBtn;
- private bool isSingleSelectedBtn;
- private bool isSelected;
- private bool m_bMouseEnter;
- public Image BtnImage
- {
- get
- {
- return this.btnImage;
- }
- set
- {
- this.btnImage = value;
- base.Invalidate();
- }
- }
- public bool IsSelectedBtn
- {
- get
- {
- return this.isSelectedBtn;
- }
- set
- {
- this.isSelectedBtn = value;
- if (!this.isSelectedBtn)
- {
- this.isSingleSelectedBtn = false;
- }
- }
- }
- public bool IsSingleSelectedBtn
- {
- get
- {
- return this.isSingleSelectedBtn;
- }
- set
- {
- this.isSingleSelectedBtn = value;
- if (this.isSingleSelectedBtn)
- {
- this.isSelectedBtn = true;
- }
- }
- }
- public bool IsSelected
- {
- get
- {
- return this.isSelected;
- }
- set
- {
- if (value == this.isSelected)
- {
- return;
- }
- this.isSelected = value;
- base.Invalidate();
- }
- }
- public override string Text
- {
- get
- {
- return base.Text;
- }
- set
- {
- base.Text = value;
- base.Width = TextRenderer.MeasureText(this.Text, this.Font).Width + 21;
- }
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing && this.components != null)
- {
- this.components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.components = new Container();
- }
- public ToolButton()
- {
- this.InitializeComponent();
- }
- protected override void OnMouseEnter(EventArgs e)
- {
- this.m_bMouseEnter = true;
- base.Invalidate();
- base.OnMouseEnter(e);
- }
- protected override void OnMouseLeave(EventArgs e)
- {
- this.m_bMouseEnter = false;
- base.Invalidate();
- base.OnMouseLeave(e);
- }
- protected override void OnClick(EventArgs e)
- {
- if (this.isSelectedBtn)
- {
- if (this.isSelected)
- {
- if (!this.isSingleSelectedBtn)
- {
- this.isSelected = false;
- base.Invalidate();
- }
- }
- else
- {
- this.isSelected = true;
- base.Invalidate();
- int i = 0;
- int len = base.Parent.Controls.Count;
- while (i < len)
- {
- if (base.Parent.Controls[i] is ToolButton && base.Parent.Controls[i] != this && ((ToolButton)base.Parent.Controls[i]).isSelected)
- {
- ((ToolButton)base.Parent.Controls[i]).IsSelected = false;
- }
- i++;
- }
- }
- }
- base.Focus();
- base.OnClick(e);
- }
- protected override void OnDoubleClick(EventArgs e)
- {
- this.OnClick(e);
- base.OnDoubleClick(e);
- }
- protected override void OnPaint(PaintEventArgs e)
- {
- Graphics g = e.Graphics;
- if (this.m_bMouseEnter)
- {
- g.FillRectangle(Brushes.LightBlue, base.ClientRectangle);
- g.DrawRectangle(Pens.DarkCyan, new Rectangle(0, 0, base.Width - 1, base.Height - 1));
- }
- if (this.btnImage == null)
- {
- g.DrawImage(Resources.none, new Rectangle(2, 2, 17, 17));
- }
- else
- {
- g.DrawImage(this.btnImage, new Rectangle(2, 2, 17, 17));
- }
- g.DrawString(this.Text, this.Font, Brushes.Black, 21f, (float)((base.Height - this.Font.Height) / 2));
- if (this.isSelected)
- {
- g.DrawRectangle(Pens.DarkCyan, new Rectangle(0, 0, base.Width - 1, base.Height - 1));
- }
- base.OnPaint(e);
- }
- protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
- {
- base.SetBoundsCore(x, y, TextRenderer.MeasureText(this.Text, this.Font).Width + 21, 21, specified);
- }
- }
- }
|