DeploymentTracker.App.Windows.PackageDeployment.cbxIsRollback_CheckedChanged C# (CSharp) Method

cbxIsRollback_CheckedChanged() private method

Handles the CheckedChanged event of the cbxIsRollback control.
private cbxIsRollback_CheckedChanged ( object sender, EventArgs e ) : void
sender object The source of the event.
e EventArgs The instance containing the event data.
return void
        private void cbxIsRollback_CheckedChanged(object sender, EventArgs e)
        {
            this.btnDeploy.Text = this.cbxIsRollback.Checked ? "R&ollback" : this.btnDeploy.Text = "&Deploy";
        }