Raised when a child Window is closed.
Namespace: MindFusion.Common.UI
File: WindowHost.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher windowClose |
Event DataThe event handler method receives the following arguments:
sender
A WindowHost instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
A ControlModifiedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code creates a new WindowHost and handles its windowClose event:
JavaScript
Copy Code
|
|---|
/ create a new instance of the WindowHost control function handleWindowClose(sender, args) |
See Also