Yaircc.ServerDialog.AddressTextBox_TextChanged C# (CSharp) Метод

AddressTextBox_TextChanged() приватный Метод

Handles the TextChanged event of System.Windows.Forms.TextBox.
private AddressTextBox_TextChanged ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The event parameters.
Результат void
        private void AddressTextBox_TextChanged(object sender, EventArgs e)
        {
            this.connectButton.Enabled = this.addressTextBox.Text.Length > 0;
        }