NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
逻辑页面 ``` using JuQent.Mes.Module.Dto; using JuQent.Mes.Module.ProductionPlan.Dto; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Telerik.WinControls.UI; namespace JuQent.Mes.Client.Production { /// <summary> /// 胜华波报工 /// </summary> public partial class ReportWorkSHB : ReportWork { private List<OnWipDto> listOnWiptempDto = new List<OnWipDto>(); public ReportWorkSHB() { InitializeComponent(); } private void ReportWorkSHB_Load(object sender, EventArgs e) { } /// <summary> /// 重写报工功能 /// </summary> public override async void btnReportWork_Click() { //base.btnReportWork_Click(); } } } ``` 设计页面 ``` namespace JuQent.Mes.Client.Production { partial class ReportWorkSHB { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).BeginInit(); this.radGroupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).BeginInit(); this.radGroupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.txt_pass_qty)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radchkisprint)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.chk_printLotLabel)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.txtPoLotNumber)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.btnQuit)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.stVersion)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.lbCaption)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.panMain)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this)).BeginInit(); this.SuspendLayout(); // // btnQuit // this.btnQuit.Location = new System.Drawing.Point(1165, 0); // // ReportWorkSHB // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1280, 1024); this.Name = "ReportWorkSHB"; // // // this.RootElement.ApplyShapeToControl = true; this.Text = "ReportWorkSHB"; this.Load += new System.EventHandler(this.ReportWorkSHB_Load); ((System.ComponentModel.ISupportInitialize)(this.radGroupBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radGroupBox3)).EndInit(); this.radGroupBox3.ResumeLayout(false); this.radGroupBox3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.radGroupBox1)).EndInit(); this.radGroupBox1.ResumeLayout(false); this.radGroupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.txt_pass_qty)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radchkisprint)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.chk_printLotLabel)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.radCheckBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.txtPoLotNumber)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.btnQuit)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.stVersion)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.lbCaption)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.panMain)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this)).EndInit(); this.ResumeLayout(false); } #endregion } } ```