Advertisement
Guest User

Form1

a guest
Apr 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace DVDKolekcija
  12. {
  13.     public partial class Form1 : Form
  14.     {
  15.         public Form1()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.  
  20.         private void glumciToolStripMenuItem_Click(object sender, EventArgs e)
  21.         {
  22.             Glumci glumci = new Glumci();
  23.             glumci.Show();
  24.         }
  25.  
  26.         private void poZanrovimaIGlumcimaToolStripMenuItem_Click(object sender, EventArgs e)
  27.         {
  28.             ZanroviGlumci zanroviGlumci = new ZanroviGlumci();
  29.             zanroviGlumci.Show();
  30.         }
  31.  
  32.         private void producentiToolStripMenuItem_Click(object sender, EventArgs e)
  33.         {
  34.             Producenti producenti = new Producenti();
  35.             producenti.Show();
  36.         }
  37.  
  38.         private void poTipuUlogeIProducentuToolStripMenuItem_Click(object sender, EventArgs e)
  39.         {
  40.             UlogeProducenti ulogeProducenti = new UlogeProducenti();
  41.             ulogeProducenti.Show();
  42.         }
  43.  
  44.         private void izlazToolStripMenuItem_Click(object sender, EventArgs e)
  45.         {
  46.             Application.Exit();
  47.         }
  48.     }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement