CmbControlPaintEx.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Drawing2D;
  4. using System.Drawing.Imaging;
  5. using System.Windows.Forms;
  6. namespace LYFZ.OtherExpansion.SkinControl
  7. {
  8. public sealed class CmbControlPaintEx
  9. {
  10. public static void DrawCheckedFlag(Graphics graphics, Rectangle rect, Color color)
  11. {
  12. PointF[] points = new PointF[]
  13. {
  14. new PointF((float)rect.X + (float)rect.Width / 4.5f, (float)rect.Y + (float)rect.Height / 2.5f),
  15. new PointF((float)rect.X + (float)rect.Width / 2.5f, (float)rect.Bottom - (float)rect.Height / 3f),
  16. new PointF((float)rect.Right - (float)rect.Width / 4f, (float)rect.Y + (float)rect.Height / 4.5f)
  17. };
  18. using (Pen pen = new Pen(color, 2f))
  19. {
  20. graphics.DrawLines(pen, points);
  21. }
  22. }
  23. public static void DrawGlass(Graphics g, RectangleF glassRect, int alphaCenter, int alphaSurround)
  24. {
  25. CmbControlPaintEx.DrawGlass(g, glassRect, Color.White, alphaCenter, alphaSurround);
  26. }
  27. public static void DrawGlass(Graphics g, RectangleF glassRect, Color glassColor, int alphaCenter, int alphaSurround)
  28. {
  29. using (GraphicsPath path = new GraphicsPath())
  30. {
  31. path.AddEllipse(glassRect);
  32. using (PathGradientBrush brush = new PathGradientBrush(path))
  33. {
  34. brush.CenterColor = Color.FromArgb(alphaCenter, glassColor);
  35. brush.SurroundColors = new Color[]
  36. {
  37. Color.FromArgb(alphaSurround, glassColor)
  38. };
  39. brush.CenterPoint = new PointF(glassRect.X + glassRect.Width / 2f, glassRect.Y + glassRect.Height / 2f);
  40. g.FillPath(brush, path);
  41. }
  42. }
  43. }
  44. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect)
  45. {
  46. CmbControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, Point.Empty, RightToLeft.No);
  47. }
  48. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset)
  49. {
  50. CmbControlPaintEx.DrawBackgroundImage(g, backgroundImage, backColor, backgroundImageLayout, bounds, clipRect, scrollOffset, RightToLeft.No);
  51. }
  52. public static void DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
  53. {
  54. if (g == null)
  55. {
  56. throw new ArgumentNullException("g");
  57. }
  58. if (backgroundImageLayout == ImageLayout.Tile)
  59. {
  60. using (TextureBrush brush = new TextureBrush(backgroundImage, WrapMode.Tile))
  61. {
  62. if (scrollOffset != Point.Empty)
  63. {
  64. Matrix transform = brush.Transform;
  65. transform.Translate((float)scrollOffset.X, (float)scrollOffset.Y);
  66. brush.Transform = transform;
  67. }
  68. g.FillRectangle(brush, clipRect);
  69. return;
  70. }
  71. }
  72. Rectangle rect = CmbControlPaintEx.CalculateBackgroundImageRectangle(bounds, backgroundImage, backgroundImageLayout);
  73. if (rightToLeft == RightToLeft.Yes && backgroundImageLayout == ImageLayout.None)
  74. {
  75. rect.X += clipRect.Width - rect.Width;
  76. }
  77. using (SolidBrush brush2 = new SolidBrush(backColor))
  78. {
  79. g.FillRectangle(brush2, clipRect);
  80. }
  81. if (!clipRect.Contains(rect))
  82. {
  83. if (backgroundImageLayout == ImageLayout.Stretch || backgroundImageLayout == ImageLayout.Zoom)
  84. {
  85. rect.Intersect(clipRect);
  86. g.DrawImage(backgroundImage, rect);
  87. return;
  88. }
  89. if (backgroundImageLayout == ImageLayout.None)
  90. {
  91. rect.Offset(clipRect.Location);
  92. Rectangle destRect = rect;
  93. destRect.Intersect(clipRect);
  94. Rectangle rectangle3 = new Rectangle(Point.Empty, destRect.Size);
  95. g.DrawImage(backgroundImage, destRect, rectangle3.X, rectangle3.Y, rectangle3.Width, rectangle3.Height, GraphicsUnit.Pixel);
  96. return;
  97. }
  98. Rectangle rectangle4 = rect;
  99. rectangle4.Intersect(clipRect);
  100. Rectangle rectangle5 = new Rectangle(new Point(rectangle4.X - rect.X, rectangle4.Y - rect.Y), rectangle4.Size);
  101. g.DrawImage(backgroundImage, rectangle4, rectangle5.X, rectangle5.Y, rectangle5.Width, rectangle5.Height, GraphicsUnit.Pixel);
  102. return;
  103. }
  104. else
  105. {
  106. ImageAttributes imageAttr = new ImageAttributes();
  107. imageAttr.SetWrapMode(WrapMode.TileFlipXY);
  108. g.DrawImage(backgroundImage, rect, 0, 0, backgroundImage.Width, backgroundImage.Height, GraphicsUnit.Pixel, imageAttr);
  109. imageAttr.Dispose();
  110. }
  111. }
  112. internal static Rectangle CalculateBackgroundImageRectangle(Rectangle bounds, Image backgroundImage, ImageLayout imageLayout)
  113. {
  114. Rectangle rectangle = bounds;
  115. if (backgroundImage != null)
  116. {
  117. switch (imageLayout)
  118. {
  119. case ImageLayout.None:
  120. rectangle.Size = backgroundImage.Size;
  121. return rectangle;
  122. case ImageLayout.Tile:
  123. return rectangle;
  124. case ImageLayout.Center:
  125. {
  126. rectangle.Size = backgroundImage.Size;
  127. Size size = bounds.Size;
  128. if (size.Width > rectangle.Width)
  129. {
  130. rectangle.X = (size.Width - rectangle.Width) / 2;
  131. }
  132. if (size.Height > rectangle.Height)
  133. {
  134. rectangle.Y = (size.Height - rectangle.Height) / 2;
  135. }
  136. return rectangle;
  137. }
  138. case ImageLayout.Stretch:
  139. rectangle.Size = bounds.Size;
  140. return rectangle;
  141. case ImageLayout.Zoom:
  142. {
  143. Size size2 = backgroundImage.Size;
  144. float num = (float)bounds.Width / (float)size2.Width;
  145. float num2 = (float)bounds.Height / (float)size2.Height;
  146. if (num >= num2)
  147. {
  148. rectangle.Height = bounds.Height;
  149. rectangle.Width = (int)((double)((float)size2.Width * num2) + 0.5);
  150. if (bounds.X >= 0)
  151. {
  152. rectangle.X = (bounds.Width - rectangle.Width) / 2;
  153. }
  154. return rectangle;
  155. }
  156. rectangle.Width = bounds.Width;
  157. rectangle.Height = (int)((double)((float)size2.Height * num) + 0.5);
  158. if (bounds.Y >= 0)
  159. {
  160. rectangle.Y = (bounds.Height - rectangle.Height) / 2;
  161. }
  162. return rectangle;
  163. }
  164. }
  165. }
  166. return rectangle;
  167. }
  168. }
  169. }