Exemple #1
0
        private void btnKeyPoint_Click(object sender, EventArgs e)
        {
            if (btnKeyPoint.Tag == null)
            {
                return;
            }

            重点工作关键节点 frm = new 重点工作关键节点(btnKeyPoint.Tag.ToString());

            frm.ShowDialog();
        }
Exemple #2
0
        private void btnConnectKeyPoint_Click(object sender, EventArgs e)
        {
            if (btnConnectKeyPoint.Tag == null)
            {
                MessageDialog.ShowPromptMessage("当前节点无【相关联的关键节点】");
                return;
            }

            重点工作关键节点 frm = new 重点工作关键节点(btnConnectKeyPoint.Tag as List <Bus_FocalWork_MonthlyProgress_KeyPoint>);

            frm.ShowDialog();
        }
Exemple #3
0
        private void btnKeyPoint_Click(object sender, EventArgs e)
        {
            if (_Lnq_FocalWork.F_Id == null)
            {
                MessageDialog.ShowPromptMessage("无【关键节点】");
                return;
            }

            重点工作关键节点 frm = new 重点工作关键节点(_Lnq_FocalWork.F_Id);

            frm.ShowDialog();
        }
Exemple #4
0
        private void btnSetKeyPoint_Click(object sender, EventArgs e)
        {
            if (btnSetKeyPoint.Tag == null)
            {
                return;
            }

            重点工作关键节点 frm = new 重点工作关键节点(btnSetKeyPoint.Tag as List <Bus_FocalWork_MonthlyProgress_KeyPoint>);

            frm.ShowDialog();
            btnSetKeyPoint.Tag = frm._List_KeyPoint;
        }