Files
Wino-Mail/Wino.Mail.WinUI/Controls/Calendar/CalendarEmptySlotTappedEventArgs.cs
T

20 lines
495 B
C#
Raw Normal View History

2026-03-23 14:56:36 +01:00
using System;
using Microsoft.UI.Xaml;
using Windows.Foundation;
namespace Wino.Calendar.Controls;
public sealed class CalendarEmptySlotTappedEventArgs : EventArgs
{
2026-03-25 15:49:14 +01:00
public CalendarEmptySlotTappedEventArgs(DateTime clickedDate, Point anchorPoint, Size cellSize)
2026-03-23 14:56:36 +01:00
{
ClickedDate = clickedDate;
2026-03-25 15:49:14 +01:00
AnchorPoint = anchorPoint;
2026-03-23 14:56:36 +01:00
CellSize = cellSize;
}
public DateTime ClickedDate { get; }
2026-03-25 15:49:14 +01:00
public Point AnchorPoint { get; }
2026-03-23 14:56:36 +01:00
public Size CellSize { get; }
}