|
@@ -0,0 +1,188 @@
|
|
|
|
+using System;
|
|
|
|
+using System.ComponentModel;
|
|
|
|
+using System.Drawing;
|
|
|
|
+using System.Windows.Forms;
|
|
|
|
+
|
|
|
|
+namespace QVCopier.Components.TextProgressBar
|
|
|
|
+{
|
|
|
|
+ public class TextProgressBarControl : ProgressBar
|
|
|
|
+ {
|
|
|
|
+ private TextProgressBarDisplayMode _visualMode = TextProgressBarDisplayMode.CurrProgress;
|
|
|
|
+
|
|
|
|
+ private readonly StringFormat _stringFormat = new() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center };
|
|
|
|
+
|
|
|
|
+ private string _text = string.Empty;
|
|
|
|
+ private ContentAlignment _textAlign = ContentAlignment.MiddleCenter;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ [Category("Additional Options"), Browsable(true)]
|
|
|
|
+ public TextProgressBarDisplayMode VisualMode
|
|
|
|
+ {
|
|
|
|
+ get => _visualMode;
|
|
|
|
+ set
|
|
|
|
+ {
|
|
|
|
+ _visualMode = value;
|
|
|
|
+ Invalidate();//redraw component after change value from VS Properties section
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ [DefaultValue(ContentAlignment.MiddleCenter), Browsable(true)]
|
|
|
|
+ public virtual ContentAlignment TextAlign
|
|
|
|
+ {
|
|
|
|
+ get => _textAlign;
|
|
|
|
+ set
|
|
|
|
+ {
|
|
|
|
+ _textAlign = value;
|
|
|
|
+
|
|
|
|
+ switch (value)
|
|
|
|
+ {
|
|
|
|
+ case ContentAlignment.TopLeft:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Near;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Near;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.TopCenter:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Near;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Center;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.TopRight:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Near;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Far;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.MiddleLeft:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Center;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Near;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.MiddleCenter:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Center;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Center;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.MiddleRight:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Center;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Far;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.BottomLeft:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Far;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Near;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.BottomCenter:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Far;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Center;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case ContentAlignment.BottomRight:
|
|
|
|
+ _stringFormat.LineAlignment = StringAlignment.Far;
|
|
|
|
+ _stringFormat.Alignment = StringAlignment.Far;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ default:
|
|
|
|
+ throw new ArgumentOutOfRangeException(nameof(value), value, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Invalidate();//redraw component after change value from VS Properties section
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ [Description("If it's empty, % will be shown"), Category("Additional Options"), Browsable(true), EditorBrowsable(EditorBrowsableState.Always)]
|
|
|
|
+ public string CustomText
|
|
|
|
+ {
|
|
|
|
+ get => _text;
|
|
|
|
+ set
|
|
|
|
+ {
|
|
|
|
+ _text = value;
|
|
|
|
+ Invalidate();//redraw component after change value from VS Properties section
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private string TextToDraw
|
|
|
|
+ {
|
|
|
|
+ get
|
|
|
|
+ {
|
|
|
|
+ var text = CustomText;
|
|
|
|
+
|
|
|
|
+ switch (VisualMode)
|
|
|
|
+ {
|
|
|
|
+ case TextProgressBarDisplayMode.Percentage:
|
|
|
|
+ text = PercentageStr;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case TextProgressBarDisplayMode.CurrProgress:
|
|
|
|
+ text = CurrProgressStr;
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case TextProgressBarDisplayMode.TextAndCurrProgress:
|
|
|
|
+ text = $"{CustomText}: {CurrProgressStr}";
|
|
|
|
+ break;
|
|
|
|
+
|
|
|
|
+ case TextProgressBarDisplayMode.TextAndPercentage:
|
|
|
|
+ text = $"{CustomText}: {PercentageStr}";
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return text;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private string PercentageStr => $"{(int)((float)Value - Minimum) / ((float)Maximum - Minimum) * 100 } %";
|
|
|
|
+
|
|
|
|
+ private string CurrProgressStr => $"{Value}/{Maximum}";
|
|
|
|
+
|
|
|
|
+ public TextProgressBarControl()
|
|
|
|
+ {
|
|
|
|
+ Value = Minimum;
|
|
|
|
+ FixComponentBlinking();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void FixComponentBlinking()
|
|
|
|
+ {
|
|
|
|
+ SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ protected override void OnPaint(PaintEventArgs e)
|
|
|
|
+ {
|
|
|
|
+ var g = e.Graphics;
|
|
|
|
+
|
|
|
|
+ using var brush = new SolidBrush(ForeColor);
|
|
|
|
+ var rect = ClientRectangle;
|
|
|
|
+
|
|
|
|
+ ProgressBarRenderer.DrawHorizontalBar(g, rect);
|
|
|
|
+
|
|
|
|
+ rect.Inflate(-3, -3);
|
|
|
|
+
|
|
|
|
+ var progressBarRect = new Rectangle(rect.X, rect.Y, (int)Math.Round((float)Value / Maximum * rect.Width), rect.Height);
|
|
|
|
+
|
|
|
|
+ if (Value > 0)
|
|
|
|
+ {
|
|
|
|
+ g.FillRectangle(brush, progressBarRect);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (VisualMode != TextProgressBarDisplayMode.NoText)
|
|
|
|
+ {
|
|
|
|
+ void DrawText(Color c)
|
|
|
|
+ {
|
|
|
|
+ using var br = new SolidBrush(c);
|
|
|
|
+ g.DrawString(TextToDraw, Font, br, rect, _stringFormat);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ g.SetClip(rect);
|
|
|
|
+ DrawText(ForeColor);
|
|
|
|
+ g.ResetClip();
|
|
|
|
+
|
|
|
|
+ g.SetClip(progressBarRect);
|
|
|
|
+ DrawText(BackColor);
|
|
|
|
+ g.ResetClip();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+}
|