using System; using System.Windows.Forms; namespace CK.SCP.Utils { public partial class FormProcess : Form { public FormProcess() { InitializeComponent(); } /// /// 设置提示信息 /// public string MessageInfo { set { labelInfor.Text = value; } } /// /// 设置进度条显示值 /// public int ProcessValue { set { SysPBar.Value = value; } } /// /// 设置进度条样式 /// public ProgressBarStyle ProcessStyle { set { SysPBar.Style = value; } } private void FormProcess_Load(object sender, EventArgs e) { SysPBar.Left = 20; SysPBar.Width = Width - 40; } } }