Esempio n. 1
0
        private void dataGridView_Categoria_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            ExibirCategoria nova = new ExibirCategoria(long.Parse(dataGridView_Categoria.Rows[e.RowIndex].Cells["Código"].Value.ToString()));

            nova.ShowDialog();
        }
Esempio n. 2
0
        private void toolStripButton_Selecionar_Click(object sender, EventArgs e)
        {
            ExibirCategoria nova = new ExibirCategoria();

            nova.Show();
        }