Interface IWindowHook
Interface from which all window hooks must derive
Namespace: Simplic.Framework.UI
Assembly: Simplic.Framework.Base.dll
Syntax
public interface IWindowHook
Methods
| Improve this Doc View SourceDeleted()
Will be called when the delete process finished
Declaration
void Deleted()
OnDelete()
Will be called when deleteing data
Declaration
bool OnDelete()
Returns
Type | Description |
---|---|
System.Boolean | Returns whether to continue the delete process or not |
OnOpenPage()
Will be called before the page was opened
Declaration
void OnOpenPage()
OnSave()
Will be called when data are saved
Declaration
bool OnSave()
Returns
Type | Description |
---|---|
System.Boolean | Returns true when data should be saved |
PageOpened()
Will be called when the data are opened
Declaration
void PageOpened()
Saved()
Will be called after data are saved
Declaration
void Saved()