private void SummonerProfile_Load(object sender, EventArgs e)
        {
            picture = new PictureBox()
            {
                Name = "pictureBox",
            };
            this.Controls.Add(picture);

            //Information about the champion for the summoner/player
            AddChampionsToList();
            SearchChampionTxtbox.Focus();
        }
 public SummonerProfile()
 {
     InitializeComponent();
     ApiHelper.InitializeClinet();
     SearchChampionTxtbox.Select();
 }