Example #1
0
        public Tabela(List <string> Imena, List <int> Bodovi)
        {
            InitializeComponent();

            this._Imena  = Imena;
            this._Bodovi = Bodovi;
            this._Runda++;

            for (int i = 0; i < Imena.Count(); i++)
            {
                Ime.Add(new ViewCell {
                    View = new Label {
                        Text = Imena.ElementAt(i) + ":      " + Bodovi.ElementAt(i)
                    }
                });
            }
            Runda.Text = "Runda: " + _Runda.ToString();
        }
Example #2
0
        public Tabela(List <string> Imena)
        {
            InitializeComponent();

            this._Runda  = 1;
            this._Imena  = Imena;
            this._Bodovi = new List <int>();

            foreach (var i in Imena)
            {
                this._Bodovi.Add(0);
            }


            foreach (var i in Imena)
            {
                Ime.Add(new ViewCell {
                    View = new Label {
                        Text = i + ":" + "       0"
                    }
                });
            }
            Runda.Text = "Runda: " + _Runda.ToString();
        }