Hi,
Is there any way of knowing if the dialgog window is closed? I can't find a Closed event, so how do I know if my dialog window is being closed by the close button?
Thanks!
You can use the WindowsStateChanged event as described in this help article:http://help.infragistics.com/NetAdvantage/Silverlight/2010.1/CLR3.5/?page=SL_xamWebDialogWindow_Handle_Window_State_Changing_Events.html
After you handle the event, use the event arguments' property NewWindowState. It's an enumeration of type WindowState.When the dialog window is closed the state is chnaged to Hidden
Regards
Excellent, thanks!