From 9e6ef4b357b46a8f91bf74500d06af1f48567cb7 Mon Sep 17 00:00:00 2001
From: lu <99954486@qq.com>
Date: 星期三, 12 二月 2025 08:10:18 +0800
Subject: [PATCH] 其它出入库
---
DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs | 23 +++++++++++++++++------
1 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
index d6b0c51..1b963e1 100644
--- a/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
+++ b/DevApp/Gs.DevApp/UserControl/UcToolBarMenu.cs
@@ -67,13 +67,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 +90,6 @@
}
if (_type == 0)
{
- PictureBox specificControl = (PictureBox)parentForm.Controls.Find("picCheckBox", true).FirstOrDefault();
if (specificControl != null)
{
if (specificControl.Tag.ToString() == "鏈鏍�")
@@ -262,6 +266,8 @@
private void BtnFjianYan_ItemClick(object sender, ItemClickEventArgs e)
{
+ bool bl = _isCk(0);
+ if (bl) return;
if (btnFjianYanClick != null)
btnFjianYanClick(this, e);
else
@@ -477,6 +483,10 @@
lst.Add(btnPiZhun.Name);
lst.Add(btnHelp.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);
@@ -514,6 +524,7 @@
lst.Add(btnZhongTai.Name);
lst.Add(btnHelp.Name);
lst.Add(btnLoad.Name);
+ lst.Add(btnTzbl.Name);
_enabledBtn(lst);
}
}
@@ -539,7 +550,7 @@
_enabledBtn(lst);
this.currentAction = "edit";
if (btnEdtClick != null) btnEdtClick(this, e);
-
+
}
private void BtnDel_ItemClick(object sender, ItemClickEventArgs e)
@@ -548,7 +559,7 @@
if (bl) return;
if (btnDelClick != null) btnDelClick(this, e);
- // btnEsc.Enabled = false;
+ // btnEsc.Enabled = false;
this.currentAction = "";
}
@@ -568,7 +579,7 @@
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;
--
Gitblit v1.9.3