コード例 #1
0
ファイル: ListaCores.cs プロジェクト: joaopedry/MissBelatrix
        private void EditarCor()
        {
            CadastroCor cadastroCor = new CadastroCor(Convert.ToInt32(grvListaCores.CurrentRow.Cells[1].Value), this);

            cadastroCor.Show();
        }
コード例 #2
0
ファイル: ListaCores.cs プロジェクト: joaopedry/MissBelatrix
        private void btCadastrar_Click(object sender, EventArgs e)
        {
            CadastroCor cadastroCor = new CadastroCor(this);

            cadastroCor.Show();
        }