提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+30 -1
View File
@@ -2173,4 +2173,33 @@ namespace Lskj.PubArtwork
case ControlType.LabAutoCompleteTextParam:
if (!this.SearchMainObj.isRevTextEdit)
{
LabelAutoTextEdit autoTextEdit = control as LabelAutoTextEdit;
autoTextEdit.TextEdit.HidePopup();
}
else
{
LabelAutoTextRevEdit autoTextEdit = control as LabelAutoTextRevEdit;
autoTextEdit.TextEdit.HidePopup();
}
break;
default:
break;
}
}
}
}
private void TextEdit_Click(object sender, EventArgs e)
{
if (sender is AutoGridLookUp)
{
AutoGridLookUp agl = sender as AutoGridLookUp;
if (!agl.AutoShowPopup)
{
agl.AutoShowPopup = true;
agl.Focus();
}
}
}
}
}