Are Visio VSTO taskbars available?

I need to create a dockable window for my Visio 2010 add-in developed using VSTO, however I don’t see the possibility of creating a taskbar for Visio.

Did I miss something?

0
source share
3 answers

You create dockable windows in Visio. These are "anchor" windows.

See this MSDN page: http://msdn.microsoft.com/en-us/library/ff767674.aspx

For example: a few years ago, I created a snap-in window to simulate the Office Ribbon user interface, which was not available in Visio 2007 at the time: http://blogs.msdn.com/b/saveenr/archive/2007/02/27/adding -a-ribbon-to-visio.aspx

0
source

Visio, :

  • .
  • "" " ".
  • " " MyUserControl "".
  • .
  • Windows Forms .
  • ThisAddIn.cs ThisAddIn.vb. ( #) MyUserControl myUserControl1;
  • Add the following class to the ThisAddIn class. This code declares an instance of MyUserControl as a member of ThisAddIn. (For C #) myUserControl1 = new MyUserControl (); Microsoft.Office.Tools.CustomTaskPane myCustomTaskPane = this.CustomTaskPanes.Add (myUserControl1, "My task pane"); myCustomTaskPane.Visible = true;

Source: msdn.microsoft.com/en-us/library/aa942846%28v=vs .80% 29.aspx # Y649

-1
source

All Articles