15 lines
269 B
C#
15 lines
269 B
C#
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);
|
|
}
|
|
}
|
|
}
|