LB_VisionProcesses/BarcodeReaders/BarcodeReaderBase.cs
@@ -10,11 +10,11 @@
    {
        public virtual event EventHandler<BarcodeEventArgs> BarcodeRead;
        public virtual string SN { get; protected set; } = string.Empty;
        public virtual string SN { get; set; } = string.Empty;
        public virtual bool IsConnected { get; protected set; } = false;
        public virtual bool IsConnected { get; set; } = false;
        public virtual bool IsGrabbing { get; protected set; } = false;
        public virtual bool IsGrabbing { get; set; } = false;
        public abstract BarcodeReaderBrand Brand { get; }
@@ -50,6 +50,8 @@
                {
                    Close();
                }
                IsConnected = false;
                IsGrabbing = false;
            }
            catch { }
        }