public void RemoveSelectedStatistic()
 {
     if (SelectedStatistic != null && PlayerStatistics.Contains(SelectedStatistic))
     {
         PlayerStatistics.Remove(SelectedStatistic);
         SelectedStatistic = null;
     }
 }