SVN-Revision: r258
This commit is contained in:
cyf
2025-02-08 06:34:46 +00:00
parent e910b8b55b
commit e776f3bd62
21 changed files with 2607 additions and 393 deletions
+1 -32
View File
@@ -263,35 +263,4 @@ namespace Lskj.Control
if (this.isMultiClick)
{
this.TextEdit.Popup.AddVisible = true;
this.TextEdit.Popup.OnAddMouseClick += new EventHandler(Popup_OnAddMouseClick);
}
}
/// <summary>
/// <para>说明:添加操作后</para>
/// <para>创建人:龚宇超</para>
/// <para>创建日期:2018-04-03 </para>
/// <para>修改人:</para>
/// <para>修改日期:</para>
/// <para>修改备注:</para>
/// <para>版本:1.0</para>
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
protected void Popup_OnAddMouseClick(object sender, EventArgs e)
{
try
{
this.TextEdit.SetValue();
this.TextEdit.HidePopup();
}
catch (Exception ex)
{
string Message = ErrorMessage.PromptErrorMessage(ex);
MessageUtil.Show(Message, ex.Message);
}
}
}
}
this.TextEdit.Popup.OnAddMouseClick += new Even