Example #1
0
 public NewUschitelForma(Uchitel uchitel)
 {
     InitializeComponent();
     UCHITEL = uchitel;
     Fill();
     FillKlassPredmet();
 }
Example #2
0
        private void dataGridViewucshitel_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
        {
            Uchitel          p = (Uchitel)dataGridViewucshitel.Rows[e.RowIndex].DataBoundItem;
            NewUschitelForma d = new NewUschitelForma(p);

            d.ShowDialog();
            Fill();
        }
Example #3
0
        private void Dobavuschitel_Click(object sender, EventArgs e)
        {
            Uchitel          p = new Uchitel();
            NewUschitelForma d = new NewUschitelForma(p);

            d.ShowDialog();
            Fill();
        }