コード例 #1
0
 public Production_Screen(string lab1, string lab2, productionEfficiency production, int number)
 {
     InitializeComponent();
     this.Production = production;
     this.Lab1       = lab1;
     this.Lab2       = lab2;
     this.Number     = number;
 }
コード例 #2
0
        private void buttonX1_Click(object sender, EventArgs e)
        {
            if (!(UsersHelp.systemAdimin || UsersHelp.Production_efficiency_management))
            {
                MessageBox.Show("抱歉,您没有访问此功能的权限");
                return;
            }

            productionEfficiency pe = new productionEfficiency(this);

            pe.MdiParent = this;
            SetMdiForm(pe.Text, pe.GetType());
        }
コード例 #3
0
ファイル: DataOutForm.cs プロジェクト: return001/MES_BM_GCE
 //bool DataOut = false;
 public DataOutForm(string produtype, productionEfficiency productionEf)
 {
     InitializeComponent();
     this.productionEF       = productionEf;
     this.ProductionTypeName = produtype;
 }
コード例 #4
0
 public TimedRefreshCondition(string lab, productionEfficiency peff)
 {
     InitializeComponent();
     this.Peff = peff;
     this.Lab  = lab;
 }