public virtual void DoubleClickCell()
 {
     if (SelectedTrackInfo == null)
     {
         XtraMessageBox.Show("请选中要展示的行", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information);
         return;
     }
     else
     {
         CheckPointLog checkPointLog = new CheckPointLog(SelectedTrackInfo, SelectedAgent);
         checkPointLog.Show();
     }
 }
Example #2
0
        public void SaveEndLoad(string fileName, string MethodName, int ContactId)
        {
            string filePath = HttpContext.Server.MapPath("~/Log/" + fileName);

            CheckPointLog.GetInstance().WriteLog(filePath, MethodName, ContactId);
        }