LoadProgress.cs 713 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.ComponentLibrary
  10. {
  11. public partial class LoadProgress : UserControl
  12. {
  13. public LoadProgress()
  14. {
  15. InitializeComponent();
  16. }
  17. [DescriptionAttribute("设置边框颜色"), CategoryAttribute("组件扩展属性")]
  18. public Color BorderColor
  19. {
  20. get { return this.BackColor; }
  21. set { this.BackColor = value; }
  22. }
  23. public Label LbLoadProgress
  24. {
  25. get { return this.lbLoadProgress; }
  26. }
  27. }
  28. }