Example #1
0
        public void Setup(DrinkViewItem drink)
        {
            this._drink = drink;

            this._groupBoxName.Text = drink.DisplayName;
            this._buttonBuy.Text    = drink.CostStr;

            this.UpdateView();

            this._drink.Source.CountChanged += _drink_CountChanged;
        }
Example #2
0
        public void Setup(DrinkViewItem drink)
        {
            this._drink = drink;

            this._groupBoxName.Text = drink.DisplayName;
            this._buttonBuy.Text = drink.CostStr;

            this.UpdateView();

            this._drink.Source.CountChanged += _drink_CountChanged;
        }