Loading fix, CopyPath, Open in explorer
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using FileTime.App.Core.Services;
|
||||
|
||||
namespace FileTime.GuiApp.Services;
|
||||
|
||||
public class SystemClipboardService : ISystemClipboardService
|
||||
{
|
||||
public async Task CopyToClipboardAsync(string text)
|
||||
{
|
||||
if (global::Avalonia.Application.Current?.Clipboard is { } clipboard)
|
||||
{
|
||||
await clipboard.SetTextAsync(text);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user