Refresh file on change from background

This commit is contained in:
Matt Parker
2025-07-31 18:48:45 +10:00
parent 1dca2d19fd
commit 37a5bfc42b
4 changed files with 58 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
namespace SharpIDE.Photino.Services;
public class RefreshOpenFileService
{
public event Func<Task>? RefreshOpenFile;
public void InvokeRefreshOpenFile()
{
RefreshOpenFile?.Invoke();
}
}