Added missing summeries #2
This commit is contained in:
parent
31777faa11
commit
c8db1ce8bc
26 changed files with 261 additions and 36 deletions
|
|
@ -1,10 +1,25 @@
|
|||
namespace SM.Base.Window
|
||||
{
|
||||
/// <summary>
|
||||
/// A interface to implerment a window setup.
|
||||
/// </summary>
|
||||
public interface ISetup
|
||||
{
|
||||
/// <summary>
|
||||
/// This fires when the setup is applied the window.
|
||||
/// </summary>
|
||||
void Applied(IGenericWindow window);
|
||||
/// <summary>
|
||||
/// This fires when the window is currently loading.
|
||||
/// </summary>
|
||||
void Load(IGenericWindow window);
|
||||
/// <summary>
|
||||
/// This fires when the window is done loading.
|
||||
/// </summary>
|
||||
void Loaded(IGenericWindow window);
|
||||
/// <summary>
|
||||
/// This fires when the window was resized.
|
||||
/// </summary>
|
||||
void Resize(IGenericWindow window);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue