Added a Toolkit.WinUI project
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Toolkit.Foundation;
|
||||
|
||||
namespace Toolkit.WinUI;
|
||||
|
||||
public class DispatcherTimerFactory :
|
||||
IDispatcherTimerFactory
|
||||
{
|
||||
public IDispatcherTimer Create(Action actionDelegate, TimeSpan interval) =>
|
||||
new DispatcherTimer(actionDelegate, interval);
|
||||
}
|
||||
Reference in New Issue
Block a user