C3204
2025-12-29 fec341de45f4b3fd1825807f0b3261143fa13caa
LB_SmartVision/Forms/Pages/ProcessPage/ProcessControl.cs
@@ -81,10 +81,10 @@
        /// 异步显示图片
        /// </summary>
        /// <param name="ho_image"></param>
        public void ShowHoImage(HObject ho_image)
        public void ShowHoImage(HImage ho_image)
        {
            string str = this.lblTitle.Text;
            UserHSmartWindowControl.hImage = ho_image;
            if (this.InvokeRequired)
            {
                this.BeginInvoke(new Action(() =>
@@ -135,7 +135,7 @@
                    ClearObj();
                    result = Run(out msg);
                    if (ProcessRunBll.GetImage(_Layout, out _, out HObject RecordImage))
                    if (ProcessRunBll.GetImage(_Layout, out _, out HImage RecordImage))
                    {
                        ShowHoImage(RecordImage);
                    }
@@ -198,7 +198,7 @@
                    ProcessRunBll.LogInfo($"{ProcessRunBll.Name}运行结束,结果为:{msg}"
                        , result ? LogInfoType.PASS : LogInfoType.ERROR);
                    if (ProcessRunBll.GetImage(_Layout, out _, out HObject RecordImage))
                    if (ProcessRunBll.GetImage(_Layout, out _, out HImage RecordImage))
                    {
                        ShowHoImage(RecordImage);
                    }