Add project files.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace TheXamlGuy.UI.Avalonia;
|
||||
|
||||
public class TriggerCollection : Collection<Delegate>
|
||||
{
|
||||
public void Add(object item)
|
||||
{
|
||||
if (item is Delegate trigger)
|
||||
{
|
||||
base.Add(trigger);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user