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

toolStripButtonMirror_CheckedChanged() private method

private toolStripButtonMirror_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void toolStripButtonMirror_CheckedChanged(object sender, EventArgs e)
        {
            if (this.CameraClass != null)
            {
                this.CameraClass.Mirror = toolStripButtonMirror.Checked;
            }
            this.mPTZControl.Mirror = toolStripButtonMirror.Checked;
        }