Interface IPopupWindow<TResult>
A popup window that allows the display of any custom view with a specified result, controlled an instance of the IPopupWindowController<TResult>
Inherited Members
Namespace: LemonEdge.Client.UI.API.Windows
Assembly: LemonEdge.Client.UI.API.dll
Syntax
public interface IPopupWindow<TResult> : IWindow
Type Parameters
Name | Description |
---|---|
TResult | The type of result returned when the popup window is closed/dismissed |
Methods
InitController(IPopupWindowController<TResult>)
Sets the specified instance of the controller for this popup window
Declaration
void InitController(IPopupWindowController<TResult> controller)
Parameters
Type | Name | Description |
---|---|---|
IPopupWindowController<TResult> | controller | The instance of the controller for this popup window |