public void ItemSelected(UICollectionView collectionView, NSIndexPath indexPath)
        {
            //ga naar locationdetailviewcontroller
            selectedLocation = Locations[indexPath.Row];
            PerformSegue("LocationDetail", this);

            //verander van kleur
        }
Ejemplo n.º 2
0
 public ScheduleItem(string name, string desc, DateTime dateTime, Location location, Speaker speaker, Category category, string[] images)
 {
     Name = name;
     Description = desc;
     DateTime = dateTime;
     Location = location;
     Speaker = speaker;
     Category = category;
     Images = images;
 }