We have some tool windows where sometimes while undocking and redocking, the contents disappear from the tool window. This does not happen all the time. I found the topic, Document/ToolWindow DataContext is Cleared in the help and am wondering if I can use a binding for the Title of the ToolWindow or is this not possible? This is what I have:
<docking:ToolWindow x:Name="NavigationToolWindow"
Title="{Binding ToolWindowTitleBarHelp}"
Header="{Binding NavigationHeaderName}"
CanClose="False"
FontWeight="UltraLight" >
If I am understanding the documentation correctly, it appears that this may cause the contents to disappear when redocking?
Thanks!