Hi,
in my application that have a single docksite im using:
DockingCommands.ActivateWindow.Execute(Nothing, thePanel)
and
DockingCommands.CloseWindow.Execute(Nothing, thePanel)
to show/hide a ToolWindow successfully.
Althought I have another application that have 1 big docksite with two nested docksite inside.
Now the:
DockingCommands.ActivateWindow.Execute(Nothing, thePanel)
and
DockingCommands.CloseWindow.Execute(Nothing, thePanel)
doesn't work anymore. I understand that I must somehow indicate in which docksite this panel is located but im not sure how.
Thanks for the assistance.