SkinLabel.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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(Label))]
  9. public class SkinLabel : Label
  10. {
  11. private ArtTextStyle _artTextStyle = ArtTextStyle.Border;
  12. private int _borderSize = 1;
  13. private Color _borderColor = Color.White;
  14. [Browsable(true), Category("Skin"), DefaultValue(typeof(ArtTextStyle), "1"), Description("字体样式(None:正常样式,Border:边框样式,Relievo:浮雕样式,Forme:印版样式,Anamorphosis:渐变样式)")]
  15. public ArtTextStyle ArtTextStyle
  16. {
  17. get
  18. {
  19. return this._artTextStyle;
  20. }
  21. set
  22. {
  23. if (this._artTextStyle != value)
  24. {
  25. this._artTextStyle = value;
  26. base.Invalidate();
  27. }
  28. }
  29. }
  30. [Browsable(true), Category("Skin"), DefaultValue(1), Description("样式效果宽度")]
  31. public int BorderSize
  32. {
  33. get
  34. {
  35. return this._borderSize;
  36. }
  37. set
  38. {
  39. if (this._borderSize != value)
  40. {
  41. this._borderSize = value;
  42. base.Invalidate();
  43. }
  44. }
  45. }
  46. [Browsable(true), Category("Skin"), DefaultValue(typeof(Color), "80, 0, 0, 0"), Description("样式效果颜色")]
  47. public Color BorderColor
  48. {
  49. get
  50. {
  51. return this._borderColor;
  52. }
  53. set
  54. {
  55. if (this._borderColor != value)
  56. {
  57. this._borderColor = value;
  58. base.Invalidate();
  59. }
  60. }
  61. }
  62. public SkinLabel()
  63. {
  64. this.SetStyles();
  65. this.Font = new Font("微软雅黑", 9f, FontStyle.Regular, GraphicsUnit.Point, 134);
  66. }
  67. protected override void OnPaint(PaintEventArgs e)
  68. {
  69. if (this.ArtTextStyle == ArtTextStyle.None)
  70. {
  71. base.OnPaint(e);
  72. return;
  73. }
  74. if (base.Text.Length == 0)
  75. {
  76. return;
  77. }
  78. this.RenderText(e.Graphics);
  79. }
  80. public string SetStrLeng(string txt, Font font, int width)
  81. {
  82. Size sizef = TextRenderer.MeasureText(txt, font);
  83. while (sizef.Width > width && txt.Length != 0)
  84. {
  85. txt = txt.Substring(0, txt.Length - 1);
  86. sizef = TextRenderer.MeasureText(txt, font);
  87. }
  88. return txt;
  89. }
  90. private void RenderText(Graphics g)
  91. {
  92. using (new TextRenderingHintGraphics(g))
  93. {
  94. PointF point = this.CalculateRenderTextStartPoint(g);
  95. switch (this._artTextStyle)
  96. {
  97. case ArtTextStyle.Border:
  98. this.RenderBordText(g, point);
  99. break;
  100. case ArtTextStyle.Relievo:
  101. this.RenderRelievoText(g, point);
  102. break;
  103. case ArtTextStyle.Forme:
  104. this.RenderFormeText(g, point);
  105. break;
  106. case ArtTextStyle.Anamorphosis:
  107. this.RenderAnamorphosisText(g, point);
  108. break;
  109. }
  110. }
  111. }
  112. private void RenderAnamorphosisText(Graphics g, PointF point)
  113. {
  114. using (new SolidBrush(base.ForeColor))
  115. {
  116. Rectangle rc = new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y)), base.ClientRectangle.Size);
  117. Image img = UpdateForm.ImageLightEffect(this.Text, base.Font, this.ForeColor, this.BorderColor, this.BorderSize, rc, !this.AutoSize);
  118. g.DrawImage(img, point.X - (float)(this.BorderSize / 2), point.Y - (float)(this.BorderSize / 2));
  119. }
  120. }
  121. private void RenderFormeText(Graphics g, PointF point)
  122. {
  123. StringFormat sf = new StringFormat(StringFormatFlags.NoWrap);
  124. sf.Trimming = (this.AutoSize ? StringTrimming.None : StringTrimming.EllipsisWord);
  125. Rectangle rc = new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y)), base.ClientRectangle.Size);
  126. using (Brush brush = new SolidBrush(this._borderColor))
  127. {
  128. for (int i = 1; i <= this._borderSize; i++)
  129. {
  130. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X - (float)i), Convert.ToInt32(point.Y + (float)i)), base.ClientRectangle.Size), sf);
  131. }
  132. }
  133. using (Brush brush2 = new SolidBrush(base.ForeColor))
  134. {
  135. g.DrawString(this.Text, this.Font, brush2, rc, sf);
  136. }
  137. }
  138. private void RenderRelievoText(Graphics g, PointF point)
  139. {
  140. StringFormat sf = new StringFormat(StringFormatFlags.NoWrap);
  141. sf.Trimming = (this.AutoSize ? StringTrimming.None : StringTrimming.EllipsisWord);
  142. Rectangle rc = new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y)), base.ClientRectangle.Size);
  143. using (Brush brush = new SolidBrush(this._borderColor))
  144. {
  145. for (int i = 1; i <= this._borderSize; i++)
  146. {
  147. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X + (float)i), Convert.ToInt32(point.Y)), base.ClientRectangle.Size), sf);
  148. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y + (float)i)), base.ClientRectangle.Size), sf);
  149. }
  150. }
  151. using (Brush brush2 = new SolidBrush(base.ForeColor))
  152. {
  153. g.DrawString(this.Text, base.Font, brush2, rc, sf);
  154. }
  155. }
  156. private void RenderBordText(Graphics g, PointF point)
  157. {
  158. StringFormat sf = new StringFormat(StringFormatFlags.NoWrap);
  159. sf.Trimming = (this.AutoSize ? StringTrimming.None : StringTrimming.EllipsisWord);
  160. Rectangle rc = new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y)), base.ClientRectangle.Size);
  161. using (Brush brush = new SolidBrush(this._borderColor))
  162. {
  163. for (int i = 1; i <= this._borderSize; i++)
  164. {
  165. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X - (float)i), Convert.ToInt32(point.Y)), base.ClientRectangle.Size), sf);
  166. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y - (float)i)), base.ClientRectangle.Size), sf);
  167. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X + (float)i), Convert.ToInt32(point.Y)), base.ClientRectangle.Size), sf);
  168. g.DrawString(this.Text, base.Font, brush, new Rectangle(new Point(Convert.ToInt32(point.X), Convert.ToInt32(point.Y + (float)i)), base.ClientRectangle.Size), sf);
  169. }
  170. }
  171. using (Brush brush2 = new SolidBrush(base.ForeColor))
  172. {
  173. g.DrawString(this.Text, base.Font, brush2, rc, sf);
  174. }
  175. }
  176. private PointF CalculateRenderTextStartPoint(Graphics g)
  177. {
  178. PointF point = PointF.Empty;
  179. SizeF textSize = g.MeasureString(base.Text, base.Font, PointF.Empty, StringFormat.GenericTypographic);
  180. if (this.AutoSize)
  181. {
  182. point.X = (float)base.Padding.Left;
  183. point.Y = (float)base.Padding.Top;
  184. }
  185. else
  186. {
  187. ContentAlignment align = base.TextAlign;
  188. if (align == ContentAlignment.TopLeft || align == ContentAlignment.MiddleLeft || align == ContentAlignment.BottomLeft)
  189. {
  190. point.X = (float)base.Padding.Left;
  191. }
  192. else
  193. {
  194. if (align == ContentAlignment.TopCenter || align == ContentAlignment.MiddleCenter || align == ContentAlignment.BottomCenter)
  195. {
  196. point.X = ((float)base.Width - textSize.Width) / 2f;
  197. }
  198. else
  199. {
  200. point.X = (float)base.Width - ((float)base.Padding.Right + textSize.Width);
  201. }
  202. }
  203. if (align == ContentAlignment.TopLeft || align == ContentAlignment.TopCenter || align == ContentAlignment.TopRight)
  204. {
  205. point.Y = (float)base.Padding.Top;
  206. }
  207. else
  208. {
  209. if (align == ContentAlignment.MiddleLeft || align == ContentAlignment.MiddleCenter || align == ContentAlignment.MiddleRight)
  210. {
  211. point.Y = ((float)base.Height - textSize.Height) / 2f;
  212. }
  213. else
  214. {
  215. point.Y = (float)base.Height - ((float)base.Padding.Bottom + textSize.Height);
  216. }
  217. }
  218. }
  219. return point;
  220. }
  221. private void SetStyles()
  222. {
  223. base.SetStyle(ControlStyles.ResizeRedraw, true);
  224. base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  225. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  226. base.SetStyle(ControlStyles.UserPaint, true);
  227. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  228. base.ResizeRedraw = true;
  229. this.BackColor = Color.Transparent;
  230. base.UpdateStyles();
  231. }
  232. }
  233. }