ZForge.Motion.Controls.CameraView.UpdateUI C# (CSharp) Method

UpdateUI() public method

public UpdateUI ( ) : void
return void
        public void UpdateUI()
        {
            this.panelMaster.CaptionText = mCameraClass.Name;
            this.trackBarSensi.Value = mCameraClass.Sensibility;
            this.trackBarElapse.Value = mCameraClass.AlarmElapse;
            this.trackBarDifferenceThreshold.Value = mCameraClass.DifferenceThreshold;
            this.ShowBanner = mCameraClass.Banner;
            this.CaptureFlag = mCameraClass.Capture;
            this.ShowMotionRect = mCameraClass.ShowMotionRect;
            this.DetectMode = mCameraClass.DetectMode;

            this.toolStripButtonRegion.Checked = mCameraClass.ShowRegion;
            this.toolStripButtonMirror.Checked = mCameraClass.Mirror;
            this.toolStripButtonFlip.Checked = mCameraClass.Flip;

            this.mPTZControl.PlugIn = mCameraClass.PlugInPTZ;
        }