private void dataGridView2_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            barkod = dataGridView2.CurrentRow.Cells[1].Value.ToString();
            UrunYonetimForm FORM = new UrunYonetimForm();

            FORM.ShowDialog();
        }
Exemple #2
0
        //Diğer formları açmak için kullanılan kod dizesi.
        private void urunYonetimButton_Click(object sender, EventArgs e)
        {
            this.Hide();
            UrunYonetimForm f2 = new UrunYonetimForm();

            f2.ShowDialog();
            this.Show();
        }