Hi
I want to have an outlook bar as navigation on the left and on the right is a dock manager with some tabs.
How can i accomplish this? I've tried the following (see below) but the splitter marking (vertical line) doesn't show up when resizing to the right :
<DockPanel DockPanel.Dock="Bottom" LastChildFill
="True">
="Office2k7Blue">
>
="Main">
="False">
="Never">
<igDock:ContentPane x:Name="newTab" Header=" " AllowClose="False" AllowDocking="False" AllowFloatingOnly="False" AllowPinning="False" OptionsMenuOpening="newTab_OptionsMenuOpening" AllowInDocumentHost="False" AllowDockingInTabGroup="False" ToolTip="Neue Registerkarte" Focusable
="True" />
="Workspace1">
="Workspace2">
I think its because the OutlookBar's splitter is just positioned using a transform so it essentially is affected by the z-order of the outlookbar itself. If you set the Panel.ZIndex attached property on the xamOutlookBar to 1 then it works as you wanted.
Great, it works! I haven't thought of that :)