第一步、准备操作窗格
在 Visual Studio 中打开 Excel 工作簿或模板项目。
在“项目”菜单上单击“添加新项”。
在“添加新项”对话框中选择[common items]\[office]\[Actions Pane Control],将其命名为“HelloControl”,然后单击“添加”。
如果在设计器中看不到操作窗格控件,请双击“解决方案资源管理器”中的“HelloControl”。
按照一般对话框的方法设计操作窗格。
第二步、调用操作窗格
在 ThisWorkbook 类中创建一个新的操作窗格控件实例。
Dim hello As New HelloControl
将以下代码添加到 ThisWorkbook 的startup事件处理程序中。
With Globals.ThisWorkbook.ActionsPane.Controls
.Clear()
.Add(hello)
End With
.Clear()
.Add(hello)
End With