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

txtPackagePath_TextChanged() private method

Handles the TextChanged event of the txtPackagePath control.
private txtPackagePath_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 txtPackagePath_TextChanged(object sender, EventArgs e)
        {
            this.btnDeploy.Enabled = this.tabControl1.SelectedTab.Name.Equals("tabLocalDeployment")
                && !string.IsNullOrEmpty(this.txtConfigPath.Text)
                && !string.IsNullOrEmpty(this.txtPackagePath.Text);
        }