Is there any way to create a modeless child window on a Silverlight application? Basically I need to display some detailed information after user clicks on a button. User could keep worki开发者_C百科ng on the main page and see the detailed child window at the same time.
Thanks for any reply.
ck
You can use a Popup control for this. Just add your content to the popup and show it.
Tim Heuer has taken the ChildWindow code from the Silverlight Toolkit and refactored it to a modeless implementation. See:
http://silverlightfeeds.com/post/533/Refactoring_Silverlight_ChildWindow_for_a_non-modal_use.aspx
精彩评论