Adding page refresh to IPageBase
This commit is contained in:
@@ -13,4 +13,5 @@ public partial class HomePage : UserControl, IPageBase
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void Refresh() { }
|
||||
}
|
||||
@@ -3,4 +3,6 @@ namespace SessionZero.Pages;
|
||||
public interface IPageBase
|
||||
{
|
||||
public string PageName { get; set; }
|
||||
|
||||
public void Refresh();
|
||||
}
|
||||
@@ -12,5 +12,7 @@ public partial class LibraryPage : UserControl, IPageBase
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void Refresh() { }
|
||||
|
||||
}
|
||||
@@ -12,4 +12,6 @@ public partial class SessionsPage : UserControl, IPageBase
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void Refresh() { }
|
||||
}
|
||||
@@ -12,4 +12,6 @@ public partial class SettingsPage : UserControl, IPageBase
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
public void Refresh() { }
|
||||
}
|
||||
Reference in New Issue
Block a user