private void InitControls()
        {
            //// InfoMainUc
            infoUc    = new InfoUc();
            playersUc = new PlayersUc();
            gamesUc   = new GamesUc();
            newsUc    = new NewsUc();

            //// ChatMainUc
            chatUc = new ChatUc(null);
            chatUc.Init();

            inboxUc = new InboxUc();
            sentUc  = new SentUc();

            //// ChallengesMainUc
            challengesUc = new ChallengesUc();
        }
Пример #2
0
 void frmOptions_OptionsApplied(object sender, EventArgs e)
 {
     playersUc.LoadPlayers();
     GamesUc.LoadGames();
 }