TextProgressBarDisplayMode.cs 240 B

123456789101112
  1. namespace QVCopier.Components.TextProgressBar
  2. {
  3. public enum TextProgressBarDisplayMode
  4. {
  5. NoText,
  6. Percentage,
  7. CurrProgress,
  8. CustomText,
  9. TextAndPercentage,
  10. TextAndCurrProgress
  11. }
  12. }