11 lines
419 B
C#
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;
|
|
}
|
|
} |