SkinContextMenuStrip.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Windows.Forms;
  6. namespace LYFZ.OtherExpansion.SkinControl
  7. {
  8. [ToolboxBitmap(typeof(ContextMenuStrip))]
  9. public class SkinContextMenuStrip : ContextMenuStrip
  10. {
  11. private ToolStripColorTable colorTable;
  12. [Category("Skin"), Description("箭头颜色")]
  13. public Color Arrow
  14. {
  15. get
  16. {
  17. return this.colorTable.Arrow;
  18. }
  19. set
  20. {
  21. this.colorTable.Arrow = value;
  22. this.PaintRenderer();
  23. }
  24. }
  25. [Category("Base"), Description("Base背景颜色")]
  26. public Color Base
  27. {
  28. get
  29. {
  30. return this.colorTable.Base;
  31. }
  32. set
  33. {
  34. this.colorTable.Base = value;
  35. this.PaintRenderer();
  36. }
  37. }
  38. [Category("Item"), Description("Item边框颜色")]
  39. public Color ItemBorder
  40. {
  41. get
  42. {
  43. return this.colorTable.ItemBorder;
  44. }
  45. set
  46. {
  47. this.colorTable.ItemBorder = value;
  48. this.PaintRenderer();
  49. }
  50. }
  51. [Category("Item"), Description("Item圆角样式")]
  52. public RoundStyle ItemRadiusStyle
  53. {
  54. get
  55. {
  56. return this.colorTable.ItemRadiusStyle;
  57. }
  58. set
  59. {
  60. this.colorTable.ItemRadiusStyle = value;
  61. this.PaintRenderer();
  62. }
  63. }
  64. [Category("Item"), Description("Item圆角大小")]
  65. public int ItemRadius
  66. {
  67. get
  68. {
  69. return this.colorTable.ItemRadius;
  70. }
  71. set
  72. {
  73. this.colorTable.ItemRadius = ((value < 1) ? 1 : value);
  74. this.PaintRenderer();
  75. }
  76. }
  77. [Category("Skin"), Description("控件背景色")]
  78. public Color Back
  79. {
  80. get
  81. {
  82. return this.colorTable.Back;
  83. }
  84. set
  85. {
  86. this.colorTable.Back = value;
  87. this.PaintRenderer();
  88. }
  89. }
  90. [Category("Item"), Description("Item分隔符颜色")]
  91. public Color ItemSplitter
  92. {
  93. get
  94. {
  95. return this.colorTable.BaseItemSplitter;
  96. }
  97. set
  98. {
  99. this.colorTable.BaseItemSplitter = value;
  100. this.PaintRenderer();
  101. }
  102. }
  103. [Category("Item"), Description("Item悬浮时背景色")]
  104. public Color ItemHover
  105. {
  106. get
  107. {
  108. return this.colorTable.ItemHover;
  109. }
  110. set
  111. {
  112. this.colorTable.ItemHover = value;
  113. this.PaintRenderer();
  114. }
  115. }
  116. [Category("Item"), Description("Item按下时背景色")]
  117. public Color ItemPressed
  118. {
  119. get
  120. {
  121. return this.colorTable.ItemPressed;
  122. }
  123. set
  124. {
  125. this.colorTable.ItemPressed = value;
  126. this.PaintRenderer();
  127. }
  128. }
  129. [Category("Item"), Description("Item是否启用渐变")]
  130. public bool ItemAnamorphosis
  131. {
  132. get
  133. {
  134. return this.colorTable.ItemAnamorphosis;
  135. }
  136. set
  137. {
  138. this.colorTable.ItemAnamorphosis = value;
  139. this.PaintRenderer();
  140. }
  141. }
  142. [Category("Item"), Description("Item背景色是否启用渐变")]
  143. public bool ItemBorderShow
  144. {
  145. get
  146. {
  147. return this.colorTable.ItemBorderShow;
  148. }
  149. set
  150. {
  151. this.colorTable.ItemBorderShow = value;
  152. this.PaintRenderer();
  153. }
  154. }
  155. [Category("Skin"), Description("控件字体颜色")]
  156. public Color Fore
  157. {
  158. get
  159. {
  160. return this.colorTable.Fore;
  161. }
  162. set
  163. {
  164. this.colorTable.Fore = value;
  165. this.PaintRenderer();
  166. }
  167. }
  168. [Category("Skin"), Description("控件悬浮时字体颜色")]
  169. public Color HoverFore
  170. {
  171. get
  172. {
  173. return this.colorTable.HoverFore;
  174. }
  175. set
  176. {
  177. this.colorTable.HoverFore = value;
  178. this.PaintRenderer();
  179. }
  180. }
  181. [Category("Skin"), Description("弹出菜单分隔符与边框的颜色")]
  182. public Color DropDownImageSeparator
  183. {
  184. get
  185. {
  186. return this.colorTable.DropDownImageSeparator;
  187. }
  188. set
  189. {
  190. this.colorTable.DropDownImageSeparator = value;
  191. this.PaintRenderer();
  192. }
  193. }
  194. [Category("Skin"), Description("控件圆角大小")]
  195. public int BackRadius
  196. {
  197. get
  198. {
  199. return this.colorTable.BackRadius;
  200. }
  201. set
  202. {
  203. this.colorTable.BackRadius = ((value < 1) ? 1 : value);
  204. this.PaintRenderer();
  205. }
  206. }
  207. [Category("Skin"), Description("控件圆角样式")]
  208. public RoundStyle RadiusStyle
  209. {
  210. get
  211. {
  212. return this.colorTable.RadiusStyle;
  213. }
  214. set
  215. {
  216. this.colorTable.RadiusStyle = value;
  217. this.PaintRenderer();
  218. }
  219. }
  220. [Category("Title"), Description("菜单标头背景色")]
  221. public Color TitleColor
  222. {
  223. get
  224. {
  225. return this.colorTable.TitleColor;
  226. }
  227. set
  228. {
  229. this.colorTable.TitleColor = value;
  230. this.PaintRenderer();
  231. }
  232. }
  233. [Category("Title"), Description("菜单标头背景色是否启用渐变")]
  234. public bool TitleAnamorphosis
  235. {
  236. get
  237. {
  238. return this.colorTable.TitleAnamorphosis;
  239. }
  240. set
  241. {
  242. this.colorTable.TitleAnamorphosis = value;
  243. this.PaintRenderer();
  244. }
  245. }
  246. [Category("Title"), Description("菜单标头圆角大小")]
  247. public int TitleRadius
  248. {
  249. get
  250. {
  251. return this.colorTable.TitleRadius;
  252. }
  253. set
  254. {
  255. this.colorTable.TitleRadius = ((value < 1) ? 1 : value);
  256. this.PaintRenderer();
  257. }
  258. }
  259. [Category("Title"), Description("菜单标头圆角样式")]
  260. public RoundStyle TitleRadiusStyle
  261. {
  262. get
  263. {
  264. return this.colorTable.TitleRadiusStyle;
  265. }
  266. set
  267. {
  268. this.colorTable.TitleRadiusStyle = value;
  269. this.PaintRenderer();
  270. }
  271. }
  272. public SkinContextMenuStrip()
  273. {
  274. this.Init();
  275. this.colorTable = new ToolStripColorTable();
  276. this.PaintRenderer();
  277. }
  278. public void PaintRenderer()
  279. {
  280. if (base.RenderMode != ToolStripRenderMode.System)
  281. {
  282. base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
  283. }
  284. }
  285. protected override void OnRendererChanged(EventArgs e)
  286. {
  287. if (base.RenderMode == ToolStripRenderMode.ManagerRenderMode || base.RenderMode == ToolStripRenderMode.Professional)
  288. {
  289. base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
  290. }
  291. base.OnRendererChanged(e);
  292. }
  293. public void Init()
  294. {
  295. base.SetStyle(ControlStyles.ResizeRedraw, true);
  296. base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  297. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  298. base.SetStyle(ControlStyles.UserPaint, true);
  299. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  300. base.UpdateStyles();
  301. }
  302. }
  303. }