Ejemplo n.º 1
0
        private void Prod_QteProductionChange(Production _prod, int _nouvelleQte, int _nouveauPourcentage, decimal _tauxErreurActuel)
        {
            updateIHM = new UpdateIHMDelegate(UpdateIHM);

            if (this.IsHandleCreated && updateIHM != null)
            {
                this.Invoke(updateIHM, new object[] { _prod });
            }
        }
Ejemplo n.º 2
0
        private void Prod_EtatProductionChange(Production _prod, EnumEtatProduction _nouvelEtat)
        {
            updateIHM = new UpdateIHMDelegate(UpdateIHM);

            if (this.IsHandleCreated && updateIHM != null)
            {
                this.Invoke(updateIHM, new object[] { _prod });
            }
        }
Ejemplo n.º 3
0
        private void Prod_ErreurEstApparue(Production _prod, int _nbCaisseNonConforme, decimal _tauxErreurActuel)
        {
            updateIHM = new UpdateIHMDelegate(UpdateIHM);

            if (this.IsHandleCreated && updateIHM != null)
            {
                this.Invoke(updateIHM, new object[] { _prod });
            }
        }