How to: Add an Actions Pane to Word Documents or Excel Workbooks
To add an actions pane to a Microsoft Office Word document or a Microsoft Excel workbook, first create a Windows Forms user control. Then, add the user control to the Controls property of the ThisDocument.ActionsPane field (Word) or ThisWorkbook.ActionsPane field (Excel) in your project.
Applies to: The information in this topic applies to document-level projects for Excel and Word. For more information, see Features Available by Office Application and Project Type.
|
The following procedure shows how to create user control in a Word or Excel project. It also adds a button to the user control that writes text to the document or workbook when it is clicked.
To create the user control
Open your Word or Excel document-level project in Visual Studio.
On the Project menu, click Add New Item.
In the Add New Item dialog box, select Actions Pane Control, name it HelloControl, and click Add.
Note
You can alternatively add a User Control item to your project. The classes generated by the Actions Pane Control and User Control items are functionally equivalent.From the Windows Forms tab of the Toolbox, drag a Button control onto the control.
Note
If the control is not visible in the designer, double click HelloControl in Solution Explorer.Add the code to the Click event handler of the button. The following example shows code for a Microsoft Office Word document.
In C#, you must add an event handler for the button click. You can place this code in the
HelloControlconstructor after the call toIntializeComponent.For information about how to create event handlers, see How to: Create Event Handlers in Office Projects.
public HelloControl() { InitializeComponent(); this.button1.Click += new EventHandler(this.button1_Click); }
To show the actions pane, add the user control to the Controls property of the ThisDocument.ActionsPane field (Word) or ThisWorkbook.ActionsPane field (Excel).
To add the user control to the actions pane
Add the following code to the
ThisDocumentorThisWorkbookclass as a class-level declaration (do not add this code to a method).Add the following code to the
ThisDocument_Startupevent handler of theThisDocumentclass or theThisWorkbook_Startupevent handler of theThisWorkbookclass.
Actions Pane Overview
Walkthrough: Inserting Text into a Document from an Actions Pane
How to: Manage Control Layout on Actions Panes
Walkthrough: Inserting Text into a Document from an Actions Pane