12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.ComponentLibrary
- {
- public partial class LoadProgress : UserControl
- {
- public LoadProgress()
- {
- InitializeComponent();
- }
- [DescriptionAttribute("设置边框颜色"), CategoryAttribute("组件扩展属性")]
- public Color BorderColor
- {
- get { return this.BackColor; }
- set { this.BackColor = value; }
- }
- public Label LbLoadProgress
- {
- get { return this.lbLoadProgress; }
- }
- }
- }
|