TextProgressBarControl.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. using System;
  2. using System.ComponentModel;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. namespace QVCopier.Components.TextProgressBar
  6. {
  7. public class TextProgressBarControl : ProgressBar
  8. {
  9. private TextProgressBarDisplayMode _visualMode = TextProgressBarDisplayMode.CurrProgress;
  10. private readonly StringFormat _stringFormat = new() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center };
  11. private string _text = string.Empty;
  12. private ContentAlignment _textAlign = ContentAlignment.MiddleCenter;
  13. [Category("Additional Options"), Browsable(true)]
  14. public TextProgressBarDisplayMode VisualMode
  15. {
  16. get => _visualMode;
  17. set
  18. {
  19. _visualMode = value;
  20. Invalidate();//redraw component after change value from VS Properties section
  21. }
  22. }
  23. [DefaultValue(ContentAlignment.MiddleCenter), Browsable(true)]
  24. public virtual ContentAlignment TextAlign
  25. {
  26. get => _textAlign;
  27. set
  28. {
  29. _textAlign = value;
  30. switch (value)
  31. {
  32. case ContentAlignment.TopLeft:
  33. _stringFormat.LineAlignment = StringAlignment.Near;
  34. _stringFormat.Alignment = StringAlignment.Near;
  35. break;
  36. case ContentAlignment.TopCenter:
  37. _stringFormat.LineAlignment = StringAlignment.Near;
  38. _stringFormat.Alignment = StringAlignment.Center;
  39. break;
  40. case ContentAlignment.TopRight:
  41. _stringFormat.LineAlignment = StringAlignment.Near;
  42. _stringFormat.Alignment = StringAlignment.Far;
  43. break;
  44. case ContentAlignment.MiddleLeft:
  45. _stringFormat.LineAlignment = StringAlignment.Center;
  46. _stringFormat.Alignment = StringAlignment.Near;
  47. break;
  48. case ContentAlignment.MiddleCenter:
  49. _stringFormat.LineAlignment = StringAlignment.Center;
  50. _stringFormat.Alignment = StringAlignment.Center;
  51. break;
  52. case ContentAlignment.MiddleRight:
  53. _stringFormat.LineAlignment = StringAlignment.Center;
  54. _stringFormat.Alignment = StringAlignment.Far;
  55. break;
  56. case ContentAlignment.BottomLeft:
  57. _stringFormat.LineAlignment = StringAlignment.Far;
  58. _stringFormat.Alignment = StringAlignment.Near;
  59. break;
  60. case ContentAlignment.BottomCenter:
  61. _stringFormat.LineAlignment = StringAlignment.Far;
  62. _stringFormat.Alignment = StringAlignment.Center;
  63. break;
  64. case ContentAlignment.BottomRight:
  65. _stringFormat.LineAlignment = StringAlignment.Far;
  66. _stringFormat.Alignment = StringAlignment.Far;
  67. break;
  68. default:
  69. throw new ArgumentOutOfRangeException(nameof(value), value, null);
  70. }
  71. Invalidate();//redraw component after change value from VS Properties section
  72. }
  73. }
  74. [Description("If it's empty, % will be shown"), Category("Additional Options"), Browsable(true), EditorBrowsable(EditorBrowsableState.Always)]
  75. public string CustomText
  76. {
  77. get => _text;
  78. set
  79. {
  80. _text = value;
  81. Invalidate();//redraw component after change value from VS Properties section
  82. }
  83. }
  84. private string TextToDraw
  85. {
  86. get
  87. {
  88. var text = CustomText;
  89. switch (VisualMode)
  90. {
  91. case TextProgressBarDisplayMode.Percentage:
  92. text = PercentageStr;
  93. break;
  94. case TextProgressBarDisplayMode.CurrProgress:
  95. text = CurrProgressStr;
  96. break;
  97. case TextProgressBarDisplayMode.TextAndCurrProgress:
  98. text = $"{CustomText}: {CurrProgressStr}";
  99. break;
  100. case TextProgressBarDisplayMode.TextAndPercentage:
  101. text = $"{CustomText}: {PercentageStr}";
  102. break;
  103. }
  104. return text;
  105. }
  106. }
  107. private string PercentageStr => $"{(int)((float)Value - Minimum) / ((float)Maximum - Minimum) * 100 } %";
  108. private string CurrProgressStr => $"{Value}/{Maximum}";
  109. public TextProgressBarControl()
  110. {
  111. Value = Minimum;
  112. FixComponentBlinking();
  113. }
  114. private void FixComponentBlinking()
  115. {
  116. SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
  117. }
  118. protected override void OnPaint(PaintEventArgs e)
  119. {
  120. var g = e.Graphics;
  121. using var brush = new SolidBrush(ForeColor);
  122. var rect = ClientRectangle;
  123. ProgressBarRenderer.DrawHorizontalBar(g, rect);
  124. rect.Inflate(-3, -3);
  125. var progressBarRect = new Rectangle(rect.X, rect.Y, (int)Math.Round((float)Value / Maximum * rect.Width), rect.Height);
  126. if (Value > 0)
  127. {
  128. g.FillRectangle(brush, progressBarRect);
  129. }
  130. if (VisualMode != TextProgressBarDisplayMode.NoText)
  131. {
  132. void DrawText(Color c)
  133. {
  134. using var br = new SolidBrush(c);
  135. g.DrawString(TextToDraw, Font, br, rect, _stringFormat);
  136. }
  137. g.SetClip(rect);
  138. DrawText(ForeColor);
  139. g.ResetClip();
  140. g.SetClip(progressBarRect);
  141. DrawText(BackColor);
  142. g.ResetClip();
  143. }
  144. }
  145. }
  146. }