//This is a constructor for the ProgramMenuUI, inside of the constructor are items I want created when an instance of ProgramMenuUI is initialized.
 public ProgramMenuUI()
 {
     _menuRepo = new MenuRepository();
     _menus    = _menuRepo.GetOrderedMenus();
 }