NFe.UI.Formularios.NFSe.FormMunicipio.edtMunicipio_TextChanged C# (CSharp) 메소드

edtMunicipio_TextChanged() 개인적인 메소드

private edtMunicipio_TextChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void edtMunicipio_TextChanged(object sender, EventArgs e)
        {
            this.metroButton1.Enabled = !this.edtCodMun.Text.PadLeft(7, '0').Equals("0000000") &&
                this.edtMunicipio.Text.Trim().Length > 0;
        }
    }