lu
2025-02-19 e9a56abf54b3f8b311f4ea360649c4564974349f
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
@@ -49,6 +49,7 @@
            btnZhongTai.ItemClick += BtnbZhongTai_ItemClick;
            btnWg.ItemClick += BtnWg_ItemClick;
            btnHelp.ItemClick += BtnHelp_ItemClick;
            btnLayout.ItemClick += BtnLayout_ItemClick;
            var lst = new List<string>();
            foreach (BarItem item in barManager1.Items)
                if (item is BarLargeButtonItem largeButtonItem)
@@ -67,13 +68,18 @@
            if (Parent != null) getNamespace();
        }
        private bool _isCk(int _type) {
        private bool _isCk(int _type)
        {
            Form parentForm = this.FindForm();
            if (parentForm != null)
            {
                PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
                if (specificControl== null)
                    return false;
                if (specificControl.Tag == null)
                    return false;
                if (_type == 1)
                {
                    PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
                    if (specificControl != null)
                    {
                        if (specificControl.Tag.ToString() == "已审核")
@@ -85,7 +91,6 @@
                }
                if (_type == 0)
                {
                    PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
                    if (specificControl != null)
                    {
                        if (specificControl.Tag.ToString() == "未审核")
@@ -478,7 +483,12 @@
                lst.Add(btnLog.Name);
                lst.Add(btnPiZhun.Name);
                lst.Add(btnHelp.Name);
                lst.Add(btnLayout.Name);
                lst.Add(btnBoHui.Name);
                lst.Add(btnTzbl.Name);
                lst.Add(btnKg.Name);
                lst.Add(btnWg.Name);
                lst.Add(btnZhongTai.Name);
                _enabledBtn(lst);
                this.currentAction = "esc";
                if (btnEscClick != null) btnEscClick(this, e);
@@ -515,7 +525,9 @@
                    lst.Add(btnWg.Name);
                    lst.Add(btnZhongTai.Name);
                    lst.Add(btnHelp.Name);
                    lst.Add(btnLayout.Name);
                    lst.Add(btnLoad.Name);
                    lst.Add(btnTzbl.Name);
                    _enabledBtn(lst);
                }
            }
@@ -538,10 +550,10 @@
            lst.Add(btnSave.Name);
            lst.Add(btnEsc.Name);
            lst.Add(btnHelp.Name);
            lst.Add(btnLayout.Name);
            _enabledBtn(lst);
            this.currentAction = "edit";
            if (btnEdtClick != null) btnEdtClick(this, e);
        }
        private void BtnDel_ItemClick(object sender, ItemClickEventArgs e)
@@ -550,7 +562,7 @@
            if (bl) return;
            if (btnDelClick != null) btnDelClick(this, e);
           // btnEsc.Enabled = false;
            // btnEsc.Enabled = false;
            this.currentAction = "";
        }
@@ -564,13 +576,14 @@
            lst.Add(btnSave.Name);
            lst.Add(btnEsc.Name);
            lst.Add(btnHelp.Name);
            lst.Add(btnLayout.Name);
            _enabledBtn(lst);
            this.currentAction = "add";
            if (btnAddClick != null) btnAddClick(this, e);
            Form parentForm = this.FindForm();
            if (parentForm != null)
            {
                PictureBox specificControl =(PictureBox) parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
                PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
                if (specificControl != null)
                {
                    specificControl.Image = global::Gs.DevApp.Properties.Resources.ico_noCheck;
@@ -636,10 +649,12 @@
                return;
            }
            Gs.DevApp.ToolBox.MsgHelper.ShowInformation(_rtnJson.rtnMsg);
        }
        private void BtnLayout_ItemClick(object sender, ItemClickEventArgs e)
        {
            if (btnLayoutClick != null) btnLayoutClick(this, e);
        }
        private void _enabledBtn(List<string> lstBtn)
        {
            foreach (BarItem item in barManager1.Items)
@@ -958,6 +973,8 @@
        public event EventHandler btnWgClick;
        public event EventHandler btnLayoutClick;
        #endregion
        #region 公共属性