请问vs2010中如何使用Microsoft.Office.Tools.Word.Controls命名空间
本帖最后由 czGui 于 2011-03-12 22:12:32 编辑 近日使用vs2010帮助文档学习office编程,在 演练:运行时在应用程序级外接程序中向文档添加控件 中有如下代码
private Microsoft.Office.Tools.Word.Controls.Button button = null;
http://msdn.microsoft.com/zh-cn/library/cc668206.aspx?appId=Dev10IDEF1&l=ZH-CN&k=k(VS.AMBIENT);k(TargetFrameworkMoniker-
输入到vs2010中发现编译不能通过,提示 错误 CS0234: 命名空间“Microsoft.Office.Tools.Word”中不存在类型或命名空间名称“Controls”。是否缺少程序集引用?代码中已经有了下面引用
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Word = Microsoft.Office.Interop.Word;
using Office = Microsoft.Office.Core;
using Microsoft.Office.Tools.Word;