123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- using LYFZ.OtherExpansion.SkinClass;
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(ContextMenuStrip))]
- public class SkinContextMenuStrip : ContextMenuStrip
- {
- private ToolStripColorTable colorTable;
- [Category("Skin"), Description("箭头颜色")]
- public Color Arrow
- {
- get
- {
- return this.colorTable.Arrow;
- }
- set
- {
- this.colorTable.Arrow = value;
- this.PaintRenderer();
- }
- }
- [Category("Base"), Description("Base背景颜色")]
- public Color Base
- {
- get
- {
- return this.colorTable.Base;
- }
- set
- {
- this.colorTable.Base = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item边框颜色")]
- public Color ItemBorder
- {
- get
- {
- return this.colorTable.ItemBorder;
- }
- set
- {
- this.colorTable.ItemBorder = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item圆角样式")]
- public RoundStyle ItemRadiusStyle
- {
- get
- {
- return this.colorTable.ItemRadiusStyle;
- }
- set
- {
- this.colorTable.ItemRadiusStyle = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item圆角大小")]
- public int ItemRadius
- {
- get
- {
- return this.colorTable.ItemRadius;
- }
- set
- {
- this.colorTable.ItemRadius = ((value < 1) ? 1 : value);
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("控件背景色")]
- public Color Back
- {
- get
- {
- return this.colorTable.Back;
- }
- set
- {
- this.colorTable.Back = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item分隔符颜色")]
- public Color ItemSplitter
- {
- get
- {
- return this.colorTable.BaseItemSplitter;
- }
- set
- {
- this.colorTable.BaseItemSplitter = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item悬浮时背景色")]
- public Color ItemHover
- {
- get
- {
- return this.colorTable.ItemHover;
- }
- set
- {
- this.colorTable.ItemHover = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item按下时背景色")]
- public Color ItemPressed
- {
- get
- {
- return this.colorTable.ItemPressed;
- }
- set
- {
- this.colorTable.ItemPressed = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item是否启用渐变")]
- public bool ItemAnamorphosis
- {
- get
- {
- return this.colorTable.ItemAnamorphosis;
- }
- set
- {
- this.colorTable.ItemAnamorphosis = value;
- this.PaintRenderer();
- }
- }
- [Category("Item"), Description("Item背景色是否启用渐变")]
- public bool ItemBorderShow
- {
- get
- {
- return this.colorTable.ItemBorderShow;
- }
- set
- {
- this.colorTable.ItemBorderShow = value;
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("控件字体颜色")]
- public Color Fore
- {
- get
- {
- return this.colorTable.Fore;
- }
- set
- {
- this.colorTable.Fore = value;
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("控件悬浮时字体颜色")]
- public Color HoverFore
- {
- get
- {
- return this.colorTable.HoverFore;
- }
- set
- {
- this.colorTable.HoverFore = value;
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("弹出菜单分隔符与边框的颜色")]
- public Color DropDownImageSeparator
- {
- get
- {
- return this.colorTable.DropDownImageSeparator;
- }
- set
- {
- this.colorTable.DropDownImageSeparator = value;
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("控件圆角大小")]
- public int BackRadius
- {
- get
- {
- return this.colorTable.BackRadius;
- }
- set
- {
- this.colorTable.BackRadius = ((value < 1) ? 1 : value);
- this.PaintRenderer();
- }
- }
- [Category("Skin"), Description("控件圆角样式")]
- public RoundStyle RadiusStyle
- {
- get
- {
- return this.colorTable.RadiusStyle;
- }
- set
- {
- this.colorTable.RadiusStyle = value;
- this.PaintRenderer();
- }
- }
- [Category("Title"), Description("菜单标头背景色")]
- public Color TitleColor
- {
- get
- {
- return this.colorTable.TitleColor;
- }
- set
- {
- this.colorTable.TitleColor = value;
- this.PaintRenderer();
- }
- }
- [Category("Title"), Description("菜单标头背景色是否启用渐变")]
- public bool TitleAnamorphosis
- {
- get
- {
- return this.colorTable.TitleAnamorphosis;
- }
- set
- {
- this.colorTable.TitleAnamorphosis = value;
- this.PaintRenderer();
- }
- }
- [Category("Title"), Description("菜单标头圆角大小")]
- public int TitleRadius
- {
- get
- {
- return this.colorTable.TitleRadius;
- }
- set
- {
- this.colorTable.TitleRadius = ((value < 1) ? 1 : value);
- this.PaintRenderer();
- }
- }
- [Category("Title"), Description("菜单标头圆角样式")]
- public RoundStyle TitleRadiusStyle
- {
- get
- {
- return this.colorTable.TitleRadiusStyle;
- }
- set
- {
- this.colorTable.TitleRadiusStyle = value;
- this.PaintRenderer();
- }
- }
- public SkinContextMenuStrip()
- {
- this.Init();
- this.colorTable = new ToolStripColorTable();
- this.PaintRenderer();
- }
- public void PaintRenderer()
- {
- if (base.RenderMode != ToolStripRenderMode.System)
- {
- base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
- }
- }
- protected override void OnRendererChanged(EventArgs e)
- {
- if (base.RenderMode == ToolStripRenderMode.ManagerRenderMode || base.RenderMode == ToolStripRenderMode.Professional)
- {
- base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
- }
- base.OnRendererChanged(e);
- }
- 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();
- }
- }
- }
|