hi there,
i just updated my application from 9.1 to 9.2 and now my unpinned contentpanes do not show up in the unpinned area anymore. if i set them to pinned=true they are visible and docking, hiding and everything works.
are there any known issues concerning this? what are the changes made in xamdockmanager from 9.1 to 9.2?
thanks. k.
There weren't any new features but its possible that an issue was introduced with a bug fix. If you can post a sample that shows the problem we can try to get this resolved in the first hotfix.
here is the sample. ContentPane Pane4 is not visible as an unpinned item. With Version 9.1 this sample works. Is there any workaround?
Thanks, r.
<Window x:Class="InfraTest1.Window1"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"Title="Window1" Height="600" Width="600"xmlns:igDock="http://infragistics.com/DockManager"><TabControl><TabItem Header="Tab1"><igDock:XamDockManager><igDock:XamDockManager.Panes><igDock:SplitPane igDock:XamDockManager.InitialLocation="DockedLeft"><igDock:ContentPane Header="Pane1" IsPinned="True" ><Button Content="Click 1"/></igDock:ContentPane><igDock:ContentPane Header="Pane2" IsPinned="False" ><Button Content="Click 2"/></igDock:ContentPane></igDock:SplitPane></igDock:XamDockManager.Panes></igDock:XamDockManager></TabItem><TabItem Header="Tab2"><TabControl><TabItem Header="Subtab1"><igDock:XamDockManager><igDock:XamDockManager.Panes><igDock:SplitPane igDock:XamDockManager.InitialLocation="DockedLeft"><igDock:ContentPane Header="Pane3" IsPinned="True" ><Button Content="Click 1"/></igDock:ContentPane><igDock:ContentPane Header="Pane4" IsPinned="False" ><Button Content="Click 2"/></igDock:ContentPane></igDock:SplitPane></igDock:XamDockManager.Panes></igDock:XamDockManager></TabItem><TabItem Header="Subtab2"></TabItem></TabControl></TabItem></TabControl></Window>