Esempio n. 1
0
        public ChangeUserMoney(Hub hh)
        {
            h = hh;
            InitializeComponent();

            foreach (int uid in h.UserNums())
            {
                if(uid != 0)
                    comboBox1.Items.Add(new NumberedString(h.GetUserInfo(uid).name, uid));
            }

            comboBox1.SelectedIndex = 0;
        }