Example #1
0
        //方向性管理
        private void tsmFrmDirectionalManage_Click(object sender, EventArgs e)
        {
            //验证用户密码
            if (!IsValidate())
            {
                return;
            }

            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开方向性配置菜单");

            FrmDirectionalManage frm = new FrmDirectionalManage();
            frm.Show();
        }
Example #2
0
        private void pictureBox17_Click(object sender, EventArgs e)
        {
            if (Searcher.FindFormByName("FrmDirectionalManage"))
            {
                return;
            }

            //验证用户密码
            if (!IsValidate())
            {
                return;
            }

            ILogger.Write(EnumLogType.OperateLog, strLogPath + DateTime.Now.ToString("yyyy-MM-dd") + ".xml", LoginBLL.user, "打开方向性配置菜单");

            FrmDirectionalManage frm = new FrmDirectionalManage();
            frm.Show(((KJ128NInterfaceShow.FrmMain)frmMain).dockPanel1, DockState.Document);
        }