silverlight 4 and Refresh Parent Window when Child Window closed
In my SL4 App I have a Parent Page where I'm displaying a datagrid. I open the ChildWindow when the user selects a particular Row in the grid and clicks on Open button using the following code.
cwEditProduct ChildWin = new cwEditProduct(productId);
ChildWin.Closed += new EventHandler(ChildWin_Closed);
ChildWin.Show();
and When the user closes the ChildWindow the following code runs but it is not refreshing the parent grid with updates.
void ChildWin_Closed(objec开发者_如何学Got sender, EventArgs e)
{
LoadProducts();
}
If I go to another page and come back to this it works fine but not from the childWin closed event.
I have noticed during the debugging that the ChildWin_Closed gets called soon I press the Close button on the Child Window and it runs the remaining code in the close button and then closes the window. Is it just because of timing or I'm doing something wrong??
Any response would be much appreciated
Got it working. Need to clear the cache
精彩评论