diff --git a/插件库/Lskj.Control/Model/CommonMenu.cs b/插件库/Lskj.Control/Model/CommonMenu.cs
index b1d69a4..fb9664c 100644
--- a/插件库/Lskj.Control/Model/CommonMenu.cs
+++ b/插件库/Lskj.Control/Model/CommonMenu.cs
@@ -417,7 +417,7 @@ namespace Lskj.Control.Model
{
applyArgs.DialogModel = form.SubForm.Tag as FormDialogModel;
}
- DynamicLinkAfter(applyArgs);
+ DynamicLinkAfter(this, applyArgs);
}
break;
}
diff --git a/插件库/Lskj.Control/Model/DelegateUtil.cs b/插件库/Lskj.Control/Model/DelegateUtil.cs
index 6e8f9fe..9ce53af 100644
--- a/插件库/Lskj.Control/Model/DelegateUtil.cs
+++ b/插件库/Lskj.Control/Model/DelegateUtil.cs
@@ -92,7 +92,7 @@ namespace Lskj.Control
/// 常用工具动态连接库执行后委托
///
/// The e.
- public delegate void CommonToolAfterDynamicLinkEventHandler(ApplyArgs e);
+ public delegate void CommonToolAfterDynamicLinkEventHandler(object sender, ApplyArgs e);
///
/// 扫码回调函数
///
@@ -336,37 +336,4 @@ namespace Lskj.Control
///
/// 常用工具执行参数
///
- public class ScanCodeArgs
- {
- ///
- /// 提示信息
- ///
- public string TipMsg;
- ///
- /// 条码值
- ///
- public string ScanCode;
- ///
- /// 是否取消执行
- ///
- public bool CancelFlag;
- }
- ///
- /// 右键菜单替换参数
- ///
- public class HandleParamsArgs : EventArgs
- {
- public HandleParamsArgs(List paras, DataRow[] rows, string param, DataRow focusedRow)
- {
- ParamItem = param;
- FocusedRow = focusedRow;
- Rows = rows;
- paramList = paras;
- }
- public DataRow FocusedRow { get; private set; }
- public DataRow[] Rows { get; private set; }
- public List paramList { get; private set; }
- public string ParamItem { get; private set; }
- public string FieldValue { get; set; }
- }
-}
+
\ No newline at end of file