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
source
share