예제 #1
0
 public TutorijalTip(Tutorijal t)
 {
     InitializeComponent();
     this.t = t;
 }
예제 #2
0
 public TutorijalTabelaResurs(Tutorijal t, int state)    //1 = izmena, 2 = brisanje
 {
     InitializeComponent();
     this.t     = t;
     this.state = state;
 }
예제 #3
0
 public TutorijalIzmenaResurs(Tutorijal t, TutorijalTabelaResurs tt)
 {
     InitializeComponent();
     this.t  = t;
     this.tt = tt;
 }
예제 #4
0
 public TutorijalIzmenaTip(Tutorijal t, TutorijalTabelaTip tt)
 {
     InitializeComponent();
     this.t  = t;
     this.tt = tt;
 }
예제 #5
0
 public TutorijalEtiketa(Tutorijal t)
 {
     InitializeComponent();
     this.t = t;
 }
예제 #6
0
 public TutorijalTabelaEtiketa(Tutorijal t, int state)
 {
     InitializeComponent();
     this.t     = t;
     this.state = state;
 }
예제 #7
0
 public TutorijalResurs(Tutorijal t)
 {
     InitializeComponent();
     this.t = t;
 }
예제 #8
0
 public TutorijalIzmenaEtiketa(Tutorijal t, TutorijalTabelaEtiketa tt)
 {
     InitializeComponent();
     this.t  = t;
     this.tt = tt;
 }
예제 #9
0
파일: Form1.cs 프로젝트: vonum/HCI
        private void etiketaToolStripMenuItem3_Click(object sender, EventArgs e)
        {
            Tutorijal t = new Tutorijal(9);

            t.Show();
        }
예제 #10
0
파일: Form1.cs 프로젝트: vonum/HCI
        private void tipResursaToolStripMenuItem3_Click(object sender, EventArgs e)
        {
            Tutorijal t = new Tutorijal(8);

            t.Show();
        }
예제 #11
0
파일: Form1.cs 프로젝트: vonum/HCI
        private void resursToolStripMenuItem2_Click(object sender, EventArgs e)
        {
            Tutorijal t = new Tutorijal(4);

            t.Show();
        }