Files
TheXamlGuy.TaskbarGroup/TheXamlGuy.TaskbarGroup.Flyout.Foundation/Drop.cs
T
dan_clark@outlook.com 263704a772 Add drag/drop handling
2022-03-23 21:19:23 +00:00

10 lines
227 B
C#

using Windows.UI.Xaml;
namespace TheXamlGuy.TaskbarGroup.Flyout.Foundation
{
public record class Drop<TTarget>(DragEventArgs DropEventArgs) where TTarget : UIElement
{
public TTarget Target { get; }
}
}