SVN r471
SVN-Revision: r471
This commit is contained in:
@@ -417,7 +417,7 @@ namespace Lskj.Control.Model
|
|||||||
{
|
{
|
||||||
applyArgs.DialogModel = form.SubForm.Tag as FormDialogModel;
|
applyArgs.DialogModel = form.SubForm.Tag as FormDialogModel;
|
||||||
}
|
}
|
||||||
DynamicLinkAfter(applyArgs);
|
DynamicLinkAfter(this, applyArgs);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ namespace Lskj.Control
|
|||||||
/// 常用工具动态连接库执行后委托
|
/// 常用工具动态连接库执行后委托
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="e">The e.</param>
|
/// <param name="e">The e.</param>
|
||||||
public delegate void CommonToolAfterDynamicLinkEventHandler(ApplyArgs e);
|
public delegate void CommonToolAfterDynamicLinkEventHandler(object sender, ApplyArgs e);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 扫码回调函数
|
/// 扫码回调函数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -336,37 +336,4 @@ namespace Lskj.Control
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 常用工具执行参数
|
/// 常用工具执行参数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ScanCodeArgs
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// 提示信息
|
|
||||||
/// </summary>
|
|
||||||
public string TipMsg;
|
|
||||||
/// <summary>
|
|
||||||
/// 条码值
|
|
||||||
/// </summary>
|
|
||||||
public string ScanCode;
|
|
||||||
/// <summary>
|
|
||||||
/// 是否取消执行
|
|
||||||
/// </summary>
|
|
||||||
public bool CancelFlag;
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// 右键菜单替换参数
|
|
||||||
/// </summary>
|
|
||||||
public class HandleParamsArgs : EventArgs
|
|
||||||
{
|
|
||||||
public HandleParamsArgs(List<string> 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<string> paramList { get; private set; }
|
|
||||||
public string ParamItem { get; private set; }
|
|
||||||
public string FieldValue { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user