Interface IPopupWindowController
The controller interface for all controllers of a IPopupWindow<TResult>
Inherited Members
Namespace: LemonEdge.Client.Core.Support
Assembly: ClientCore.dll
Syntax
public interface IPopupWindowController : IController
Methods
OnCancel()
Called by the popup window instance when the user has dismissed the popup form by clicking cancel
Declaration
void OnCancel()
OnOk(Object)
Called by the popup window instance when the user has dismissed the popup form by clicking ok
Declaration
void OnOk(object result)
Parameters
Type | Name | Description |
---|---|---|
System.Object | result | The result to return back to the caller |