예제 #1
0
 /// <summary>
 /// 设备分类
 /// </summary>
 /// <param name="context"></param>
 public frmDeviceClassList(UserContext context)
     : base(context)
 {
     InitializeComponent();
     bgwWait.ProgressChanged += this.backgroundWorker_ProgressChanged;
     UseAuthProcess.FormButtonAuthProcess(this.Name, context, bmTool, null);
 }
예제 #2
0
 public frmCLParamSetList(UserContext context)
     : base(context)
 {
     InitializeComponent();
     bgwWait.ProgressChanged += this.backgroundWorker_ProgressChanged;
     UseAuthProcess.FormButtonAuthProcess(this.Name, context, null);
     gvDetail.CustomDrawRowIndicator += new GridViewEventTool().GridView_CustomDrawRowIndicator;
 }
예제 #3
0
 public frmCfPExecute(UserContext context, string ArrangedVouchCode)
     : base(context)
 {
     InitializeComponent();
     this.ArrangedVouchCode            = ArrangedVouchCode;
     gridView1.CustomDrawRowIndicator += new GridViewEventTool().GridView_CustomDrawRowIndicator;
     bgwWait.ProgressChanged          += this.backgroundWorker_ProgressChanged;
     UseAuthProcess.FormButtonAuthProcess(this.Name, context, barManager1, null);
 }
예제 #4
0
 public frmDeviceList(UserContext context)
     : base(context)
 {
     InitializeComponent();
     bgwWait.ProgressChanged            += this.backgroundWorker_ProgressChanged;
     gvDevice.CustomDrawEmptyForeground += new GridViewEventTool().GridView_CustomDrawEmptyForeground;
     gvDevice.CustomDrawRowIndicator    += new GridViewEventTool().GridView_CustomDrawRowIndicator;
     page = gridViewPaging1.DataPaging;
     UseAuthProcess.FormButtonAuthProcess("frmDevice", context, bmTool, null);
 }
예제 #5
0
 public frmDevInterfaceList(UserContext context, string strDevCode, string strDevName)
     : base(context)
 {
     InitializeComponent();
     this.strDevCode = strDevCode;
     this.DevCodeTextEdit.Text = strDevCode;
     this.Text = string.Format("{0} -设备名称:{1}", this.Text, strDevName);
     page = gridViewPaging1.DataPaging;
     this.bgwWait1.ProgressChanged += this.backgroundWorker_ProgressChanged;
     UseAuthProcess.FormButtonAuthProcess(this.Name, context, bmButton, null);
 }