14 lines
273 B
C#
14 lines
273 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Toolkit.Foundation.Avalonia;
|
|
|
|
public class TriggerCollection : Collection<Delegate>
|
|
{
|
|
public void Add(object item)
|
|
{
|
|
if (item is Delegate trigger)
|
|
{
|
|
base.Add(trigger);
|
|
}
|
|
}
|
|
} |