SkinToolStrip.cs 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  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(ToolStrip))]
  9. public class SkinToolStrip : ToolStrip
  10. {
  11. private ToolStripColorTable colorTable;
  12. [Category("Base"), Description("九宫绘画区域")]
  13. public Rectangle BackRectangle
  14. {
  15. get
  16. {
  17. return this.colorTable.BackRectangle;
  18. }
  19. set
  20. {
  21. this.colorTable.BackRectangle = value;
  22. this.PaintRenderer();
  23. }
  24. }
  25. [Category("Base"), Description("BaseItem悬浮时背景图")]
  26. public Image BaseItemMouse
  27. {
  28. get
  29. {
  30. return this.colorTable.BaseItemMouse;
  31. }
  32. set
  33. {
  34. this.colorTable.BaseItemMouse = value;
  35. this.PaintRenderer();
  36. }
  37. }
  38. [Category("Base"), Description("BaseItem按下时背景图")]
  39. public Image BaseItemDown
  40. {
  41. get
  42. {
  43. return this.colorTable.BaseItemDown;
  44. }
  45. set
  46. {
  47. this.colorTable.BaseItemDown = value;
  48. this.PaintRenderer();
  49. }
  50. }
  51. [Category("Base"), Description("BaseItem字体是否有辉光效果")]
  52. public bool BaseForeAnamorphosis
  53. {
  54. get
  55. {
  56. return this.colorTable.BaseForeAnamorphosis;
  57. }
  58. set
  59. {
  60. this.colorTable.BaseForeAnamorphosis = value;
  61. this.PaintRenderer();
  62. }
  63. }
  64. [Category("Base"), Description("BaseItem辉光字体光圈大小")]
  65. public int BaseForeAnamorphosisBorder
  66. {
  67. get
  68. {
  69. return this.colorTable.BaseForeAnamorphosisBorder;
  70. }
  71. set
  72. {
  73. this.colorTable.BaseForeAnamorphosisBorder = value;
  74. this.PaintRenderer();
  75. }
  76. }
  77. [Category("Base"), Description("BaseItem辉光字体光圈颜色")]
  78. public Color BaseForeAnamorphosisColor
  79. {
  80. get
  81. {
  82. return this.colorTable.BaseForeAnamorphosisColor;
  83. }
  84. set
  85. {
  86. this.colorTable.BaseForeAnamorphosisColor = value;
  87. this.PaintRenderer();
  88. }
  89. }
  90. [Category("Base"), Description("BaseItem分隔符颜色")]
  91. public Color BaseItemSplitter
  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("Base"), Description("BaseItem点击时颜色")]
  104. public Color BaseItemPressed
  105. {
  106. get
  107. {
  108. return this.colorTable.BaseItemPressed;
  109. }
  110. set
  111. {
  112. this.colorTable.BaseItemPressed = value;
  113. this.PaintRenderer();
  114. }
  115. }
  116. [Category("Base"), Description("BaseItem悬浮时颜色")]
  117. public Color BaseItemHover
  118. {
  119. get
  120. {
  121. return this.colorTable.BaseItemHover;
  122. }
  123. set
  124. {
  125. this.colorTable.BaseItemHover = value;
  126. this.PaintRenderer();
  127. }
  128. }
  129. [Category("Base"), Description("BaseItem边框颜色")]
  130. public Color BaseItemBorder
  131. {
  132. get
  133. {
  134. return this.colorTable.BaseItemBorder;
  135. }
  136. set
  137. {
  138. this.colorTable.BaseItemBorder = value;
  139. this.PaintRenderer();
  140. }
  141. }
  142. [Category("Base"), Description("BaseItem是否显示边框")]
  143. public bool BaseItemBorderShow
  144. {
  145. get
  146. {
  147. return this.colorTable.BaseItemBorderShow;
  148. }
  149. set
  150. {
  151. this.colorTable.BaseItemBorderShow = value;
  152. this.PaintRenderer();
  153. }
  154. }
  155. [Category("Base"), Description("颜色绘制BaseItem时,是否启用颜色渐变效果")]
  156. public bool BaseItemAnamorphosis
  157. {
  158. get
  159. {
  160. return this.colorTable.BaseItemAnamorphosis;
  161. }
  162. set
  163. {
  164. this.colorTable.BaseItemAnamorphosis = value;
  165. this.PaintRenderer();
  166. }
  167. }
  168. [Category("Base"), Description("Base圆角大小")]
  169. public int BaseItemRadius
  170. {
  171. get
  172. {
  173. return this.colorTable.BaseItemRadius;
  174. }
  175. set
  176. {
  177. this.colorTable.BaseItemRadius = ((value < 1) ? 1 : value);
  178. this.PaintRenderer();
  179. }
  180. }
  181. [Category("Base"), Description("Base圆角样式")]
  182. public RoundStyle BaseItemRadiusStyle
  183. {
  184. get
  185. {
  186. return this.colorTable.BaseItemRadiusStyle;
  187. }
  188. set
  189. {
  190. this.colorTable.BaseItemRadiusStyle = value;
  191. this.PaintRenderer();
  192. }
  193. }
  194. [Category("Base"), Description("Base字体颜色")]
  195. public Color BaseFore
  196. {
  197. get
  198. {
  199. return this.colorTable.BaseFore;
  200. }
  201. set
  202. {
  203. this.colorTable.BaseFore = value;
  204. this.PaintRenderer();
  205. }
  206. }
  207. [Category("Base"), Description("Base悬浮时字体颜色")]
  208. public Color BaseHoverFore
  209. {
  210. get
  211. {
  212. return this.colorTable.BaseHoverFore;
  213. }
  214. set
  215. {
  216. this.colorTable.BaseHoverFore = value;
  217. this.PaintRenderer();
  218. }
  219. }
  220. [Category("Skin"), Description("箭头颜色")]
  221. public Color Arrow
  222. {
  223. get
  224. {
  225. return this.colorTable.Arrow;
  226. }
  227. set
  228. {
  229. this.colorTable.Arrow = value;
  230. this.PaintRenderer();
  231. }
  232. }
  233. [Category("Base"), Description("Base背景颜色")]
  234. public Color Base
  235. {
  236. get
  237. {
  238. return this.colorTable.Base;
  239. }
  240. set
  241. {
  242. this.colorTable.Base = value;
  243. this.PaintRenderer();
  244. }
  245. }
  246. [Category("Item"), Description("Item边框颜色")]
  247. public Color ItemBorder
  248. {
  249. get
  250. {
  251. return this.colorTable.ItemBorder;
  252. }
  253. set
  254. {
  255. this.colorTable.ItemBorder = value;
  256. this.PaintRenderer();
  257. }
  258. }
  259. [Category("Item"), Description("Item圆角样式")]
  260. public RoundStyle ItemRadiusStyle
  261. {
  262. get
  263. {
  264. return this.colorTable.ItemRadiusStyle;
  265. }
  266. set
  267. {
  268. this.colorTable.ItemRadiusStyle = value;
  269. this.PaintRenderer();
  270. }
  271. }
  272. [Category("Item"), Description("Item圆角大小")]
  273. public int ItemRadius
  274. {
  275. get
  276. {
  277. return this.colorTable.ItemRadius;
  278. }
  279. set
  280. {
  281. this.colorTable.ItemRadius = ((value < 1) ? 1 : value);
  282. this.PaintRenderer();
  283. }
  284. }
  285. [Category("Skin"), Description("控件背景色")]
  286. public Color Back
  287. {
  288. get
  289. {
  290. return this.colorTable.Back;
  291. }
  292. set
  293. {
  294. this.colorTable.Back = value;
  295. this.PaintRenderer();
  296. }
  297. }
  298. [Category("Item"), Description("Item悬浮时背景色")]
  299. public Color ItemHover
  300. {
  301. get
  302. {
  303. return this.colorTable.ItemHover;
  304. }
  305. set
  306. {
  307. this.colorTable.ItemHover = value;
  308. this.PaintRenderer();
  309. }
  310. }
  311. [Category("Item"), Description("Item按下时背景色")]
  312. public Color ItemPressed
  313. {
  314. get
  315. {
  316. return this.colorTable.ItemPressed;
  317. }
  318. set
  319. {
  320. this.colorTable.ItemPressed = value;
  321. this.PaintRenderer();
  322. }
  323. }
  324. [Category("Item"), Description("Item是否启用渐变")]
  325. public bool ItemAnamorphosis
  326. {
  327. get
  328. {
  329. return this.colorTable.ItemAnamorphosis;
  330. }
  331. set
  332. {
  333. this.colorTable.ItemAnamorphosis = value;
  334. this.PaintRenderer();
  335. }
  336. }
  337. [Category("Item"), Description("Item背景色是否启用渐变")]
  338. public bool ItemBorderShow
  339. {
  340. get
  341. {
  342. return this.colorTable.ItemBorderShow;
  343. }
  344. set
  345. {
  346. this.colorTable.ItemBorderShow = value;
  347. this.PaintRenderer();
  348. }
  349. }
  350. [Category("Skin"), Description("控件字体颜色")]
  351. public Color Fore
  352. {
  353. get
  354. {
  355. return this.colorTable.Fore;
  356. }
  357. set
  358. {
  359. this.colorTable.Fore = value;
  360. this.PaintRenderer();
  361. }
  362. }
  363. [Category("Skin"), Description("控件悬浮时字体颜色")]
  364. public Color HoverFore
  365. {
  366. get
  367. {
  368. return this.colorTable.HoverFore;
  369. }
  370. set
  371. {
  372. this.colorTable.HoverFore = value;
  373. this.PaintRenderer();
  374. }
  375. }
  376. [Category("Skin"), Description("弹出菜单分隔符与边框的颜色")]
  377. public Color DropDownImageSeparator
  378. {
  379. get
  380. {
  381. return this.colorTable.DropDownImageSeparator;
  382. }
  383. set
  384. {
  385. this.colorTable.DropDownImageSeparator = value;
  386. this.PaintRenderer();
  387. }
  388. }
  389. [Category("Skin"), Description("控件圆角大小")]
  390. public int BackRadius
  391. {
  392. get
  393. {
  394. return this.colorTable.BackRadius;
  395. }
  396. set
  397. {
  398. this.colorTable.BackRadius = ((value < 1) ? 1 : value);
  399. this.PaintRenderer();
  400. }
  401. }
  402. [Category("Skin"), Description("控件圆角样式")]
  403. public RoundStyle RadiusStyle
  404. {
  405. get
  406. {
  407. return this.colorTable.RadiusStyle;
  408. }
  409. set
  410. {
  411. this.colorTable.RadiusStyle = value;
  412. this.PaintRenderer();
  413. }
  414. }
  415. [Category("Title"), Description("菜单标头背景色")]
  416. public Color TitleColor
  417. {
  418. get
  419. {
  420. return this.colorTable.TitleColor;
  421. }
  422. set
  423. {
  424. this.colorTable.TitleColor = value;
  425. this.PaintRenderer();
  426. }
  427. }
  428. [Category("Title"), Description("菜单标头背景色是否启用渐变")]
  429. public bool TitleAnamorphosis
  430. {
  431. get
  432. {
  433. return this.colorTable.TitleAnamorphosis;
  434. }
  435. set
  436. {
  437. this.colorTable.TitleAnamorphosis = value;
  438. this.PaintRenderer();
  439. }
  440. }
  441. [Category("Title"), Description("菜单标头圆角大小")]
  442. public int TitleRadius
  443. {
  444. get
  445. {
  446. return this.colorTable.TitleRadius;
  447. }
  448. set
  449. {
  450. this.colorTable.TitleRadius = ((value < 1) ? 1 : value);
  451. this.PaintRenderer();
  452. }
  453. }
  454. [Category("Title"), Description("菜单标头圆角样式")]
  455. public RoundStyle TitleRadiusStyle
  456. {
  457. get
  458. {
  459. return this.colorTable.TitleRadiusStyle;
  460. }
  461. set
  462. {
  463. this.colorTable.TitleRadiusStyle = value;
  464. this.PaintRenderer();
  465. }
  466. }
  467. public SkinToolStrip()
  468. {
  469. this.Init();
  470. this.colorTable = new ToolStripColorTable();
  471. this.PaintRenderer();
  472. }
  473. public void PaintRenderer()
  474. {
  475. if (base.RenderMode != ToolStripRenderMode.System)
  476. {
  477. base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
  478. }
  479. }
  480. protected override void OnRendererChanged(EventArgs e)
  481. {
  482. if (base.RenderMode == ToolStripRenderMode.ManagerRenderMode || base.RenderMode == ToolStripRenderMode.Professional)
  483. {
  484. base.Renderer = new ProfessionalToolStripRendererEx(this.colorTable);
  485. }
  486. base.OnRendererChanged(e);
  487. }
  488. public void Init()
  489. {
  490. base.SetStyle(ControlStyles.ResizeRedraw, true);
  491. base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  492. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  493. base.SetStyle(ControlStyles.UserPaint, true);
  494. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  495. base.UpdateStyles();
  496. }
  497. }
  498. }