Exemple #1
0
        /// <summary>
        /// 查看浇筑状态
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void btnPouring_Click(object sender, EventArgs e)
        {
            PouringState win = null;

            try
            {
                win = new PouringState();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            if (win != null)
            {
                win.Show();
                log("点击了浇注状态按钮");
            }
        }
Exemple #2
0
        private void metroButton1_Click(object sender, EventArgs e)
        {
            PouringState ps = new PouringState();

            ps.Show();
        }
Exemple #3
0
        private void btnPouring_Click(object sender, EventArgs e)
        {
            PouringState win = new PouringState();

            win.Show();
        }