提交当前本机整理版本

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
@@ -1179,4 +1179,26 @@ namespace Lskj.Control.MultiModelLookUp
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
protected void OnGridViewRightCallBack(object sender, EventAr
protected void OnGridViewRightCallBack(object sender, EventArgs e)
{
try
{
//int oldRowHandle = gcMain.GridView.FocusedRowHandle;
//if (!(gcMain is TreeGridControlEx) && oldRowHandle < 0) return;
//DataTable dt = this.gcMain.GridView.GetGridViewFilteredAndSortedDataToDataTable();
//if (gcMain is TreeGridControlEx) dt = (gcMain as TreeGridControlEx).GetGridViewDataSource();
//if (dt == null || dt.Rows.Count == 0) return;
//DataRow SelectTheLine = gcMain is TreeGridControlEx ? (gcMain as TreeGridControlEx).GetViewFocusedDataRow() : dt.Rows[oldRowHandle];
//this.SearchObj.RememberRow = (this.SysModel.AccordingNameSelected == 0);
this.SearchObj.SearchLastGrid();
}
catch (Exception ex)
{
string Message = ErrorMessage.PromptErrorMessage(ex);
MessageUtil.Show(Message, ex.Message);
}
}
}
}