public void Show()
 {
     if (LastFiveLayoutWindow.IsDisposed)
     {
         LastFiveLayoutWindow = new LastFiveWindow();
     }
     if (LastFiveLayoutWindow.chromiumWebBrowser == null)
     {
         CurrentAchievements = new List <Achievement>();
         LastFiveLayoutWindow.SetupBrowser();
     }
     if (!LastFiveLayoutWindow.Visible)
     {
         LastFiveLayoutWindow.Show();
     }
 }
        private LastFiveController()
        {
            LastFiveLayoutWindow = new LastFiveWindow();

            CurrentAchievements = new List <Achievement>();
        }