I create a ToolWindow programmatically, change state to TabbedDocument and activate it. dockManager1.DocumentMdiStyle is set to Standard.
ToolWindow toolwindow = new ToolWindow();
toolwindow.DockManager = dockManager1;
toolwindow.State = ToolWindowState.TabbedDocument;
toolwindow.Location = new Point(70, 70);
toolwindow.Activate(true);
The window is still not moved to the position I want to. I have been searching around but still can't find the answer.
[Modified 10 years ago]