private void stokDepoListesiToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (stokListGridView.SelectedRows.Count == 1)
     {
         selectedItem = new Tuple <int, DataGridViewCellCollection>(stokListGridView.SelectedRows[0].Index, stokListGridView.SelectedRows[0].Cells);
         StokDepoListesi stokDepoListesi = new StokDepoListesi(this);
         stokDepoListesi.ShowDialog();
     }
     else
     {
         Notification.messageBoxError("BİR SORUN OLUŞTU, KAYIT SEÇİLEMEDİ !");
     }
 }
Exemple #2
0
 public StokTransfer(StokDepoListesi stokDepoListesi)
 {
     InitializeComponent();
     this.stokDepoListesi = stokDepoListesi;
 }
Exemple #3
0
 public StokDepoDuzenle(StokDepoListesi stokDepoListesi)
 {
     InitializeComponent();
     this.stokDepoListesi = stokDepoListesi;
     selectedItem         = this.stokDepoListesi.getStokDepoSelectedItem();
 }