<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>slmultiwindow Wiki Rss Feed</title><link>http://slmultiwindow.codeplex.com/</link><description>slmultiwindow Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>https://slmultiwindow.codeplex.com/wikipage?version=16</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu for building desktop applications using Silverlight 5.&lt;br /&gt;Available as a &lt;a href="http://nuget.org/packages/slmultiwindow/"&gt;Nuget package&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/Silverlight.MultiWindow.Sample.March.2012.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Adding a desktop style (can show outside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;In desktop mode the window can pop outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;br /&gt;&lt;br /&gt;Showing a native popup:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;new&lt;/span&gt; PopupWindow
    {
        Width = 160,
        Height = 160,
        HorizontalOffset = 0,
        VerticalOffset = 0,
        Child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; TextBlock { Text = &lt;span style="color:#A31515;"&gt;&amp;quot;Hello world&amp;quot;&lt;/span&gt; },
        PlacementTarget = element,
        Placement = PlacementMode.Right,
        StaysOpen = &lt;span style="color:Blue;"&gt;false&lt;/span&gt;,
        IsOpen = &lt;span style="color:Blue;"&gt;true&lt;/span&gt;
    };
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Showing a modal dialog:&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    modalWindow.ShowDialog();
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Tue, 14 May 2013 06:52:46 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130514065246A</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=15</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/Silverlight.MultiWindow.Sample.March.2012.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Adding a desktop style (can show outside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;In desktop mode the window can pop outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;br /&gt;&lt;br /&gt;Showing a native popup:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;new&lt;/span&gt; PopupWindow
    {
        Width = 160,
        Height = 160,
        HorizontalOffset = 0,
        VerticalOffset = 0,
        Child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; TextBlock { Text = &lt;span style="color:#A31515;"&gt;&amp;quot;Hello world&amp;quot;&lt;/span&gt; },
        PlacementTarget = element,
        Placement = PlacementMode.Right,
        StaysOpen = &lt;span style="color:Blue;"&gt;false&lt;/span&gt;,
        IsOpen = &lt;span style="color:Blue;"&gt;true&lt;/span&gt;
    };
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Showing a modal dialog:&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    modalWindow.ShowDialog();
&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Tue, 28 Aug 2012 07:10:31 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120828071031A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=19</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx"&gt;ChildWindow&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435"&gt;ContextMenu&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx"&gt;Silverlight 5: Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx"&gt;Silverlight Context Menu Scrolling&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://trelford.com/blog/post/Pop.aspx"&gt;Silverlight 5 Native Popup Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://trelford.com/blog/post/Modal.aspx"&gt;Silverlight 5 Native Modal Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://trelford.com/blog/post/AgSpackle.aspx"&gt;Silverlight 5 Native Windows P/Invoke&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://trelford.com/blog/post/Blackhole.aspx"&gt;Reporting Bugs to Microsoft&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424"&gt;Silverlight 5 Toolkit source code not checked in&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170"&gt;ContextMenu of New Window always pops up in Main Window&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window"&gt;ChildWindow not displaying in System Window&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719572"&gt;Silverlight throws AccessViolationException&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/721975"&gt;Silverlight 5 MouseEventArgs.GetPosition does not respect Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://connect.microsoft.com/VisualStudio/feedback/details/757631/silverlight-5-responsiveness-degrades-after-multiple-windows-are-opened"&gt;Silverlight 5 Responsiveness Degrades After Multiple Windows Are Opened&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/757744/silverlight-5-window-content-disappears-after-unlocking-screen"&gt;Silverlight 5 Window Content Disappears After Unlocking Screen&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/758060/silverlight-5-control-updates-are-not-visible-when-screen-is-unlocked"&gt;Silverlight 5 Control Updates Are Not Visible When Screen Is Unlocked&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580"&gt;Remove Child window zoom In/out Animation&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows"&gt;Silverlight 5: Working with Operating System Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/"&gt;Day #5: Silverlight Drag and Drop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/"&gt;Silverlight FloatableWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/"&gt;Silverlight Drag Drop Manager&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/"&gt;LUCA UI for Silverlight&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/"&gt;Silverlight Menu Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sl4popupmenu.codeplex.com/"&gt;Menu and Context Menu for Silverlight 4.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/delay/archive/2010/04/15/alive-and-kickin-new-silverlight-4-toolkit-released-with-today-s-silverlight-4-rtw.aspx"&gt;Alive and kickin&amp;#39; (New Silverlight 4 Toolkit released with today&amp;#39;s Silverlight 4 RTW!)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Tue, 28 Aug 2012 07:03:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120828070329A</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/Silverlight.MultiWindow.Sample.March.2012.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Adding a desktop style (can show outside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;In desktop mode the window can pop outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Fri, 01 Jun 2012 11:55:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120601115515A</guid></item><item><title>Updated Wiki: Drag &amp; Drop Between Windows in Silverlight 5</title><link>http://slmultiwindow.codeplex.com/wikipage?title=Drag &amp; Drop Between Windows in Silverlight 5&amp;version=1</link><description>&lt;div class="wikidoc"&gt;Custom code is required to determine the drop target(s) of a drag operation.&lt;br /&gt;&lt;br /&gt;While dragging the current mouse position is available via the MouseMoveEvent:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/cc190492(v=vs.95).aspx"&gt;MouseEventArgs.GetPosition&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;From the current mouse position the current Window can be determined via Win32/PInvoke:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms633558(v=vs.85).aspx"&gt;WindowFromPoint&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Finally the target elements for the current mouse position in a window can be determined via:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper.findelementsinhostcoordinates(v=vs.95).aspx"&gt;VisualTreeHelper.FindElementsInHostCoordinates&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Fri, 20 Apr 2012 11:02:01 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Drag &amp; Drop Between Windows in Silverlight 5 20120420110201A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=18</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx"&gt;ChildWindow&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435"&gt;ContextMenu&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx"&gt;Silverlight 5: Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx"&gt;Silverlight Context Menu Scrolling&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424"&gt;Silverlight 5 Toolkit source code not checked in&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170"&gt;ContextMenu of New Window always pops up in Main Window&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window"&gt;ChildWindow not displaying in System Window&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719572"&gt;Silverlight throws AccessViolationException&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/721975"&gt;Silverlight 5 MouseEventArgs.GetPosition does not respect Windows&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580"&gt;Remove Child window zoom In/out Animation&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows"&gt;Silverlight 5: Working with Operating System Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/"&gt;Day #5: Silverlight Drag and Drop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/"&gt;Silverlight FloatableWindow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/"&gt;Silverlight Drag Drop Manager&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/"&gt;LUCA UI for Silverlight&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/"&gt;Silverlight Menu Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sl4popupmenu.codeplex.com/"&gt;Menu and Context Menu for Silverlight 4.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/delay/archive/2010/04/15/alive-and-kickin-new-silverlight-4-toolkit-released-with-today-s-silverlight-4-rtw.aspx"&gt;Alive and kickin&amp;#39; (New Silverlight 4 Toolkit released with today&amp;#39;s Silverlight 4 RTW!)&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Fri, 20 Apr 2012 09:24:43 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120420092443A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=17</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue" class="externalLink"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719572" class="externalLink"&gt;Silverlight throws AccessViolationException&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window" class="externalLink"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse" class="externalLink"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sl4popupmenu.codeplex.com/" class="externalLink"&gt;Menu and Context Menu for Silverlight 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/delay/archive/2010/04/15/alive-and-kickin-new-silverlight-4-toolkit-released-with-today-s-silverlight-4-rtw.aspx" class="externalLink"&gt;Alive and kickin&amp;#39; (New Silverlight 4 Toolkit released with today&amp;#39;s Silverlight 4 RTW!)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Mon, 19 Mar 2012 14:58:26 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120319025826P</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=13</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/Silverlight.MultiWindow.Sample.March.2012.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Adding a desktop style (can show outsside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;In desktop mode the window can pop outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Tue, 13 Mar 2012 22:05:48 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120313100548P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=16</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue" class="externalLink"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window" class="externalLink"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse" class="externalLink"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sl4popupmenu.codeplex.com/" class="externalLink"&gt;Menu and Context Menu for Silverlight 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/delay/archive/2010/04/15/alive-and-kickin-new-silverlight-4-toolkit-released-with-today-s-silverlight-4-rtw.aspx" class="externalLink"&gt;Alive and kickin&amp;#39; (New Silverlight 4 Toolkit released with today&amp;#39;s Silverlight 4 RTW!)&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Tue, 13 Mar 2012 22:04:08 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120313100408P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=15</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue" class="externalLink"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window" class="externalLink"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse" class="externalLink"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://sl4popupmenu.codeplex.com/" class="externalLink"&gt;Menu and Context Menu for Silverlight 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Mon, 12 Mar 2012 20:49:22 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120312084922P</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=12</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/Silverlight.MultiWindow.Sample.March.2012.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: the ContextMenu automatically shows a scroll bar when there is not enough space in the window to display all the menu items.&lt;br /&gt;&lt;br /&gt;Adding a desktop style (can show outsside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: in desktop mode the window can appear outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 11 Mar 2012 13:09:27 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120311010927P</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/slmultiwindow.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent window) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: the ContextMenu automatically shows a scroll bar when there is not enough space in the window to display all the menu items.&lt;br /&gt;&lt;br /&gt;Adding a desktop style (can show outsside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: in desktop mode the window can appear outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 11 Mar 2012 10:16:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120311101630A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=14</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue" class="externalLink"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/247342.aspx/1?Silverlight+5+Out+of+Browser+Child+Window+in+a+non+main+window" class="externalLink"&gt;Silverlight 5 Out-of-Browser - Child Window in a non-main window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse" class="externalLink"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 11 Mar 2012 10:14:37 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120311101437A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=13</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/719317/silverlight-5-error-1001-font-filename-issue" class="externalLink"&gt;Silverlight 5 Error 1001 - Font Filename Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Forums issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://forums.silverlight.net/t/250807.aspx/1?Silverlight+5+NotificationWindow+captures+mainwindow+mouse" class="externalLink"&gt;Silverlight 5 NotificationWindow captures mainwindow mouse&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 11 Mar 2012 10:10:57 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120311101057A</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=10</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/slmultiwindow.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a web style (constrained to parent size) ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: the ContextMenu automatically shows a scroll bar when there is not enough space in the window to display all the menu items.&lt;br /&gt;&lt;br /&gt;Adding a desktop style (can show outsside of parent window) ContextMenuWindow:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenuWindow&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenuWindow&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: in desktop mode the window may appear outside of the parent window.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://trelford.com/ContextMenu_SL5_Native.png" /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 11 Mar 2012 09:31:30 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120311093130A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=12</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://floatablewindow.codeplex.com/" class="externalLink"&gt;Silverlight FloatableWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 04 Mar 2012 17:31:20 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120304053120P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=11</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.jeffblankenburg.com/2009/07/05/day-5-silverlight-drag-and-drop/" class="externalLink"&gt;Day #5: Silverlight Drag and Drop&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sun, 04 Mar 2012 14:44:56 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120304024456P</guid></item><item><title>Updated Wiki: Home</title><link>http://slmultiwindow.codeplex.com/wikipage?version=9</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;Multi-window aware versions of key Silverlight toolkit controls including ChildWindow and ContextMenu. Also available via Nuget.&lt;br /&gt;&lt;br /&gt;Right click the sample application below to install it on your desktop and try the multi-window controls:&lt;br /&gt;&lt;br /&gt;&lt;object data="data:application/x-silverlight-2," type="application/x-silverlight-2" style="height:256px;width:512px;"&gt;&lt;param name="source" value="http://trelford.com/slmultiwindow.xap"&gt;&lt;/param&gt;&lt;param name="windowless" value="true"&gt;&lt;/param&gt;&lt;param name="initParams" value="type=application/x-silverlight-2"&gt;&lt;/param&gt;&lt;param name="minRuntimeVersion" value="5.0.61118.0"&gt;&lt;/param&gt;&lt;param name="autoUpgrade" value="true"&gt;&lt;/param&gt;&lt;p&gt;You need to install Microsoft Silverlight to view this content. &lt;a href="http://go.microsoft.com/fwlink/?LinkID=149156&amp;v=5.0.61118.0" style="text-decoration:none;"&gt;Get Silverlight!&lt;br /&gt;&lt;img src="http://go.microsoft.com/fwlink/?LinkID=108181" alt="Get Microsoft Silverlight" style="border-style:none;" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;iframe style="visibility:hidden;height:0;width:0;border-width:0;"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Showing a ChildWindow in a non-main/secondary window:&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;var&lt;/span&gt; child = &lt;span style="color:Blue;"&gt;new&lt;/span&gt; ChildWindow { Title = &lt;span style="color:#A31515;"&gt;&amp;quot;Child Window&amp;quot;&lt;/span&gt; };
    child.SetWindow(Window.GetWindow(&lt;span style="color:Blue;"&gt;this&lt;/span&gt;));
    child.Show();
&lt;/pre&gt;&lt;/div&gt;Adding a ContextMenu:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
    &amp;lt;TextBlock Text=&amp;quot;Right click on me to show the context menu&amp;quot;&amp;gt;
            &amp;lt;multiwindow:ContextMenuService.ContextMenu&amp;gt;
                &amp;lt;multiwindow:ContextMenu&amp;gt;
                    &amp;lt;multiwindow:MenuItem Header=&amp;quot;Menu Item&amp;quot;/&amp;gt;
                &amp;lt;/multiwindow:ContextMenu&amp;gt;
            &amp;lt;/multiwindow:ContextMenuService.ContextMenu&amp;gt;
    &amp;lt;/TextBlock&amp;gt;
&lt;/pre&gt;&lt;br /&gt;Note: the ContextMenu automatically shows a scroll bar when there is not enough space in the window to display all the menu items.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sat, 03 Mar 2012 18:49:18 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120303064918P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=10</link><description>&lt;div class="wikidoc"&gt;The current implementations of the &lt;a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.childwindow(v=vs.95).aspx" class="externalLink"&gt;ChildWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 runtime and the &lt;a href="http://silverlight.codeplex.com/releases/view/78435" class="externalLink"&gt;ContextMenu&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sat, 03 Mar 2012 13:43:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120303014358P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://slmultiwindow.codeplex.com/documentation?version=9</link><description>&lt;div class="wikidoc"&gt;The current implementations of the ChildWindow control in the Silverlight 5 runtime and the ContextMenu control in the Silverlight 5 Toolkit do not work on external windows. &lt;br /&gt;This project provides multi-window capable versions of the ChildWindow and ContextMenu controls based on the Silverlight Toolkit implementations.&lt;br /&gt;&lt;br /&gt;Articles:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/sl5multiwindow.aspx" class="externalLink"&gt;Silverlight 5: Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://uhttp://www.trelford.com/blog/post/SL5Child.aspx" class="externalLink"&gt;Silverlight 5’s ChildWindow in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SL5ContextMenu.aspx" class="externalLink"&gt;Silverlight 5 Toolkit’s ContextMenu in Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.trelford.com/blog/post/SLContextMenuScroll.aspx" class="externalLink"&gt;Silverlight Context Menu Scrolling&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Silverlight Toolkit issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10424" class="externalLink"&gt;Silverlight 5 Toolkit source code not checked in&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlight.codeplex.com/workitem/10170" class="externalLink"&gt;ContextMenu of New Window always pops up in Main Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;MSConnect issues:
&lt;ul&gt;&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718000/childwindow-not-displaying-in-system-window" class="externalLink"&gt;ChildWindow not displaying in System Window&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/670096/silverlight5-out-of-browser-contextmenu-is-only-shown-in-mainwindow" class="externalLink"&gt;Silverlight5 out-of-browser: ContextMenu is only shown in MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/717012/tooltips-offsset-depends-on-mainwindow" class="externalLink"&gt;Tooltip&amp;#39;s offsset depends on MainWindow&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://connect.microsoft.com/VisualStudio/feedback/details/718460/borderless-silverlight-out-of-browser-app-maximize-on-second-monitor-issue" class="externalLink"&gt;Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;ChildWindow customization:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blogs.microsoft.co.il/blogs/alex_golesh/archive/2009/09/24/silverlight-quick-tip-childwindow-title-customization.aspx" class="externalLink"&gt;Silverlight Quick Tip: ChildWindow Title Customization&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://forums.silverlight.net/p/147967/329580.aspx#329580" class="externalLink"&gt;Remove Child window zoom In/out Animation&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;General Silverlight 5 Multi-Window support:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://10rem.net/blog/2011/04/13/silverlight-5-working-with-operating-system-windows" class="externalLink"&gt;Silverlight 5: Working with Operating System Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://mtaulty.com/CommunityServer/blogs/mike_taultys_blog/archive/2011/04/18/silverlight-5-beta-rough-notes-multiple-window-support.aspx" class="externalLink"&gt;Silverlight 5 Beta Rough Notes–Multiple Window Support&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pitorque.de/MisterGoodcat/post/Silverlight-5-Tidbits-Multiple-Windows.aspx" class="externalLink"&gt;Silverlight 5 Tidbits–Multiple Windows&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;Misc:
&lt;ul&gt;&lt;li&gt;&lt;a href="http://jevgenijpankov.heliocode.com/articles/FloatingWindow.aspx" class="externalLink"&gt;FloatingWindow — multi-windows interface for Silverlight and WPF&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://silverlightdragdrop.codeplex.com/" class="externalLink"&gt;Silverlight Drag Drop Manager&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://lucaui.codeplex.com/" class="externalLink"&gt;LUCA UI for Silverlight&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://slmenu.codeplex.com/" class="externalLink"&gt;Silverlight Menu Control&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>ptrelford</author><pubDate>Sat, 03 Mar 2012 13:34:12 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20120303013412P</guid></item></channel></rss>