mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
17 lines
374 B
C#
17 lines
374 B
C#
using Microsoft.UI.Xaml;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BetterLyrics.WinUI3.Events
|
|
{
|
|
public class InteractiveAreaEventArgs : EventArgs
|
|
{
|
|
public IList<FrameworkElement> Elements { get; set; }
|
|
|
|
public InteractiveAreaEventArgs(IList<FrameworkElement> elements)
|
|
{
|
|
Elements = elements;
|
|
}
|
|
}
|
|
}
|