1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| #region
|
| using System.Data;
|
| #endregion
|
| namespace CSFrameworkV5.Library.CommonClass
| {
| /// <summary>
| /// 回调函数,当选择一个条记录后关闭窗体时调用
| /// </summary>
| /// <param name="resultRow">当前选择的条记</param>
| public delegate void SearchCallBack(DataRow resultRow);
|
| /// <summary>
| /// 回调函数,当选择多条记录后关闭窗体时调用
| /// </summary>
| /// <param name="resultTable"></param>
| public delegate void SearchCallBackTable(DataTable resultTable);
| }
|
|