Hello,
I would like to place my toolwindow in the same MDI area as where documents
live (e.g. this is what the Start Page does in VS 2005). I plan to use the
ProvideToolWindow attribute to set placement of my toolwindow. What guid
would I specify (and if anyone knows, is there a constant/enumeration/etc in
one of the managed VS shell assemblies I can use)?
e.g. what GUID would I use below:
[MSVSIP.ProvideToolWindow(typeof(MyToolWindow), Style = VsDockStyle.Tabbed,
Window = "{WHAT GUID GOES HERE?}", Orientation =
ToolWindowOrientation.Right)]
Thanks,
Notre
Notre Poubelle - 22 Dec 2005 22:51 GMT
Turns out I don't need a guid. The following works:
[MSVSIP.ProvideToolWindow(typeof(MyToolWindow), Style = VsDockStyle.MDI,
Orientation = ToolWindowOrientation.Bottom)]