RT
书上说:The ActionsPane object supports Windows form controls, and you can change the 
orientation of the Actions Pane programmatically.而且例子上创建ActionsPane用的是代码方式:
// Initializing the TextBox control to use in Actions Pane
        TextBox VSTOTextBox = new TextBox();
        private void ThisDocument_Startup(object sender, 
            System.EventArgs e)
       {
            // Set the text property for the TextBox control
            VSTOTextBox.Text = "Say Hello to Actions Pane User";
            // Add the TextBox control to the ActionsPane
            ActionsPane.Controls.Add(VSTOTextBox);
            // On document load ActionsPane is shown
            ActionsPane.Show();
        }工具箱里面没有看见ActionsPane,这个玩意很强大,但是无法可视化开发的话工作量就有点大且复杂了。
不知道有人做过吗?是不是在开发界面的word界面里可以设置打开ActionsPane?怎么设置呢?