コード例 #1
0
        private void btnModificar_Click(object sender, EventArgs e)
        {
            Cliente         clien = (Cliente)dtgCliente.CurrentRow.DataBoundItem;
            FormAltaCliente fac   = new FormAltaCliente(clien);

            fac.Show();
        }
コード例 #2
0
 private void btnModificar_Click(object sender, EventArgs e)
 {
     Cliente clien = (Cliente)dtgCliente.CurrentRow.DataBoundItem;
     FormAltaCliente fac = new FormAltaCliente(clien);
     fac.Show();
 }
コード例 #3
0
 private void btnAlta_Click(object sender, EventArgs e)
 {
     FormAltaCliente ac = new FormAltaCliente(new Cliente());
     ac.Show();
 }
コード例 #4
0
        private void btnAlta_Click(object sender, EventArgs e)
        {
            FormAltaCliente ac = new FormAltaCliente(new Cliente());

            ac.Show();
        }