Files
Wino-Mail/Wino.Mail.WinUI/Controls/Calendar/CalendarEmptySlotTappedEventArgs.cs
T
2026-03-25 15:49:14 +01:00

20 lines
495 B
C#

using System;
using Microsoft.UI.Xaml;
using Windows.Foundation;
namespace Wino.Calendar.Controls;
public sealed class CalendarEmptySlotTappedEventArgs : EventArgs
{
public CalendarEmptySlotTappedEventArgs(DateTime clickedDate, Point anchorPoint, Size cellSize)
{
ClickedDate = clickedDate;
AnchorPoint = anchorPoint;
CellSize = cellSize;
}
public DateTime ClickedDate { get; }
public Point AnchorPoint { get; }
public Size CellSize { get; }
}