123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- 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();
- }
- }
- }
- }
|