Beispiel #1
0
        private void ParametrsByHands_Click(object sender, EventArgs e)
        {
            comboParametrs par = ReadDataFromFields();

            WeightsByHand_Numbers.SetBitQuatity(par.quantity);

            WeightsByHand weights = new WeightsByHand(par.alpha, par.quantity, par.delta);

            weights.Show();
        }
Beispiel #2
0
        private void діаграмаРоботиАЦПToolStripMenuItem_Click(object sender, EventArgs e)
        {
            comboParametrs par  = ReadDataFromFields();
            GlobalUnit     unit = new GlobalUnit();

            unit.adcInst = new PFI.ADCConv.ADC(par.quantity, par.alpha, par.delta);

            if (chkbxWeightsByHands.Checked)
            {
                unit.IsWeightsByHands = true;
            }

            ADCTimeDiagram form = new ADCTimeDiagram(unit);

            form.Show();
        }
Beispiel #3
0
        private void XPGKS_Click(object sender, EventArgs e)
        {
            comboParametrs par  = ReadDataFromFields();
            GlobalUnit     unit = new GlobalUnit();

            unit.adcInst = new PFI.ADCConv.ADC(par.quantity, par.alpha, par.delta);

            if (chkbxWeightsByHands.Checked)
            {
                unit.IsWeightsByHands = true;
            }

            var form = new GKSharacteristicOfTransformationStraightComb(unit);

            form.Show();
        }
Beispiel #4
0
        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            comboParametrs par  = ReadDataFromFields();
            GlobalUnit     unit = new GlobalUnit();

            unit.adcInst = new PFI.ADCConv.ADC(par.quantity, par.alpha, par.delta);

            if (chkbxWeightsByHands.Checked)
            {
                unit.IsWeightsByHands = true;
            }

            var form = new StatisticsGKS(unit);

            form.Show();
        }
Beispiel #5
0
        private void рохрахуватиСтатистикуЦАПToolStripMenuItem_Click(object sender, EventArgs e)
        {
            comboParametrs par  = ReadDataFromFields();
            GlobalUnit     unit = new GlobalUnit();

            unit.dacInst = new DAC(par.quantity, par.alpha, par.delta);

            if (chkbxWeightsByHands.Checked)
            {
                unit.IsWeightsByHands = true;
            }

            StatisticsDAC form = new StatisticsDAC(unit);

            form.Show();
        }
Beispiel #6
0
        private void цАПToolStripMenuItem_Click(object sender, EventArgs e)
        {
            comboParametrs par = ReadDataFromFields();

            GlobalUnit unit = new GlobalUnit();

            unit.dacInst = new DAC(par.quantity, par.alpha, par.delta);

            if (chkbxWeightsByHands.Checked)
            {
                unit.SetDacWeightsByHand();
            }

            DACCharacteristicOfTransformationFullComb form = new DACCharacteristicOfTransformationFullComb(unit.dacInst);

            form.Show();
        }