Exemplo n.º 1
0
        public GhicesteRegiunea()
        {
            InitializeComponent();

            regions = RegionModel.GetJudete();

            button2.Enabled = button3.Enabled = false;
        }
Exemplo n.º 2
0
        public GenereazaTraseu()
        {
            InitializeComponent();

            regions = RegionModel.GetJudete();

            listBox1.Items.Clear();
            listBox1.Items.AddRange(RegionModel.GetNumeJudete().ToArray());

            timer = new Timer();
            timer.Interval = 500;
            timer.Tick += new EventHandler(timer_Tick);
        }