Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            Ayrinti ayrinti = new Ayrinti();

            ayrinti.ShowDialog();
            Doldur();
        }
Example #2
0
        private void MenuGuncelle_Click(object sender, EventArgs e)
        {
            int     id      = Convert.ToInt32(dtgVeri.SelectedRows[0].Cells["Id"].Value);
            Ayrinti ayrinti = new Ayrinti(id, false);

            ayrinti.ShowDialog();
            Doldur();
        }
Example #3
0
        private void dtgVeri_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex == -1)
            {
                return;
            }
            int     id      = Convert.ToInt32(dtgVeri.SelectedRows[0].Cells["Id"].Value);
            Ayrinti ayrinti = new Ayrinti(id, false);

            ayrinti.ShowDialog();
            Doldur();
        }