ControlPaintEx.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. using LYFZ.OtherExpansion.SkinClass;
  2. using System;
  3. using System.Drawing;
  4. using System.Drawing.Drawing2D;
  5. using System.Drawing.Imaging;
  6. using System.Windows.Forms;
  7. namespace LYFZ.OtherExpansion.SkinControl
  8. {
  9. public sealed class ControlPaintEx
  10. {
  11. private ControlPaintEx()
  12. {
  13. }
  14. public static void DrawCheckedFlag(Graphics g, Rectangle rect, Color color)
  15. {
  16. PointF[] points = new PointF[]
  17. {
  18. new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
  19. new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
  20. new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
  21. };
  22. using (Pen pen = new Pen(color, 2f))
  23. {
  24. g.DrawLines(pen, points);
  25. }
  26. }
  27. public static void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
  28. {
  29. ControlPaintEx.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
  30. }
  31. public static void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
  32. {
  33. using (GraphicsPath path = new GraphicsPath())
  34. {
  35. path.AddEllipse(glassRect);
  36. using (PathGradientBrush brush = new PathGradientBrush(path))
  37. {
  38. brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
  39. brush.SurroundColors = new Color[]
  40. {
  41. Color.FromArgb(alphaSurround, glassColor)
  42. };
  43. brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
  44. g.FillPath(brush, path);
  45. }
  46. }
  47. }
  48. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect)
  49. {
  50. ControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, Point.Empty, RightToLeft.No);
  51. }
  52. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset)
  53. {
  54. ControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, scrollOffset, RightToLeft.No);
  55. }
  56. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
  57. {
  58. if (g == null)
  59. {
  60. throw new ArgumentNullException("g");
  61. }
  62. if (backgroundImageLayout == ImageLayout.Tile)
  63. {
  64. using (TextureBrush brush = new TextureBrush(backgroundImage, WrapMode.Tile))
  65. {
  66. if (scrollOffset != Point.Empty)
  67. {
  68. Matrix transform = brush.Transform;
  69. transform.Translate((float)scrollOffset.X, (float)scrollOffset.Y);
  70. brush.Transform = transform;
  71. }
  72. g.FillRectangle(brush, clipRect);
  73. return;
  74. }
  75. }
  76. Rectangle rect = ControlPaintEx.CalculateBackgroundImageRectangle(bounds, backgroundImage, backgroundImageLayout);
  77. if (rightToLeft == RightToLeft.Yes && backgroundImageLayout == ImageLayout.None)
  78. {
  79. rect.X += clipRect.Width - rect.Width;
  80. }
  81. using (SolidBrush brush2 = new SolidBrush(backColor))
  82. {
  83. g.FillRectangle(brush2, clipRect);
  84. }
  85. if (!clipRect.Contains(rect))
  86. {
  87. if (backgroundImageLayout == ImageLayout.Stretch || backgroundImageLayout == ImageLayout.Zoom)
  88. {
  89. rect.Intersect(clipRect);
  90. g.DrawImage(backgroundImage, rect);
  91. return;
  92. }
  93. if (backgroundImageLayout == ImageLayout.None)
  94. {
  95. rect.Offset(clipRect.Location);
  96. Rectangle destRect = rect;
  97. destRect.Intersect(clipRect);
  98. Rectangle rectangle3 = new Rectangle(Point.Empty, destRect.Size);
  99. g.DrawImage(backgroundImage, destRect, rectangle3.X, rectangle3.Y, rectangle3.Width, rectangle3.Height, GraphicsUnit.Pixel);
  100. return;
  101. }
  102. Rectangle rectangle4 = rect;
  103. rectangle4.Intersect(clipRect);
  104. Rectangle rectangle5 = new Rectangle(new Point(rectangle4.X - rect.X, rectangle4.Y - rect.Y), rectangle4.Size);
  105. g.DrawImage(backgroundImage, rectangle4, rectangle5.X, rectangle5.Y, rectangle5.Width, rectangle5.Height, GraphicsUnit.Pixel);
  106. return;
  107. }
  108. else
  109. {
  110. ImageAttributes imageAttr = new ImageAttributes();
  111. imageAttr.SetWrapMode(WrapMode.TileFlipXY);
  112. g.DrawImage(backgroundImage, rect, 0, 0, backgroundImage.Width, backgroundImage.Height, GraphicsUnit.Pixel, imageAttr);
  113. imageAttr.Dispose();
  114. }
  115. }
  116. public static void DrawScrollBarTrack(Graphics g, Rectangle rect, Color begin, Color end, Orientation orientation)
  117. {
  118. LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  119. Blend blend = new Blend();
  120. Blend arg_2D_0 = blend;
  121. float[] array = new float[3];
  122. array[0] = 1f;
  123. array[1] = 0.5f;
  124. arg_2D_0.Factors = array;
  125. blend.Positions = new float[]
  126. {
  127. 0f,
  128. 0.5f,
  129. 1f
  130. };
  131. ControlPaintEx.DrawGradientRect(g, rect, begin, end, begin, begin, blend, mode, true, false);
  132. }
  133. public static void DrawScrollBarThumb(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Orientation orientation, bool changeColor)
  134. {
  135. if (changeColor)
  136. {
  137. Color tmp = begin;
  138. begin = end;
  139. end = tmp;
  140. }
  141. bool bHorizontal = orientation == Orientation.Horizontal;
  142. LinearGradientMode mode = bHorizontal ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  143. Blend blend = new Blend();
  144. Blend arg_3D_0 = blend;
  145. float[] array = new float[3];
  146. array[0] = 1f;
  147. array[1] = 0.5f;
  148. arg_3D_0.Factors = array;
  149. blend.Positions = new float[]
  150. {
  151. 0f,
  152. 0.5f,
  153. 1f
  154. };
  155. if (bHorizontal)
  156. {
  157. rect.Inflate(0, -1);
  158. }
  159. else
  160. {
  161. rect.Inflate(-1, 0);
  162. }
  163. ControlPaintEx.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
  164. }
  165. public static void DrawScrollBarArraw(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Color fore, Orientation orientation, ArrowDirection arrowDirection, bool changeColor)
  166. {
  167. if (changeColor)
  168. {
  169. Color tmp = begin;
  170. begin = end;
  171. end = tmp;
  172. }
  173. LinearGradientMode mode = (orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  174. rect.Inflate(-1, -1);
  175. Blend blend = new Blend();
  176. Blend arg_46_0 = blend;
  177. float[] array = new float[3];
  178. array[0] = 1f;
  179. array[1] = 0.5f;
  180. arg_46_0.Factors = array;
  181. blend.Positions = new float[]
  182. {
  183. 0f,
  184. 0.5f,
  185. 1f
  186. };
  187. ControlPaintEx.DrawGradientRoundRect(g, rect, begin, end, border, innerBorder, blend, mode, 4, RoundStyle.All, true, true);
  188. using (SolidBrush brush = new SolidBrush(fore))
  189. {
  190. RenderHelper.RenderArrowInternal(g, rect, arrowDirection, brush);
  191. }
  192. }
  193. public static void DrawScrollBarSizer(Graphics g, Rectangle rect, Color begin, Color end)
  194. {
  195. Blend blend = new Blend();
  196. Blend arg_1F_0 = blend;
  197. float[] array = new float[3];
  198. array[0] = 1f;
  199. array[1] = 0.5f;
  200. arg_1F_0.Factors = array;
  201. blend.Positions = new float[]
  202. {
  203. 0f,
  204. 0.5f,
  205. 1f
  206. };
  207. ControlPaintEx.DrawGradientRect(g, rect, begin, end, begin, begin, blend, LinearGradientMode.Horizontal, true, false);
  208. }
  209. internal static void DrawGradientRect(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Blend blend, LinearGradientMode mode, bool drawBorder, bool drawInnerBorder)
  210. {
  211. using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
  212. {
  213. brush.Blend = blend;
  214. g.FillRectangle(brush, rect);
  215. }
  216. if (drawBorder)
  217. {
  218. ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
  219. }
  220. if (drawInnerBorder)
  221. {
  222. rect.Inflate(-1, -1);
  223. ControlPaint.DrawBorder(g, rect, border, ButtonBorderStyle.Solid);
  224. }
  225. }
  226. internal static void DrawGradientRoundRect(Graphics g, Rectangle rect, Color begin, Color end, Color border, Color innerBorder, Blend blend, LinearGradientMode mode, int radios, RoundStyle roundStyle, bool drawBorder, bool drawInnderBorder)
  227. {
  228. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
  229. {
  230. using (LinearGradientBrush brush = new LinearGradientBrush(rect, begin, end, mode))
  231. {
  232. brush.Blend = blend;
  233. g.FillPath(brush, path);
  234. }
  235. if (drawBorder)
  236. {
  237. using (Pen pen = new Pen(border))
  238. {
  239. g.DrawPath(pen, path);
  240. }
  241. }
  242. }
  243. if (drawInnderBorder)
  244. {
  245. rect.Inflate(-1, -1);
  246. using (GraphicsPath path2 = GraphicsPathHelper.CreatePath(rect, radios, roundStyle, true))
  247. {
  248. using (Pen pen2 = new Pen(innerBorder))
  249. {
  250. g.DrawPath(pen2, path2);
  251. }
  252. }
  253. }
  254. }
  255. internal static Rectangle CalculateBackgroundImageRectangle(Rectangle bounds, Image backgroundImage, ImageLayout imageLayout)
  256. {
  257. Rectangle rectangle = bounds;
  258. if (backgroundImage != null)
  259. {
  260. switch (imageLayout)
  261. {
  262. case ImageLayout.None:
  263. rectangle.Size = backgroundImage.Size;
  264. return rectangle;
  265. case ImageLayout.Tile:
  266. return rectangle;
  267. case ImageLayout.Center:
  268. {
  269. rectangle.Size = backgroundImage.Size;
  270. Size size = bounds.Size;
  271. if (size.Width > rectangle.Width)
  272. {
  273. rectangle.X = (size.Width - rectangle.Width) / 2;
  274. }
  275. if (size.Height > rectangle.Height)
  276. {
  277. rectangle.Y = (size.Height - rectangle.Height) / 2;
  278. }
  279. return rectangle;
  280. }
  281. case ImageLayout.Stretch:
  282. rectangle.Size = bounds.Size;
  283. return rectangle;
  284. case ImageLayout.Zoom:
  285. {
  286. Size size2 = backgroundImage.Size;
  287. float num = (float)bounds.Width / (float)size2.Width;
  288. float num2 = (float)bounds.Height / (float)size2.Height;
  289. if (num >= num2)
  290. {
  291. rectangle.Height = bounds.Height;
  292. rectangle.Width = (int)((double)((float)size2.Width * num2) + 0.5);
  293. if (bounds.X >= 0)
  294. {
  295. rectangle.X = (bounds.Width - rectangle.Width) / 2;
  296. }
  297. return rectangle;
  298. }
  299. rectangle.Width = bounds.Width;
  300. rectangle.Height = (int)((double)((float)size2.Height * num) + 0.5);
  301. if (bounds.Y >= 0)
  302. {
  303. rectangle.Y = (bounds.Height - rectangle.Height) / 2;
  304. }
  305. return rectangle;
  306. }
  307. }
  308. }
  309. return rectangle;
  310. }
  311. }
  312. }