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

toolStripButtonRegionEdit_CheckedChanged() private method

private toolStripButtonRegionEdit_CheckedChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void toolStripButtonRegionEdit_CheckedChanged(object sender, EventArgs e)
        {
            this.Pause(toolStripButtonRegionEdit.Checked);
            this.toolStripButtonPause.Enabled = !toolStripButtonRegionEdit.Checked;
            this.toolStripButtonRegionClear.Enabled = toolStripButtonRegionEdit.Checked;
            this.toolStripButtonRegionReverse.Enabled = toolStripButtonRegionEdit.Checked;
            this.cameraWindow.RegionEditing = toolStripButtonRegionEdit.Checked;
            this.cameraWindow.Banner = (toolStripButtonRegionEdit.Checked) ? false : this.CameraClass.Banner;
            this.toolStripButtonBanner.Enabled = !toolStripButtonRegionEdit.Checked;
        }