1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-08-21 12:54:01 +02:00
Files
Backup-Essentials/BackupEssentials/Pages/IPageSwitchHandler.cs
2015-04-13 17:28:11 +02:00

9 lines
301 B
C#

namespace BackupEssentials.Pages{
interface IPageSwitchHandler{
/// <summary>
/// Called when the display page is about to change, or when the window is closing. Return true to stop the switch (or closing) from happening.
/// </summary>
bool OnSwitch();
}
}