Esempio n. 1
0
        private void TextoTributo_Click(object sender, EventArgs e)
        {
            int    indice      = comboContas.SelectedIndex;
            Conta  selecionada = this.contas[indice];
            double valor       = Convert.ToDouble(textoValor.Text);

            selecionada.CalculaTributo();
            textoTr.Text = Convert.ToString(selecionada.Tributo);
        }