Frequency navigation WIP
This commit is contained in:
13
src/Core/FileTime.Core.Services/TabEvents.cs
Normal file
13
src/Core/FileTime.Core.Services/TabEvents.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using FileTime.Core.Models;
|
||||
|
||||
namespace FileTime.Core.Services;
|
||||
|
||||
public class TabEvents : ITabEvents
|
||||
{
|
||||
public event EventHandler<TabLocationChanged> LocationChanged;
|
||||
|
||||
public void OnLocationChanged(ITab tab, FullName location)
|
||||
{
|
||||
LocationChanged?.Invoke(this, new TabLocationChanged(location, tab));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user