Example #1
0
        private void btn_choose_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            int           index  = this.viewer_customs.GetIndex();
            Customization custom = _customs[index];

            if (_prestige)
            {
                _admin.SendBuyPrestigeCustom(custom);
            }
            else
            {
                _admin.ChangeBorder(custom.Id);
            }
            Close();
        }