コード例 #1
0
ファイル: frmUserDefined.cs プロジェクト: reaglin/BMPTrains
        private void btnMedia_Click(object sender, EventArgs e)
        {
            Form form = new frmMediaMix(currentBMP());

            form.ShowDialog();
            setValues();
        }
コード例 #2
0
        private void btnMedia_Click(object sender, EventArgs e)
        {
            // Also have to cache status of Do Ground Water Analysis
            String dGWA = Globals.Project.DoGroundwaterAnalysis;

            getValues();
            Form form = new frmMediaMix(currentBMP());

            form.ShowDialog();
            Globals.Project.DoGroundwaterAnalysis = dGWA;
            currentBMP().Calculate();
            setValues();
        }