public TutorijalTip(Tutorijal t) { InitializeComponent(); this.t = t; }
public TutorijalTabelaResurs(Tutorijal t, int state) //1 = izmena, 2 = brisanje { InitializeComponent(); this.t = t; this.state = state; }
public TutorijalIzmenaResurs(Tutorijal t, TutorijalTabelaResurs tt) { InitializeComponent(); this.t = t; this.tt = tt; }
public TutorijalIzmenaTip(Tutorijal t, TutorijalTabelaTip tt) { InitializeComponent(); this.t = t; this.tt = tt; }
public TutorijalEtiketa(Tutorijal t) { InitializeComponent(); this.t = t; }
public TutorijalTabelaEtiketa(Tutorijal t, int state) { InitializeComponent(); this.t = t; this.state = state; }
public TutorijalResurs(Tutorijal t) { InitializeComponent(); this.t = t; }
public TutorijalIzmenaEtiketa(Tutorijal t, TutorijalTabelaEtiketa tt) { InitializeComponent(); this.t = t; this.tt = tt; }
private void etiketaToolStripMenuItem3_Click(object sender, EventArgs e) { Tutorijal t = new Tutorijal(9); t.Show(); }
private void tipResursaToolStripMenuItem3_Click(object sender, EventArgs e) { Tutorijal t = new Tutorijal(8); t.Show(); }
private void resursToolStripMenuItem2_Click(object sender, EventArgs e) { Tutorijal t = new Tutorijal(4); t.Show(); }