I am creating a note-app and want to add a calendar.My Question: How to add tapped/clicked event (with the id of the note (note.id)).
My code:
foreach(Note note in Notes)
{
CalendarInlineEvent events = new CalendarInlineEvent();
events.Subject = note.title;
events.Color = note.isImportant ? Color.Orange : Color.LightGray;
events.StartTime = note.date;
events.EndTime= note.date;
calSfCalendar.DataSource.Add(events);
}
Tahnk you <3