feat: 初始功能
This commit is contained in:
18
Infrastructure/WpfUiDispatcher.cs
Normal file
18
Infrastructure/WpfUiDispatcher.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace CloudPrint.Client.Infrastructure;
|
||||
|
||||
public sealed class WpfUiDispatcher : IUiDispatcher
|
||||
{
|
||||
public void Invoke(Action action)
|
||||
{
|
||||
ArgumentNullException.ThrowIfNull(action);
|
||||
|
||||
var dispatcher = System.Windows.Application.Current?.Dispatcher;
|
||||
if (dispatcher is null || dispatcher.CheckAccess())
|
||||
{
|
||||
action();
|
||||
return;
|
||||
}
|
||||
|
||||
dispatcher.Invoke(action);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user