Bunch of interaction updates for the calendar item control.

This commit is contained in:
Burak Kaan Köse
2025-01-02 00:18:34 +01:00
parent 215dc6ea6d
commit 8a9265eb79
24 changed files with 333 additions and 102 deletions

View File

@@ -28,6 +28,11 @@ namespace Wino.Calendar.ViewModels.Data
public bool IsMultiDayEvent => ((ICalendarItem)CalendarItem).IsMultiDayEvent;
public bool IsRecurringEvent => !string.IsNullOrEmpty(CalendarItem.Recurrence);
[ObservableProperty]
private bool _isSelected;
public CalendarItemViewModel(CalendarItem calendarItem)
{
CalendarItem = calendarItem;