Is there a way to synchronize Silverlight Child Window (make it like MessageBox)?

Posted by Dmitriy on Stack Overflow See other posts from Stack Overflow or by Dmitriy
Published on 2010-03-31T09:28:25Z Indexed on 2010/03/31 9:33 UTC
Read the original article Hit count: 460

Filed under:
|
|
|

        ChildWindow1 wnd1 = new ChildWindow1();
        ChildWindow2 wnd2 = new ChildWindow2();


        wnd1.Show();

        //**Is there a way to pause thread here until wnd1 is closed???** 

        wnd2.Show();

© Stack Overflow or respective owner

Related posts about Silverlight

Related posts about c#