1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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 ExecutionProgress : UserControl
- {
- public ExecutionProgress()
- {
- InitializeComponent();
- }
- /// <summary>
- /// 设置进度条对象
- /// </summary>
- public OtherExpansion.SkinControl.SkinProgressBar MySkinProgressBar {
- set { this.sProgressBar = value; }
- get { return this.sProgressBar; }
- }
- /// <summary>
- /// 设置进度条进度值
- /// </summary>
- public int MySkinProgressBarValue {
- set { this.sProgressBar.Value = value; }
- get { return this.sProgressBar.Value; }
- }
- [DescriptionAttribute("设置边框颜色"), CategoryAttribute("组件扩展属性")]
- public Color BorderColor
- {
- get { return this.BackColor; }
- set { this.BackColor = value; }
- }
- public Label LbLoadProgress
- {
- get { return this.lbLoadProgress; }
- }
- }
- }
|