20 lines
495 B
C#
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; }
|
|
}
|