using LYFZ.OtherExpansion.SkinClass; using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace LYFZ.OtherExpansion.SkinControl { [ToolboxBitmap(typeof(MenuStrip))] public class SkinMenuStrip : MenuStrip { private ToolStripColorTable colorTable; [Category("Base"), Description("九宫绘画区域")] public Rectangle BackRectangle { get { return this.colorTable.BackRectangle; } set { this.colorTable.BackRectangle = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem悬浮时背景图")] public Image BaseItemMouse { get { return this.colorTable.BaseItemMouse; } set { this.colorTable.BaseItemMouse = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem按下时背景图")] public Image BaseItemDown { get { return this.colorTable.BaseItemDown; } set { this.colorTable.BaseItemDown = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem字体是否有辉光效果")] public bool BaseForeAnamorphosis { get { return this.colorTable.BaseForeAnamorphosis; } set { this.colorTable.BaseForeAnamorphosis = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem辉光字体光圈大小")] public int BaseForeAnamorphosisBorder { get { return this.colorTable.BaseForeAnamorphosisBorder; } set { this.colorTable.BaseForeAnamorphosisBorder = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem辉光字体光圈颜色")] public Color BaseForeAnamorphosisColor { get { return this.colorTable.BaseForeAnamorphosisColor; } set { this.colorTable.BaseForeAnamorphosisColor = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem分隔符颜色")] public Color BaseItemSplitter { get { return this.colorTable.BaseItemSplitter; } set { this.colorTable.BaseItemSplitter = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem点击时颜色")] public Color BaseItemPressed { get { return this.colorTable.BaseItemPressed; } set { this.colorTable.BaseItemPressed = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem悬浮时颜色")] public Color BaseItemHover { get { return this.colorTable.BaseItemHover; } set { this.colorTable.BaseItemHover = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem边框颜色")] public Color BaseItemBorder { get { return this.colorTable.BaseItemBorder; } set { this.colorTable.BaseItemBorder = value; this.PaintRenderer(); } } [Category("Base"), Description("BaseItem是否显示边框")] public bool BaseItemBorderShow { get { return this.colorTable.BaseItemBorderShow; } set { this.colorTable.BaseItemBorderShow = value; this.PaintRenderer(); } } [Category("Base"), Description("颜色绘制BaseItem时,是否启用颜色渐变效果")] public bool BaseItemAnamorphosis { get { return this.colorTable.BaseItemAnamorphosis; } set { this.colorTable.BaseItemAnamorphosis = value; this.PaintRenderer(); } } [Category("Base"), Description("Base圆角大小")] public int BaseItemRadius { get { return this.colorTable.BaseItemRadius; } set { this.colorTable.BaseItemRadius = ((value < 1) ? 1 : value); this.PaintRenderer(); } } [Category("Base"), Description("Base圆角样式")] public RoundStyle BaseItemRadiusStyle { get { return this.colorTable.BaseItemRadiusStyle; } set { this.colorTable.BaseItemRadiusStyle = value; this.PaintRenderer(); } } [Category("Base"), Description("Base字体颜色")] public Color BaseFore { get { return this.colorTable.BaseFore; } set { this.colorTable.BaseFore = value; this.PaintRenderer(); } } [Category("Base"), Description("Base悬浮时字体颜色")] public Color BaseHoverFore { get { return this.colorTable.BaseHoverFore; } set { this.colorTable.BaseHoverFore = value; this.PaintRenderer(); } } [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 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 SkinMenuStrip() { 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(); } } }