Files
NotificationFlyout/src/TheXamlGuy.NotificationFlyout.Shared.UI/WndProc/WndProcHandlerCollection.cs
T
2021-02-14 15:21:14 +00:00

11 lines
419 B
C#

using System;
using System.Collections.Generic;
namespace TheXamlGuy.NotificationFlyout.Shared.UI.Helpers
{
internal class WndProcHandlerCollection : List<WndProcHandlerReference>, IWndProcHandlerCollection
{
private static readonly Lazy<WndProcHandlerCollection> _current = new(() => new WndProcHandlerCollection());
public static WndProcHandlerCollection Current => _current.Value;
}
}