示例#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();
        }