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

cbxHostedNames_TextChanged() private method

Handles the TextChanged event of the cbxHostedNames control.
private cbxHostedNames_TextChanged ( object sender, EventArgs e ) : void
sender object The source of the event.
e EventArgs The instance containing the event data.
return void
        private void cbxHostedNames_TextChanged(object sender, EventArgs e)
        {
            this.chbxIsUpgrade.Checked = this.cbxHostedNames.Items.Contains(this.cbxHostedNames.Text);
        }