public TelaCadastroCidade() { InitializeComponent(); this._controlador = new ControladorCadastroCidade(this); this._telaEstado = new TelaCadastroEstado(); this._telaEstado.EmBusca = true; }
public void AbrirCadastroEstados() { TelaCadastroEstado tela = new TelaCadastroEstado(); try { tela.ShowDialog(); } finally { tela.Dispose(); tela = null; } }