Interface ISplashParent
A generic interface that defines a SplashPanel parent.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public interface ISplashParent
Remarks
Any object/Control that wants to act as a SplashPanel parent should implement this interface.
The SplashPanel provides an easy way to display different types of messages and also collect user input in an unobtrusive manner. This interface allows your class to get notifications from the SplashPanel object you want to monitor without handling events.
Methods
BeforeSplashNotify(SplashPanel)
Invoker for notifying the splash parent before the splash panel is displayed.
Declaration
bool BeforeSplashNotify(SplashPanel splashPanelObject)
Parameters
Type | Name | Description |
---|---|---|
SplashPanel | splashPanelObject | The splash panel object. |
Returns
Type | Description |
---|---|
System.Boolean | Return bool value |
Remarks
This method will be called by the OnBeforeSplash(CancelEventArgs) method.
SplashClosedNotify(SplashPanel, SplashCloseType)
Invoker for notifying the splash parent when the SplashPanel has closed.
Declaration
void SplashClosedNotify(SplashPanel splashPanelObject, SplashCloseType splashCloseType)
Parameters
Type | Name | Description |
---|---|---|
SplashPanel | splashPanelObject | The child splash panel that was closed. |
SplashCloseType | splashCloseType | A SplashCloseType value. |
Remarks
This method will be called by the OnSplashClosed(SplashClosedEventArgs) method.
SplashClosingNotify(SplashPanel)
Invoker for notifying the splash parent before the splash panel is closed.
Declaration
bool SplashClosingNotify(SplashPanel splashPanelObject)
Parameters
Type | Name | Description |
---|---|---|
SplashPanel | splashPanelObject | The splash panel object |
Returns
Type | Description |
---|---|
System.Boolean | splash Panel Object |
Remarks
This method will be called by the OnSplashClosing(CancelEventArgs) method.
SplashDisplayedNotify(SplashPanel)
Invoker for notifying the splash parent after the splash panel is displayed.
Declaration
void SplashDisplayedNotify(SplashPanel splashPanelObject)
Parameters
Type | Name | Description |
---|---|---|
SplashPanel | splashPanelObject | The splash panel object |
Remarks
This method will be called by the OnSplashDisplayed(EventArgs) method.