<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>AvalonDock Work Item Rss Feed</title><link>http://www.codeplex.com/AvalonDock/WorkItem/List.aspx</link><description>AvalonDock Work Item Rss Description</description><item><title>Closed Unassigned: [Version 2.0] NullReference and double floating windows [16204]</title><link>http://avalondock.codeplex.com/workitem/16204</link><description>Hi,&lt;br /&gt;&lt;br /&gt;having two issues while using floating windows. The second issue gives me this exception&amp;#58;&lt;br /&gt;&lt;br /&gt;   bei AvalonDock.Controls.LayoutAnchorableFloatingWindowControl.OnClosed&amp;#40;EventArgs e&amp;#41; in C&amp;#58;&amp;#92;Users&amp;#92;adospace&amp;#92;Documents&amp;#92;Visual Studio 2010&amp;#92;Projects&amp;#92;AvalonDock&amp;#92;AvalonDock&amp;#92;Controls&amp;#92;LayoutAnchorableFloatingWindowControl.cs&amp;#58;Zeile 223.&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WmDestroy&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WindowFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Interop.HwndSource.PublicHooksFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndWrapper.WndProc&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndSubclass.DispatcherCallbackOperation&amp;#40;Object o&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall&amp;#40;Delegate callback, Object args, Int32 numArgs&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen&amp;#40;Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler&amp;#41;&lt;br /&gt;&lt;br /&gt;Steps reproduce&amp;#58;&lt;br /&gt;- Having multiple LayoutAnchorablItems&lt;br /&gt;- Drag out one of the anchorables to a floating window&lt;br /&gt;- save the layout and close the application&lt;br /&gt;- open the application and load the layout&lt;br /&gt;- Issue 1&amp;#58; the floating window now exists two times. One window with the correct view inside. The other one without a view. DataContext&amp;#47;ViewModels seem to set all right because the Window title is showing correctly&lt;br /&gt;- Issue 2&amp;#58; If one now tries to drag one of the floating windows back into the main window. One will get the Exception mentioned earlier.&lt;br /&gt;&lt;br /&gt;It just happens after restarting the application and reloading a layout.&lt;br /&gt;&lt;br /&gt;Following lines showing the load and save of the layout&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;StringWriter writer &amp;#61; new StringWriter&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;layoutSerializer.Serialize&amp;#40;writer&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;if &amp;#40;&amp;#33;string.IsNullOrEmpty&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41; &amp;#38;&amp;#38; obj.DockingManager &amp;#33;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;   StringReader reader &amp;#61; new StringReader&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41;&amp;#59;&lt;br /&gt;   XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;   layoutSerializer.Deserialize&amp;#40;reader&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Maybe someone can help me out with this.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Greetings&lt;br /&gt;debgz&lt;br /&gt;&lt;br /&gt;Edit 1&amp;#58; Just recognized while playing around. I am not draging the floating window back to the main window but the last anchorable from within the floating window. Seems the floating window then tries to close themself becaus it has no childs.&lt;br /&gt;&lt;br /&gt;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;--&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&lt;br /&gt;&lt;br /&gt;Some more Information&amp;#58;&lt;br /&gt;&lt;br /&gt;LayoutAnchorableFloatingWindowControl from line 214&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;protected override void OnClosed&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var root &amp;#61; Model.Root&amp;#59;&lt;br /&gt;            root.Manager.RemoveFloatingWindow&amp;#40;this&amp;#41;&amp;#59;&lt;br /&gt;            root.CollectGarbage&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;_overlayWindow &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                _overlayWindow.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                _overlayWindow &amp;#61; null&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The model Root is null. hence the exception when calling root.xxx&lt;br /&gt;Question is&amp;#58; Why is Root NULL&amp;#63;&lt;br /&gt;&lt;br /&gt;EDIT 1&amp;#58; Just checked the saved layout. there is only a single floating Window. As I am not generating the floating windows by myself the problem seems to be inside avalon.&lt;br /&gt;</description><author>emartin</author><pubDate>Tue, 21 May 2013 14:34:47 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: [Version 2.0] NullReference and double floating windows [16204] 20130521023447P</guid></item><item><title>Commented Unassigned: [Version 2.0] NullReference and double floating windows [16204]</title><link>http://avalondock.codeplex.com/workitem/16204</link><description>Hi,&lt;br /&gt;&lt;br /&gt;having two issues while using floating windows. The second issue gives me this exception&amp;#58;&lt;br /&gt;&lt;br /&gt;   bei AvalonDock.Controls.LayoutAnchorableFloatingWindowControl.OnClosed&amp;#40;EventArgs e&amp;#41; in C&amp;#58;&amp;#92;Users&amp;#92;adospace&amp;#92;Documents&amp;#92;Visual Studio 2010&amp;#92;Projects&amp;#92;AvalonDock&amp;#92;AvalonDock&amp;#92;Controls&amp;#92;LayoutAnchorableFloatingWindowControl.cs&amp;#58;Zeile 223.&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WmDestroy&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WindowFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Interop.HwndSource.PublicHooksFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndWrapper.WndProc&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndSubclass.DispatcherCallbackOperation&amp;#40;Object o&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall&amp;#40;Delegate callback, Object args, Int32 numArgs&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen&amp;#40;Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler&amp;#41;&lt;br /&gt;&lt;br /&gt;Steps reproduce&amp;#58;&lt;br /&gt;- Having multiple LayoutAnchorablItems&lt;br /&gt;- Drag out one of the anchorables to a floating window&lt;br /&gt;- save the layout and close the application&lt;br /&gt;- open the application and load the layout&lt;br /&gt;- Issue 1&amp;#58; the floating window now exists two times. One window with the correct view inside. The other one without a view. DataContext&amp;#47;ViewModels seem to set all right because the Window title is showing correctly&lt;br /&gt;- Issue 2&amp;#58; If one now tries to drag one of the floating windows back into the main window. One will get the Exception mentioned earlier.&lt;br /&gt;&lt;br /&gt;It just happens after restarting the application and reloading a layout.&lt;br /&gt;&lt;br /&gt;Following lines showing the load and save of the layout&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;StringWriter writer &amp;#61; new StringWriter&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;layoutSerializer.Serialize&amp;#40;writer&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;if &amp;#40;&amp;#33;string.IsNullOrEmpty&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41; &amp;#38;&amp;#38; obj.DockingManager &amp;#33;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;   StringReader reader &amp;#61; new StringReader&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41;&amp;#59;&lt;br /&gt;   XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;   layoutSerializer.Deserialize&amp;#40;reader&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Maybe someone can help me out with this.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Greetings&lt;br /&gt;debgz&lt;br /&gt;&lt;br /&gt;Edit 1&amp;#58; Just recognized while playing around. I am not draging the floating window back to the main window but the last anchorable from within the floating window. Seems the floating window then tries to close themself becaus it has no childs.&lt;br /&gt;&lt;br /&gt;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;--&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&lt;br /&gt;&lt;br /&gt;Some more Information&amp;#58;&lt;br /&gt;&lt;br /&gt;LayoutAnchorableFloatingWindowControl from line 214&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;protected override void OnClosed&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var root &amp;#61; Model.Root&amp;#59;&lt;br /&gt;            root.Manager.RemoveFloatingWindow&amp;#40;this&amp;#41;&amp;#59;&lt;br /&gt;            root.CollectGarbage&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;_overlayWindow &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                _overlayWindow.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                _overlayWindow &amp;#61; null&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The model Root is null. hence the exception when calling root.xxx&lt;br /&gt;Question is&amp;#58; Why is Root NULL&amp;#63;&lt;br /&gt;&lt;br /&gt;EDIT 1&amp;#58; Just checked the saved layout. there is only a single floating Window. As I am not generating the floating windows by myself the problem seems to be inside avalon.&lt;br /&gt;Comments: ** Comment from web user: chandramouleswara ** &lt;p&gt;I think this used to happen in a previous version of AD. The latest version does not have this problem.&lt;/p&gt;&lt;p&gt;Thanks&lt;br&gt;Chandra&lt;/p&gt;</description><author>chandramouleswara</author><pubDate>Mon, 20 May 2013 01:00:51 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: [Version 2.0] NullReference and double floating windows [16204] 20130520010051A</guid></item><item><title>Created Unassigned: Datagrid data don't show up [16205]</title><link>http://avalondock.codeplex.com/workitem/16205</link><description>Hi&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using AvalonDock in WPF in .NEt 4.5 VS 2012.&lt;br /&gt;&lt;br /&gt;I created mainwindow, with docking properties as below.&lt;br /&gt;&lt;br /&gt;&amp;#60;Window x&amp;#58;Class&amp;#61;&amp;#34;DiagnosticsClient.MainWindow&amp;#34;&lt;br /&gt;        xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;        xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;         xmlns&amp;#58;ADock&amp;#61;&amp;#34;clr-namespace&amp;#58;AvalonDock&amp;#59;assembly&amp;#61;AvalonDock&amp;#34;&lt;br /&gt;         Title&amp;#61;&amp;#34;MainWindow&amp;#34; Height&amp;#61;&amp;#34;768&amp;#34; Width&amp;#61;&amp;#34;1366&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid&amp;#62; &amp;#60;ADock&amp;#58;DockingManager x&amp;#58;Name&amp;#61;&amp;#34;dockManager&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;ADock&amp;#58;ResizingPanel Name&amp;#61;&amp;#34;TopLeftPanel&amp;#34; Orientation&amp;#61;&amp;#34;Horizontal&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;ADock&amp;#58;ResizingPanel Orientation&amp;#61;&amp;#34;Horizontal&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;ADock&amp;#58;DockablePane ADock&amp;#58;ResizingPanel.ResizeWidth&amp;#61;&amp;#34;450&amp;#34;&amp;#62;&lt;br /&gt;                        &amp;#60;ADock&amp;#58;DockableContent Name&amp;#61;&amp;#34;ScanParameters&amp;#34; Title&amp;#61;&amp;#34;Scan Parameters&amp;#34; Width&amp;#61;&amp;#34;250&amp;#34;&amp;#62;&lt;br /&gt;                            &amp;#60;ListBox Grid.Row&amp;#61;&amp;#34;0&amp;#34;&amp;#62;&lt;br /&gt;                                &amp;#60;ListBoxItem Content&amp;#61;&amp;#34;ScanParameters 1&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                &amp;#60;ListBoxItem Content&amp;#61;&amp;#34;ScanParameters 2&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                &amp;#60;ListBoxItem Content&amp;#61;&amp;#34;ScanParameters 3&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                            &amp;#60;&amp;#47;ListBox&amp;#62;&lt;br /&gt;                        &amp;#60;&amp;#47;ADock&amp;#58;DockableContent&amp;#62;&lt;br /&gt;                        &amp;#60;ADock&amp;#58;DockableContent x&amp;#58;Name&amp;#61;&amp;#34;classesContent&amp;#34; Title&amp;#61;&amp;#34;Modules&amp;#34; Width&amp;#61;&amp;#34;450&amp;#34;&amp;#62;&lt;br /&gt;                            &amp;#60;Grid&amp;#62;&lt;br /&gt;                                &amp;#60;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                                    &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;150&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                    &amp;#60;ColumnDefinition Width&amp;#61;&amp;#34;300&amp;#42;&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                &amp;#60;&amp;#47;Grid.ColumnDefinitions&amp;#62;&lt;br /&gt;                                &amp;#60;TreeView Width&amp;#61;&amp;#34;160&amp;#34; HorizontalAlignment&amp;#61;&amp;#34;Left&amp;#34; Grid.Column&amp;#61;&amp;#34;0&amp;#34; x&amp;#58;Name&amp;#61;&amp;#34;mainTreeView&amp;#34; SelectedItemChanged&amp;#61;&amp;#34;mainTreeView_SelectedItemChanged&amp;#34;&amp;#62;&lt;br /&gt;                                &amp;#60;&amp;#47;TreeView&amp;#62;&lt;br /&gt;                                &amp;#60;DataGrid  x&amp;#58;Name&amp;#61;&amp;#34;_dataReadBacksGrid&amp;#34; ColumnHeaderHeight&amp;#61;&amp;#34;25&amp;#34; AutoGenerateColumns&amp;#61;&amp;#34;False&amp;#34;  Grid.Column&amp;#61;&amp;#34;1&amp;#34; Margin&amp;#61;&amp;#34;0&amp;#34; ItemsSource&amp;#61;&amp;#34;&amp;#123;Binding ModuleReadbackList&amp;#125;&amp;#34; AlternatingRowBackground&amp;#61;&amp;#34;AliceBlue&amp;#34;&amp;#62;&lt;br /&gt;                                    &amp;#60;DataGrid.Columns&amp;#62;&lt;br /&gt;                                        &amp;#60;DataGridTextColumn Binding&amp;#61;&amp;#34;&amp;#123;Binding Name&amp;#125;&amp;#34; Header&amp;#61;&amp;#34;Name&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                        &amp;#60;DataGridTextColumn Binding&amp;#61;&amp;#34;&amp;#123;Binding LastReadValue&amp;#125;&amp;#34; Header&amp;#61;&amp;#34;Value&amp;#34; Width&amp;#61;&amp;#34;Auto&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;                                    &amp;#60;&amp;#47;DataGrid.Columns&amp;#62;&lt;br /&gt;                                &amp;#60;&amp;#47;DataGrid&amp;#62;&lt;br /&gt; &amp;#60;&amp;#47;ADock&amp;#58;ResizingPanel&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;ADock&amp;#58;ResizingPanel&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;ADock&amp;#58;DockingManager&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Window&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Issues&lt;br /&gt;&lt;br /&gt;1. in design time, .xaml shows error as &amp;#34;Object reference not set an instance&amp;#34;&lt;br /&gt;&lt;br /&gt;But I compiles fine and executes fine.&lt;br /&gt;&lt;br /&gt;2. After loading, when i select treeview item, it shows the data in datagrid. everything works fine.&lt;br /&gt;Now I set the left panel to autohide, bring back data is gone from datagrid, even if i select treeview item again its not showing up. &lt;br /&gt;&lt;br /&gt;But when i dock again, shows the data.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m really confused, because, event is going through and datagrid has Itemsource items, but its not showing in autohide mode.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;any help is more welcome.&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;</description><author>sreeker</author><pubDate>Fri, 17 May 2013 22:44:54 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Datagrid data don't show up [16205] 20130517104454P</guid></item><item><title>Commented Unassigned: [Version 2.0] NullReference and double floating windows [16204]</title><link>http://avalondock.codeplex.com/workitem/16204</link><description>Hi,&lt;br /&gt;&lt;br /&gt;having two issues while using floating windows. The second issue gives me this exception&amp;#58;&lt;br /&gt;&lt;br /&gt;   bei AvalonDock.Controls.LayoutAnchorableFloatingWindowControl.OnClosed&amp;#40;EventArgs e&amp;#41; in C&amp;#58;&amp;#92;Users&amp;#92;adospace&amp;#92;Documents&amp;#92;Visual Studio 2010&amp;#92;Projects&amp;#92;AvalonDock&amp;#92;AvalonDock&amp;#92;Controls&amp;#92;LayoutAnchorableFloatingWindowControl.cs&amp;#58;Zeile 223.&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WmDestroy&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WindowFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Interop.HwndSource.PublicHooksFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndWrapper.WndProc&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndSubclass.DispatcherCallbackOperation&amp;#40;Object o&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall&amp;#40;Delegate callback, Object args, Int32 numArgs&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen&amp;#40;Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler&amp;#41;&lt;br /&gt;&lt;br /&gt;Steps reproduce&amp;#58;&lt;br /&gt;- Having multiple LayoutAnchorablItems&lt;br /&gt;- Drag out one of the anchorables to a floating window&lt;br /&gt;- save the layout and close the application&lt;br /&gt;- open the application and load the layout&lt;br /&gt;- Issue 1&amp;#58; the floating window now exists two times. One window with the correct view inside. The other one without a view. DataContext&amp;#47;ViewModels seem to set all right because the Window title is showing correctly&lt;br /&gt;- Issue 2&amp;#58; If one now tries to drag one of the floating windows back into the main window. One will get the Exception mentioned earlier.&lt;br /&gt;&lt;br /&gt;It just happens after restarting the application and reloading a layout.&lt;br /&gt;&lt;br /&gt;Following lines showing the load and save of the layout&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;StringWriter writer &amp;#61; new StringWriter&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;layoutSerializer.Serialize&amp;#40;writer&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;if &amp;#40;&amp;#33;string.IsNullOrEmpty&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41; &amp;#38;&amp;#38; obj.DockingManager &amp;#33;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;   StringReader reader &amp;#61; new StringReader&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41;&amp;#59;&lt;br /&gt;   XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;   layoutSerializer.Deserialize&amp;#40;reader&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Maybe someone can help me out with this.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Greetings&lt;br /&gt;debgz&lt;br /&gt;&lt;br /&gt;Edit 1&amp;#58; Just recognized while playing around. I am not draging the floating window back to the main window but the last anchorable from within the floating window. Seems the floating window then tries to close themself becaus it has no childs.&lt;br /&gt;&lt;br /&gt;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;--&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&lt;br /&gt;&lt;br /&gt;Some more Information&amp;#58;&lt;br /&gt;&lt;br /&gt;LayoutAnchorableFloatingWindowControl from line 214&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;protected override void OnClosed&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var root &amp;#61; Model.Root&amp;#59;&lt;br /&gt;            root.Manager.RemoveFloatingWindow&amp;#40;this&amp;#41;&amp;#59;&lt;br /&gt;            root.CollectGarbage&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;_overlayWindow &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                _overlayWindow.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                _overlayWindow &amp;#61; null&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The model Root is null. hence the exception when calling root.xxx&lt;br /&gt;Question is&amp;#58; Why is Root NULL&amp;#63;&lt;br /&gt;&lt;br /&gt;EDIT 1&amp;#58; Just checked the saved layout. there is only a single floating Window. As I am not generating the floating windows by myself the problem seems to be inside avalon.&lt;br /&gt;Comments: ** Comment from web user: emartin ** &lt;p&gt;I've tried to reproduce the issue without success using &amp;quot;AvalonDock.TestApp&amp;quot; application.&lt;br&gt;* Start the application&lt;br&gt;* Drag ToolWindow1 out in a floating window&lt;br&gt;* Menu Layout-&amp;gt;Save-&amp;gt;Layout1&lt;br&gt;* Close the application&lt;br&gt;* Start the application again&lt;br&gt;* Menu Layout-&amp;gt;Load-&amp;gt;Layout1&lt;/p&gt;&lt;p&gt;Did not reproduce the problem.&lt;br&gt;Could you provide a sample app that reproduce it ?&lt;/p&gt;</description><author>emartin</author><pubDate>Fri, 17 May 2013 18:26:35 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: [Version 2.0] NullReference and double floating windows [16204] 20130517062635P</guid></item><item><title>Created Unassigned: [Version 2.0] NullReference and double floating windows [16204]</title><link>http://avalondock.codeplex.com/workitem/16204</link><description>Hi,&lt;br /&gt;&lt;br /&gt;having two issues while using floating windows. The second issue gives me this exception&amp;#58;&lt;br /&gt;&lt;br /&gt;   bei AvalonDock.Controls.LayoutAnchorableFloatingWindowControl.OnClosed&amp;#40;EventArgs e&amp;#41; in C&amp;#58;&amp;#92;Users&amp;#92;adospace&amp;#92;Documents&amp;#92;Visual Studio 2010&amp;#92;Projects&amp;#92;AvalonDock&amp;#92;AvalonDock&amp;#92;Controls&amp;#92;LayoutAnchorableFloatingWindowControl.cs&amp;#58;Zeile 223.&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WmDestroy&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Window.WindowFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Interop.HwndSource.PublicHooksFilterMessage&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndWrapper.WndProc&amp;#40;IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean&amp;#38; handled&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Win32.HwndSubclass.DispatcherCallbackOperation&amp;#40;Object o&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall&amp;#40;Delegate callback, Object args, Int32 numArgs&amp;#41;&lt;br /&gt;&lt;br /&gt;   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen&amp;#40;Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler&amp;#41;&lt;br /&gt;&lt;br /&gt;Steps reproduce&amp;#58;&lt;br /&gt;- Having multiple LayoutAnchorablItems&lt;br /&gt;- Drag out one of the anchorables to a floating window&lt;br /&gt;- save the layout and close the application&lt;br /&gt;- open the application and load the layout&lt;br /&gt;- Issue 1&amp;#58; the floating window now exists two times. One window with the correct view inside. The other one without a view. DataContext&amp;#47;ViewModels seem to set all right because the Window title is showing correctly&lt;br /&gt;- Issue 2&amp;#58; If one now tries to drag one of the floating windows back into the main window. One will get the Exception mentioned earlier.&lt;br /&gt;&lt;br /&gt;It just happens after restarting the application and reloading a layout.&lt;br /&gt;&lt;br /&gt;Following lines showing the load and save of the layout&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;StringWriter writer &amp;#61; new StringWriter&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;layoutSerializer.Serialize&amp;#40;writer&amp;#41;&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;if &amp;#40;&amp;#33;string.IsNullOrEmpty&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41; &amp;#38;&amp;#38; obj.DockingManager &amp;#33;&amp;#61; null&amp;#41; &amp;#123;&lt;br /&gt;   StringReader reader &amp;#61; new StringReader&amp;#40;ApplicationContext.Instance.Settings.WindowLayout&amp;#41;&amp;#59;&lt;br /&gt;   XmlLayoutSerializer layoutSerializer &amp;#61; new XmlLayoutSerializer&amp;#40;obj.DockingManager&amp;#41;&amp;#59;&lt;br /&gt;   layoutSerializer.Deserialize&amp;#40;reader&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Maybe someone can help me out with this.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Greetings&lt;br /&gt;debgz&lt;br /&gt;&lt;br /&gt;Edit 1&amp;#58; Just recognized while playing around. I am not draging the floating window back to the main window but the last anchorable from within the floating window. Seems the floating window then tries to close themself becaus it has no childs.&lt;br /&gt;&lt;br /&gt;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;--&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&amp;#61;-&lt;br /&gt;&lt;br /&gt;Some more Information&amp;#58;&lt;br /&gt;&lt;br /&gt;LayoutAnchorableFloatingWindowControl from line 214&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;protected override void OnClosed&amp;#40;EventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            var root &amp;#61; Model.Root&amp;#59;&lt;br /&gt;            root.Manager.RemoveFloatingWindow&amp;#40;this&amp;#41;&amp;#59;&lt;br /&gt;            root.CollectGarbage&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;_overlayWindow &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                _overlayWindow.Close&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;                _overlayWindow &amp;#61; null&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;The model Root is null. hence the exception when calling root.xxx&lt;br /&gt;Question is&amp;#58; Why is Root NULL&amp;#63;&lt;br /&gt;&lt;br /&gt;EDIT 1&amp;#58; Just checked the saved layout. there is only a single floating Window. As I am not generating the floating windows by myself the problem seems to be inside avalon.&lt;br /&gt;</description><author>emartin</author><pubDate>Fri, 17 May 2013 18:17:11 GMT</pubDate><guid isPermaLink="false">Created Unassigned: [Version 2.0] NullReference and double floating windows [16204] 20130517061711P</guid></item><item><title>Edited Issue: Cannot resize panes [16194]</title><link>http://avalondock.codeplex.com/workitem/16194</link><description>To reproduce, define the following style for your application.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;Application x&amp;#58;Class&amp;#61;&amp;#34;WpfApplication1.App&amp;#34;&lt;br /&gt;             xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;             xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;             StartupUri&amp;#61;&amp;#34;MainWindow.xaml&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Application.Resources&amp;#62;&lt;br /&gt;        &amp;#60;Style TargetType&amp;#61;&amp;#34;Window&amp;#34; BasedOn&amp;#61;&amp;#34;&amp;#123;StaticResource ResourceKey&amp;#61;&amp;#123;x&amp;#58;Type Window&amp;#125;&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;Setter Property&amp;#61;&amp;#34;SizeToContent&amp;#34; Value&amp;#61;&amp;#34;WidthAndHeight&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Application.Resources&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Application&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Then try to resize any pane in your application, you will notice that this is not possible. &lt;br /&gt;&lt;br /&gt;AvalonDock is using a Window to facilitate resizing of the panes. And due to the defined style, SizeToContent is being applied to all Windows in the application. This messes with the calculations that AvalonDock is doing while resizing.&lt;br /&gt;</description><author>emartin</author><pubDate>Fri, 17 May 2013 18:03:47 GMT</pubDate><guid isPermaLink="false">Edited Issue: Cannot resize panes [16194] 20130517060347P</guid></item><item><title>Closed Issue: AvalonDock XmlLayoutSerializer does not load layout [16159]</title><link>http://avalondock.codeplex.com/workitem/16159</link><description>I&amp;#39;ve asked the question with all the details &amp;#91;here&amp;#93;&amp;#40;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;questions&amp;#47;15970888&amp;#47;avalondock-dockingmanager-does-not-load-layout&amp;#41;&lt;br /&gt;</description><author>emartin</author><pubDate>Fri, 17 May 2013 14:59:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: AvalonDock XmlLayoutSerializer does not load layout [16159] 20130517025942P</guid></item><item><title>Created Unassigned: VS2012 - WPF Sample Project not working [16202]</title><link>http://avalondock.codeplex.com/workitem/16202</link><description>HI&lt;br /&gt;&lt;br /&gt;Tried use Avalon Dock in WPF- VS 2012, sample project compiles and executes fine, but design time not showing and It could not find any AvalonDock controls, like Resizepanel, other then DockManager, its not find  sub elements. VS2012 .NET 4.5 and x86.&lt;br /&gt;</description><author>sreeker</author><pubDate>Thu, 16 May 2013 22:31:01 GMT</pubDate><guid isPermaLink="false">Created Unassigned: VS2012 - WPF Sample Project not working [16202] 20130516103101P</guid></item><item><title>Commented Issue: Cannot resize panes [16194]</title><link>http://avalondock.codeplex.com/workitem/16194</link><description>To reproduce, define the following style for your application.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;Application x&amp;#58;Class&amp;#61;&amp;#34;WpfApplication1.App&amp;#34;&lt;br /&gt;             xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;             xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;             StartupUri&amp;#61;&amp;#34;MainWindow.xaml&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Application.Resources&amp;#62;&lt;br /&gt;        &amp;#60;Style TargetType&amp;#61;&amp;#34;Window&amp;#34; BasedOn&amp;#61;&amp;#34;&amp;#123;StaticResource ResourceKey&amp;#61;&amp;#123;x&amp;#58;Type Window&amp;#125;&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;Setter Property&amp;#61;&amp;#34;SizeToContent&amp;#34; Value&amp;#61;&amp;#34;WidthAndHeight&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Application.Resources&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Application&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Then try to resize any pane in your application, you will notice that this is not possible. &lt;br /&gt;&lt;br /&gt;AvalonDock is using a Window to facilitate the resize of the panes. And due to the defined style, SizeToContent is being applied to all Windows in the application. This messes with the calculations that AvalonDock is doing while resizing.&lt;br /&gt;Comments: ** Comment from web user: h0od ** &lt;p&gt;Patch submitted: [Patch 14466](https://www.codeplex.com/Download?ProjectName=avalondock&amp;amp;DownloadId=678630)&lt;br&gt;&lt;/p&gt;</description><author>h0od</author><pubDate>Sun, 12 May 2013 09:51:05 GMT</pubDate><guid isPermaLink="false">Commented Issue: Cannot resize panes [16194] 20130512095105A</guid></item><item><title>Created Issue: Cannot resize panes [16194]</title><link>http://avalondock.codeplex.com/workitem/16194</link><description>To reproduce, define the following style for your application.&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;Application x&amp;#58;Class&amp;#61;&amp;#34;WpfApplication1.App&amp;#34;&lt;br /&gt;             xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;             xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;             StartupUri&amp;#61;&amp;#34;MainWindow.xaml&amp;#34;&amp;#62;&lt;br /&gt;    &amp;#60;Application.Resources&amp;#62;&lt;br /&gt;        &amp;#60;Style TargetType&amp;#61;&amp;#34;Window&amp;#34; BasedOn&amp;#61;&amp;#34;&amp;#123;StaticResource ResourceKey&amp;#61;&amp;#123;x&amp;#58;Type Window&amp;#125;&amp;#125;&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;Setter Property&amp;#61;&amp;#34;SizeToContent&amp;#34; Value&amp;#61;&amp;#34;WidthAndHeight&amp;#34; &amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Style&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Application.Resources&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;Application&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;Then try to resize any pane in your application, you will notice that this is not possible. &lt;br /&gt;&lt;br /&gt;AvalonDock is using a Window to facilitate the resize of the panes. And due to the defined style, SizeToContent is being applied to all Windows in the application. This messes with the calculations that AvalonDock is doing while resizing.&lt;br /&gt;</description><author>h0od</author><pubDate>Sun, 12 May 2013 09:45:14 GMT</pubDate><guid isPermaLink="false">Created Issue: Cannot resize panes [16194] 20130512094514A</guid></item><item><title>Commented Issue: AvalonDock XmlLayoutSerializer does not load layout [16159]</title><link>http://avalondock.codeplex.com/workitem/16159</link><description>I&amp;#39;ve asked the question with all the details &amp;#91;here&amp;#93;&amp;#40;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;questions&amp;#47;15970888&amp;#47;avalondock-dockingmanager-does-not-load-layout&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: cvetomirtodorov ** &lt;p&gt;The solutions is to set values of the ContentId property for the LayoutDocument and LayoutAnchorable. This ticket can be closed.&lt;/p&gt;</description><author>cvetomirtodorov</author><pubDate>Fri, 10 May 2013 08:25:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: AvalonDock XmlLayoutSerializer does not load layout [16159] 20130510082549A</guid></item><item><title>Created Issue: MissAligned document section vs tool windows section [16192]</title><link>http://avalondock.codeplex.com/workitem/16192</link><description>Document portion is a little bit offset by few pixels down when compared to ToolWindow.&lt;br /&gt;See attachement.&lt;br /&gt;</description><author>EricOuellet</author><pubDate>Thu, 09 May 2013 15:43:24 GMT</pubDate><guid isPermaLink="false">Created Issue: MissAligned document section vs tool windows section [16192] 20130509034324P</guid></item><item><title>Created Issue: Loaded event called on DockableFloatingWindows.show [16184]</title><link>http://avalondock.codeplex.com/workitem/16184</link><description>Hello,&lt;br /&gt;&lt;br /&gt;we are using last update of version 1.3,&lt;br /&gt;When we show a new DockableFloatingWindow the venet loaded is called on every window opened.&lt;br /&gt;This happens only for the first FloatingWindow showed.&lt;br /&gt;&lt;br /&gt;How can we avoid this&amp;#63; We are using loaded event to initialize the content of grids and other fields.&lt;br /&gt;&lt;br /&gt;Thanks in advance&lt;br /&gt;ing. Christian Fontana&lt;br /&gt;</description><author>biggosh</author><pubDate>Mon, 29 Apr 2013 15:12:28 GMT</pubDate><guid isPermaLink="false">Created Issue: Loaded event called on DockableFloatingWindows.show [16184] 20130429031228P</guid></item><item><title>Created Issue: How to make the DocumentPanel Full Screen [16182]</title><link>http://avalondock.codeplex.com/workitem/16182</link><description>In 1.x version, there has a attribute &amp;#34;IsShowHeader&amp;#34;. I can hide all the UIElement and maximize the document.&lt;br /&gt;But in 2.0 version, the attribute has disappeared, and how to make the document fullscreen&amp;#63;&lt;br /&gt;</description><author>shikaimin</author><pubDate>Sat, 27 Apr 2013 05:13:41 GMT</pubDate><guid isPermaLink="false">Created Issue: How to make the DocumentPanel Full Screen [16182] 20130427051341A</guid></item><item><title>Commented Issue: [Version 2.0] Missing feature from 1.x, DocumentPane.ShowHeader [15626]</title><link>http://avalondock.codeplex.com/workitem/15626</link><description>Hi,&lt;br /&gt;&amp;#160;&lt;br /&gt;In previous versions, there was a property on the DocumentPane class that allowed to collapse the Header&amp;#58; DocumentPane.ShowHeader.&lt;br /&gt;&amp;#160;&lt;br /&gt;Creating the same effect in 2.0 is not possible unless I override the entire DockingManager style.&lt;br /&gt;&amp;#160;&lt;br /&gt;thank you&lt;br /&gt;Comments: ** Comment from web user: shikaimin ** &lt;p&gt;I want to make the Document fullscreen, but I can not hide the title in version2.0,&lt;br&gt;Can anyone help me?&lt;/p&gt;</description><author>shikaimin</author><pubDate>Wed, 24 Apr 2013 14:54:51 GMT</pubDate><guid isPermaLink="false">Commented Issue: [Version 2.0] Missing feature from 1.x, DocumentPane.ShowHeader [15626] 20130424025451P</guid></item><item><title>Commented Issue: [Version 2.0 build 93790] ILayoutUpdateStrategy not working any more [15422]</title><link>http://avalondock.codeplex.com/workitem/15422</link><description>In the latest build the ILayoutUpdateStrategy not work anymore.&lt;br /&gt;I have tested the AvalonDock.MVVMTestApp, I have added a LayoutAnchorablePane with name&amp;#61;&amp;#34;ToolsPane&amp;#34; but in the method BeforeInsertAnchorable of the LayoutInitializer the line&lt;br /&gt;&amp;#160;&lt;br /&gt;var toolsPane &amp;#61; layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.FirstOrDefault&amp;#40;d &amp;#61;&amp;#62; d.Name &amp;#61;&amp;#61; &amp;#34;ToolsPane&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;return always a null value, perhaps when this method is called the layout is not built with his Descendants&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: pete46 ** &lt;p&gt;Is this still happening? I'm having similar problems. [SEE HERE](https://avalondock.codeplex.com/workitem/16172)&lt;/p&gt;</description><author>pete46</author><pubDate>Wed, 24 Apr 2013 11:08:55 GMT</pubDate><guid isPermaLink="false">Commented Issue: [Version 2.0 build 93790] ILayoutUpdateStrategy not working any more [15422] 20130424110855A</guid></item><item><title>Commented Issue: NullPointerException in LayoutInitializer [16172]</title><link>http://avalondock.codeplex.com/workitem/16172</link><description>I think I&amp;#39;ve found a bug in the actual release &amp;#40;2.0.1746 &amp;#41;. I followed the strategy marked in the MVVM sample in my application. The difference is that I&amp;#39;ve more than one LayoutAnchorablePaneGroup. Here is the code of my LayoutInitializer &amp;#40;only the BeforeInsertAnchorable method&amp;#41;&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public bool BeforeInsertAnchorable&amp;#40;LayoutRoot layout, LayoutAnchorable anchorableToShow, ILayoutContainer destinationContainer&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47;AD wants to add the anchorable into destinationContainer&lt;br /&gt;            &amp;#47;&amp;#47;just for test provide a new anchorablepane &lt;br /&gt;            &amp;#47;&amp;#47;if the pane is floating let the manager go ahead&lt;br /&gt;            LayoutAnchorablePane destPane &amp;#61; destinationContainer as LayoutAnchorablePane&amp;#59;&lt;br /&gt;            if &amp;#40;destinationContainer &amp;#33;&amp;#61; null &amp;#38;&amp;#38;&lt;br /&gt;                destinationContainer.FindParent&amp;#60;LayoutFloatingWindow&amp;#62;&amp;#40;&amp;#41; &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;                return false&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;Console.Out.WriteLine&amp;#40;layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.Count&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            string DestinationAnchorablePane &amp;#61; string.Empty&amp;#59;&lt;br /&gt;            if &amp;#40;anchorableToShow.Content is CTInfoPaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;CTTreeLayout&amp;#34;&amp;#59;&lt;br /&gt;            else if &amp;#40;anchorableToShow.Content is CTTreePaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;CTInfoLayout&amp;#34;&amp;#59;&lt;br /&gt;            else if &amp;#40;anchorableToShow.Content is InfoPaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;InfoAreaLayout&amp;#34;&amp;#59;&lt;br /&gt;            else&lt;br /&gt;                return false&amp;#59;&lt;br /&gt;            var treePane &amp;#61;&lt;br /&gt;                layout.Descendents&amp;#40;&amp;#41;&lt;br /&gt;                .OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.FirstOrDefault&amp;#40;d &amp;#61;&amp;#62; d.Name &amp;#61;&amp;#61; DestinationAnchorablePane&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;treePane &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                treePane.Children.Add&amp;#40;anchorableToShow&amp;#41;&amp;#59;&lt;br /&gt;                return true&amp;#59;&lt;br /&gt;            &amp;#125;           &lt;br /&gt;            &lt;br /&gt;            return false&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt; The first &amp;#34;anchorableToShow&amp;#34; inserts correctly, and the number of layout children is correct &amp;#40;layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.Count&amp;#40;&amp;#41;&amp;#41;, so the var treePane is found. But the following anchorablePanes aren&amp;#39;t found, because the children of root layout changes, so for the following panes the var treePane is null.&lt;br /&gt;At first I thought it was some error of mine, but I couldn&amp;#39;t find any error or reason.&lt;br /&gt;I decided to try with an earlyer version of AvalonDock &amp;#40;2.0.1320&amp;#41; and now all works correctly.&lt;br /&gt;It&amp;#39;s easy to reproduce the error, just change to the last release &amp;#40;2.0.1746&amp;#41; and it happens again.&lt;br /&gt;Comments: ** Comment from web user: pete46 ** &lt;p&gt;Maybe I'm not the only one suffering this issue: [HERE](https://avalondock.codeplex.com/workitem/16050)&lt;/p&gt;</description><author>pete46</author><pubDate>Tue, 23 Apr 2013 13:36:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: NullPointerException in LayoutInitializer [16172] 20130423013649P</guid></item><item><title>Commented Issue: ILayoutUpdateStrategy not working [16050]</title><link>http://avalondock.codeplex.com/workitem/16050</link><description>Hi all,&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using AvalonDock 2.0.1746 with PRISM and in my project I add LayoutAnchorable dynamically. This is my code&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;        public bool BeforeInsertAnchorable&amp;#40;LayoutRoot layout, LayoutAnchorable anchorableToShow,&lt;br /&gt;                                           ILayoutContainer destinationContainer&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47;AD wants to add the anchorable into destinationContainer&lt;br /&gt;            &amp;#47;&amp;#47;just for test provide a new anchorablepane &lt;br /&gt;            &amp;#47;&amp;#47;if the pane is floating let the manager go ahead&lt;br /&gt;            var destPane &amp;#61; destinationContainer as LayoutAnchorablePane&amp;#59;&lt;br /&gt;            if &amp;#40;destinationContainer &amp;#33;&amp;#61; null &amp;#38;&amp;#38; destinationContainer.FindParent&amp;#40;&amp;#41; &amp;#33;&amp;#61; null&amp;#41; return false&amp;#59;&lt;br /&gt;            &lt;br /&gt;            string destPaneName&amp;#59;&lt;br /&gt;            if &amp;#40;anchorableToShow.Content is ChartTabView&amp;#41;&lt;br /&gt;                destPaneName &amp;#61; &amp;#34;ChartToolsPane&amp;#34;&amp;#59;&lt;br /&gt;            else if &amp;#40;anchorableToShow.Content is TreeNodesView&amp;#41;&lt;br /&gt;                destPaneName &amp;#61; &amp;#34;TreeToolsPane&amp;#34;&amp;#59;&lt;br /&gt;            else&lt;br /&gt;                return false&amp;#59;&lt;br /&gt;&lt;br /&gt;            var toolsPane &amp;#61; layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#40;&amp;#41;.FirstOrDefault&amp;#40;d &amp;#61;&amp;#62; d.Name &amp;#61;&amp;#61; destPaneName&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;toolsPane &amp;#61;&amp;#61; null&amp;#41; return false&amp;#59;&lt;br /&gt;&lt;br /&gt;            toolsPane.Children.Add&amp;#40;anchorableToShow&amp;#41;&amp;#59;&lt;br /&gt;            return true&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;In new version the layout.Descendents&amp;#40;&amp;#41; always return null for &amp;#34;ChartToolsPane&amp;#34;&amp;#40;the &amp;#34;TreeToolsPane&amp;#34; I create when programm starts&amp;#41;, but in older version it&amp;#39;s working fine.&lt;br /&gt;&lt;br /&gt;What can I resolve this problem&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Arthur&lt;br /&gt;Comments: ** Comment from web user: pete46 ** &lt;p&gt;I'm habing the same issue I suppose. I'm using the previous release of AvalonDock until issue gets solved.&lt;br&gt;My issue here [ISSUE](https://avalondock.codeplex.com/workitem/16172)&lt;/p&gt;</description><author>pete46</author><pubDate>Tue, 23 Apr 2013 13:34:52 GMT</pubDate><guid isPermaLink="false">Commented Issue: ILayoutUpdateStrategy not working [16050] 20130423013452P</guid></item><item><title>Created Issue: NullPointerException in LayoutInitializer [16172]</title><link>http://avalondock.codeplex.com/workitem/16172</link><description>I think I&amp;#39;ve found a bug in the actual release &amp;#40;2.0.1746 &amp;#41;. I followed the strategy marked in the MVVM sample in my application. The difference is that I&amp;#39;ve more than one LayoutAnchorablePaneGroup. Here is the code of my LayoutInitializer &amp;#40;only the BeforeInsertAnchorable method&amp;#41;&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;public bool BeforeInsertAnchorable&amp;#40;LayoutRoot layout, LayoutAnchorable anchorableToShow, ILayoutContainer destinationContainer&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47;AD wants to add the anchorable into destinationContainer&lt;br /&gt;            &amp;#47;&amp;#47;just for test provide a new anchorablepane &lt;br /&gt;            &amp;#47;&amp;#47;if the pane is floating let the manager go ahead&lt;br /&gt;            LayoutAnchorablePane destPane &amp;#61; destinationContainer as LayoutAnchorablePane&amp;#59;&lt;br /&gt;            if &amp;#40;destinationContainer &amp;#33;&amp;#61; null &amp;#38;&amp;#38;&lt;br /&gt;                destinationContainer.FindParent&amp;#60;LayoutFloatingWindow&amp;#62;&amp;#40;&amp;#41; &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;                return false&amp;#59;&lt;br /&gt;            &amp;#47;&amp;#47;Console.Out.WriteLine&amp;#40;layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.Count&amp;#40;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            string DestinationAnchorablePane &amp;#61; string.Empty&amp;#59;&lt;br /&gt;            if &amp;#40;anchorableToShow.Content is CTInfoPaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;CTTreeLayout&amp;#34;&amp;#59;&lt;br /&gt;            else if &amp;#40;anchorableToShow.Content is CTTreePaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;CTInfoLayout&amp;#34;&amp;#59;&lt;br /&gt;            else if &amp;#40;anchorableToShow.Content is InfoPaneViewModel&amp;#41;&lt;br /&gt;                DestinationAnchorablePane &amp;#61; &amp;#34;InfoAreaLayout&amp;#34;&amp;#59;&lt;br /&gt;            else&lt;br /&gt;                return false&amp;#59;&lt;br /&gt;            var treePane &amp;#61;&lt;br /&gt;                layout.Descendents&amp;#40;&amp;#41;&lt;br /&gt;                .OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.FirstOrDefault&amp;#40;d &amp;#61;&amp;#62; d.Name &amp;#61;&amp;#61; DestinationAnchorablePane&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;treePane &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                treePane.Children.Add&amp;#40;anchorableToShow&amp;#41;&amp;#59;&lt;br /&gt;                return true&amp;#59;&lt;br /&gt;            &amp;#125;           &lt;br /&gt;            &lt;br /&gt;            return false&amp;#59;&lt;br /&gt;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt; The first &amp;#34;anchorableToShow&amp;#34; inserts correctly, and the number of layout children is correct &amp;#40;layout.Descendents&amp;#40;&amp;#41;.OfType&amp;#60;LayoutAnchorablePane&amp;#62;&amp;#40;&amp;#41;.Count&amp;#40;&amp;#41;&amp;#41;, so the var treePane is found. But the following anchorablePanes aren&amp;#39;t found, because the children of root layout changes, so for the following panes the var treePane is null.&lt;br /&gt;At first I thought it was some error of mine, but I couldn&amp;#39;t find any error or reason.&lt;br /&gt;I decided to try with an earlyer version of AvalonDock &amp;#40;2.0.1320&amp;#41; and now all works correctly.&lt;br /&gt;It&amp;#39;s easy to reproduce the error, just change to the last release &amp;#40;2.0.1746&amp;#41; and it happens again.&lt;br /&gt;</description><author>pete46</author><pubDate>Tue, 23 Apr 2013 08:52:54 GMT</pubDate><guid isPermaLink="false">Created Issue: NullPointerException in LayoutInitializer [16172] 20130423085254A</guid></item><item><title>Created Issue: AvalonDock XmlLayoutSerializer does not load layout [16159]</title><link>http://avalondock.codeplex.com/workitem/16159</link><description>I&amp;#39;ve asked the question with all the details &amp;#91;here&amp;#93;&amp;#40;http&amp;#58;&amp;#47;&amp;#47;stackoverflow.com&amp;#47;questions&amp;#47;15970888&amp;#47;avalondock-dockingmanager-does-not-load-layout&amp;#41;&lt;br /&gt;</description><author>cvetomirtodorov</author><pubDate>Mon, 15 Apr 2013 11:35:59 GMT</pubDate><guid isPermaLink="false">Created Issue: AvalonDock XmlLayoutSerializer does not load layout [16159] 20130415113559A</guid></item></channel></rss>