[转]创建一个 Microsoft Outlook 扩展插件
本文转自:https://coyee.com/article/10625-how-to-create-an-add-in-for-microsoft-outlook
1.介绍
Visual Studio Tool for Office(VSTO)加载项是.NET Framework中提供的工具集,可让我们在(版本2003及更高版本)中扩展和自定义Microsoft Office产品。
在本教程中,我们将使用Outlook 2013作为案例研究和Visual Studio 2015。
2.Outlook对象模型
这是当您想创建Outlook加载项时的起点,了解这些对象的含义很重要。
Outlook对象模型:
- Application:它代表Outlook应用程序,是模型中最高级别的对象。该对象是到达模型的其他对象的起点。
- Explorer:它表示一个窗口来显示文件夹的内容,如电子邮件,消息,任务,约会等。
- Inspector:它表示一个显示项目的窗口,如电子邮件消息,任务,约会等。
- MAPIFolder:它代表一个包含电子邮件,联系人,约会等的文件夹。备注:此对象已过时,替代地,您应该使用MAPIFolder的Folder 对象实例。
- MailItem:它代表一封电子邮件。
- AppointmentItem:它代表会议,一次性约会,日程预约或日历 文件夹中的会议。
- TaskItem:它表示在指定时间范围内执行的任务。
- ContactItem:它表示Contact文件夹中的联系人。
3. 如何开始
在下一节中,我们将从这种类型的应用开始讲解。
3.1. 如何创建项目
- 启动Visual Studio。
- 文件菜单 / 新建/ 项目。
- 在项目的模型面板中,打开Visual C#,Office/SharePoint,Office 加载项。
- 选择Outlook 2013 和 2016 VSTO 加载项加入模型。
- 填写项目名称,然后单击OK。
3.2. 项目布局
实际上,为Visual Studio生成的项目布局是非常直观和简单的。
主类是 ThisAddIn
,代码如下所示:
public partial class ThisAddIn
{
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
} private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
// Note: Outlook no longer raises this event. If you have code that
// must run when Outlook shuts down, see
// http://go.microsoft.com/fwlink/?LinkId=506785
} #region VSTO generated code /// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
} #endregion
}
这是一个非常简单的类。 ThisAddIn_Startup方法是应用程序的起始点。 在这个方法中,我们可以得到对象Application和模型的其他对象。 此外,我们可以执行我们的初始化过程,如配置和访问数据库。
当用户关闭Outlook时执行ThisAddIn_Shutdown方法。 但重要的是,在Outlook当前版本中,由于性能问题,此方法没有被调用。 但是,如果在Outlook关闭时需要执行某些代码,则可以检查此链接以获取其他选项。
3.3. 应用程序对象和其他模型对象
接下来,我们将会看到如何获得一些对象模型。因此,我们需要使用必要的命名空间:
using Outlook = Microsoft.Office.Interop.Outlook;
代码如下所示:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// Get the Application object
Outlook.Application application = this.Application; // Get the Inspector object
Outlook.Inspectors inspectors = application.Inspectors; // Get the active Inspector object
Outlook.Inspector activeInspector = application.ActiveInspector();
if (activeInspector != null)
{
// Get the title of the active item when the Outlook start.
MessageBox.Show("Active inspector: " + activeInspector.Caption);
} // Get the Explorer objects
Outlook.Explorers explorers = application.Explorers; // Get the active Explorer object
Outlook.Explorer activeExplorer = application.ActiveExplorer();
if (activeExplorer != null)
{
// Get the title of the active folder when the Outlook start.
MessageBox.Show("Active explorer: " + activeExplorer.Caption);
}
}
其他对象模型可以通过使用 Inspector
和 Explorer
对象来获取。该操作通常基于事件,因此,需要注册这两个对象创建的事件。代码大概是这样的:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// ...
// Add a new Inspector to the application
inspectors.NewInspector +=
new Outlook.InspectorsEvents_NewInspectorEventHandler(
Inspectors_AddTextToNewMail);
}
Inspectors_AddTextToNewMail
是实现我们功能的方法,如下所示:
void Inspectors_AddTextToNewMail(Outlook.Inspector inspector)
{
}
inspector参
数应当是对电子邮件或联系人的引用,具体取决于Outlook中的用户操作。
3.4.在项目结束
在项目结束时,要从开发计算机上的Outlook中删除加载项,请转到Visual Studio中的生成(Build )菜单,然后单击清除解决方案(Clean Solution)选项。
3.5.如何制作安装程序
在Visual Studio中,转到Build菜单/“Publish ...”。
备注:有时Visual Studio生成的安装程序可能会在安装在用户计算机中时失败,您应该会收到以下错误消息:
引用:
“不能解析属性为'类型'的值。错误:无法加载文件或程序集…“。
4. 基本示例
在下一节中,我们将展示一些关于如何为Outlook 2013创建VSTO加载项的示例。
4.1. 如何处理新的电子邮件
下面的示例是,用户创建一封新的电子邮件时,我们会在邮件的主题和正文中插入自定义文本。为了完成这个任务,我们需要在ThisAddIn_Startup
方法中注册一个新的 Inspector
,当用户创建或者打开邮件的时候,就会触发调用Inspectors_AddTextToNewMail
方法。
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// Get the Application object
Outlook.Application application = this.Application; // Add a new Inspector
inspectors.NewInspector +=
new Outlook.InspectorsEvents_NewInspectorEventHandler(
Inspectors_AddTextToNewMail);
} void Inspectors_AddTextToNewMail(Outlook.Inspector inspector)
{
// Get the current item for this Inspecto object and check if is type
// of MailItem
Outlook.MailItem mailItem = inspector.CurrentItem as Outlook.MailItem;
if (mailItem != null)
{
if (mailItem.EntryID == null)
{
mailItem.Subject = "My subject text";
mailItem.Body = "My body text";
}
}
}
注意: 需要检查 mailItem 对象是否是一种 MailItem
类,因为当这个事件被触发时,通过 Outlook 的用户操作,我们并不知道哪个Inspector
对象会被执行。
4.2. 如何处理一封在发送的邮件
下面的示例是,在电子邮件发送时,允许我们更新邮件里的消息。这是一个非常有趣和适用的功能。有一些Outlook加载项可以执行这种类型的操作,例如,防病毒软件需要在邮件被发送时包含签名。
为了完成这些功能,我们将会在 ItemSend 事件中插入我们的代码。当一个邮件通过用户或者计划任务被发送时,这个事件就会被触发。
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// Get the Application object
Outlook.Application application = this.Application; // Subscribe to the ItemSend event, that it's triggered when an email is sent
application.ItemSend +=
new Outlook.ApplicationEvents_11_ItemSendEventHandler(
ItemSend_BeforeSend);
} void ItemSend_BeforeSend(object item, ref bool cancel)
{
Outlook.MailItem mailItem = (Outlook.MailItem) item;
if (mailItem != null)
{
mailItem.Body += "Modified by GettingStartedOutlookAddIn";
}
cancel = false;
}
4.3.如何将控件添加到功能区工具栏
在下面的示例中,我们将看到如何在Outlook中的功能区(工具栏)中添加控件。 具体来说,当用户编辑或读取电子邮件时,如何添加按钮到功能区。
执行以下操作:
- 向项目添加一个新项目。 在本例中,我命名为RibbonDemo。
- 在功能区设计器中,选择功能区组件并转到属性窗口。
- 查找RibbonType属性并选择Microsoft.Outlook.Mail.Compose和Microsoft.Outlook.Mail.Read的值,它指的是创建和读取电子邮件的功能区。
- 我们为组设置一个合适的名称。 为了完成它,选择它并在属性窗口中查找Label属性并为其键入名称。
- 接下来,我们从ToolBox中添加按钮并准备好。
- 或者,使用按钮的ControlSize和ShowImage属性,我们可以完成Microsoft Office产品的外观。
接下来就像开发 C# 桌面应用程序一样,让我们编写 ButtonDemo按钮的OnClick事件来处理邮件消息。
private void buttonDemo_Click(object sender, RibbonControlEventArgs e)
{
// Get the Application object
Outlook.Application application = Globals.ThisAddIn.Application; // Get the active Inspector object and check if is type of MailItem
Outlook.Inspector inspector = application.ActiveInspector();
Outlook.MailItem mailItem = inspector.CurrentItem as Outlook.MailItem;
if (mailItem != null)
{
MessageBox.Show("Subject: " + mailItem.Subject);
}
}
5.其他对象模型的例子
在下面的部分中,我们将看到需要访问其他对象模型的示例。
将我们的内容放置在上下文中,当我们使用电子邮件正文时,我们可以使用Outlook对象执行一些功能,例如访问MailItem对象的Body属性。 但是,如果需要更多地控制电子邮件正文,则需要将其作为Word文档。 接下来,我们将会看到一些例子。
开始之前
首先,我们将看到如何从“Outlook 2013和2016 VSTO加载项”中引用Word对象模型。 选择您在Outlook应用程序中使用的相同版本以及选择工具和实用程序的引用非常重要。
在我的案例中,我使用的是15.0.0.0 版本的Outlook。
因此,我们将选择相同版本的 Word 引用。
5.1. 如何通过 Ribbon 上的按钮获取电子邮件里选中的文本。
下面的示例是,一个含OnClick
事件的按钮添加到Ribbon
(参见前面的章节 4.3. 如何添加一个控件到 Ribbon
工具栏)。
private void button2Demo_Click(object sender, RibbonControlEventArgs e)
{
// Get the Application object
Outlook.Application application = Globals.ThisAddIn.Application; // Get the active Inspector object and check if is type of MailItem
Outlook.Inspector inspector = application.ActiveInspector();
Outlook.MailItem mailItem = inspector.CurrentItem as Outlook.MailItem;
if (mailItem != null)
{
Word.Document document = (Word.Document) inspector.WordEditor;
string selectedText = document.Application.Selection.Text;
MessageBox.Show(selectedText);
}
}
当用户创建新的电子邮件时,会出现以下图片。 在这里,我们可以看到应用程序显示一条消息,其中包含用户已选择并单击“获取文本选择”按钮的文本。
5.2. 如何订阅电子邮件正文的事件
在下面的示例中,我们将演示如何将我们的应用程序订阅到用户通过电子邮件正文执行的事件。 具体来说,我们将订阅Word文档中的事件(它代表电子邮件正文),当用户对文本进行双击时,我们将获得点击完成时的单词。
我们将从应用程序入口点开始,我们将创建一个Inspector对象来监视用户何时创建/编辑电子邮件。
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
// Get the Application object
Outlook.Application application = this.Application; // Add a new Inspector
inspectors.NewInspector +=
new Outlook.InspectorsEvents_NewInspectorEventHandler(
Inspectors_RegisterEventWordDocument);
}
使用这个Inspector,我们在打开电子邮件编辑器时执行我们的代码。 此时,我们将检查Inspector对象是否为MailItem。 接下来,我们将检查电子邮件编辑器是否是Word编辑器(有时是另一种类型),最后我们将获取Word文档对象。
void Inspectors_RegisterEventWordDocument(Outlook.Inspector inspector)
{
Outlook.MailItem mailItem = inspector.CurrentItem as Outlook.MailItem;
if (mailItem != null)
{
// Check that the email editor is Word editor
// Although "always" is a Word editor in Outlook 2013, it's best done perform this check
if (inspector.EditorType == Outlook.OlEditorType.olEditorWord
&& inspector.IsWordMail())
{
// Get the Word document
Word.Document document = inspector.WordEditor;
if (document != null)
{
// Subscribe to the BeforeDoubleClick event of the Word document
document.Application.WindowBeforeDoubleClick +=
new Word.ApplicationEvents4_WindowBeforeDoubleClickEventHandler(
ApplicationOnWindowBeforeDoubleClick);
}
}
}
}
接下来,我们将订阅我们得到的Word文档的BeforeDoubleClick事件(在以前的代码中),当触发事件时,我们将选择用户点击的单词。
private void ApplicationOnWindowBeforeDoubleClick(Word.Selection selection,
ref bool cancel)
{
// Get the selected word
Word.Words words = selection.Words;
MessageBox.Show("Selection: " + words.First.Text);
}
我们可以通过“选择(selection)”对象访问用户选择的单词,它具有很多功能。 在我们的示例中,使用Word属性,我们得到用户所有选定单词的集合,第一个属性是用户点击的位置。
当用户创建新的电子邮件时,会出现以下图片。 在这里,我们可以看到应用程序显示一个消息,其中包含用户双击的文本。
6.结论
可以看出,使用VSTO加载项工具,我们可以通过多种方式轻松扩展Outlook功能。 在我看来,企业部门的这种应用有很多要求,可以快速解决某些问题,比起其他应用程序,通常办公室用户对微软Office产品感到更满意。 使用VSTO加载项,我们可以查询数据库以获取员工的联系人,将产品列表包含在电子邮件中,同步企业应用程序与Outlook之间的约会等等。
7.参考文献
[转]创建一个 Microsoft Outlook 扩展插件的更多相关文章
- 如何创建一个Edge 浏览器扩展
随着微软Windows 10 年度更新的发布,数次延宕的Edge 扩展功能终于得到了官方正式支持.我在我的另外一个博客上发布了如何创建一个Edge 浏览器扩展的博文,链接如下: https://blo ...
- 小教程:自己创建一个jQuery长阴影插件
长阴影设计是平面设计的一个变体,添加了阴影,产生了深度的幻觉,并导致了三维的设计.在本教程中,我们将创建一个jQuery插件,通过添加完全可自定义的长阴影图标,我们可以轻松地转换平面图标. 戳我查看效 ...
- 如何创建一个基本JQuery的插件
如何创建一个基本的插件 有时您希望在整个代码中提供一些功能.例如,也许你想要一个单一的方法,你可以调用一个jQuery选择,对选择执行一系列的操作.在这种情况下,您可能需要编写一个插件. 链接jQue ...
- 使用jQuery.extend创建一个简单的选项卡插件
选项卡样式如图,请忽略丑陋的样式,样式可以随意更改 主要是基于jquery的extend扩展出的一个简单的选项卡插件,注意:这里封装的类使用的是es6中的class,所以不兼容ie8等低版本浏览器呦! ...
- 创建VS Code 扩展插件
VS Code提供了强大的扩展功能,我们可以通过开发插件实现自己的业务模型编辑器.这里我们快速介绍一下插件的创建.开发和发布过程. 创建插件开发模板 首先需要确认系统中安装了node.js,并且可以使 ...
- [K/3Cloud] 创建一个单据转换插件
概念: 创建一个业务单据转换插件,在单据转换的各个时点干预单据转换的相关逻辑控制. 示例: 新建一个类,继承自单据转换插件基类Kingdee.BOS.Core.Metadata.ConvertElem ...
- 如何利用WordPress创建自定义注册表单插件
来源:http://www.ido321.com/1031.html 原文:Creating a Custom WordPress Registration Form Plugin 译文:创建一个定制 ...
- 如何创建一个自定义jQuery插件
简介 jQuery 库是专为加快 JavaScript 开发速度而设计的.通过简化编写 JavaScript 的方式,减少代码量.使用 jQuery 库时,您可能会发现您经常为一些常用函数重写相同的代 ...
- 【转】怎样创建一个Xcode插件(Part 1)
原文:How To Create an Xcode Plugin: Part 1/3 原作者:Derek Selander 译者:@yohunl 译者注:原文使用的是xcode6.3.2,我翻译的 ...
随机推荐
- html隐藏元素
<body> <div>display:元素的位置不被占用</div> <div id="div1" style="displa ...
- LoadRunner 12下载和安装教程
我们利用LoadRunner可以对Web应用系统进行性能压力测试,本篇博客将和大家介绍下LoadRunner 12的下载和安装,在后续的博客中将和大家介绍其使用的方法. 1.LoadRunner 12 ...
- dorado7-HelloWorld
1.首先在Tomat中将 Auto reloding enable去掉,去掉的目的不用每次更改代码,都要重新部署 2.创建dorado视图文件 2.1 视图文件的格式为xml 2.2 在view中添加 ...
- 程序媛计划——mysql连接表
#inner join等值连接/内连接 mysql> select * from info; +------+-------------+----------+ | name | phone | ...
- Service的学习代码
1. startService(new Intent(MainActivity.this, MyService.class))------->stopService(new Intent(Mai ...
- httprunner 使用总结
HttpRunner 概念 HttpRunner 是一款面向 HTTP(S) 协议的通用测试框架,只需编写维护一份 YAML/JSON 脚本,即可实现自动化测试.性能测试.线上监控.持续集成等多种测试 ...
- jzoj5832. 【省选模拟8.20】Emotional Flutter
tj:我們發現,每一次走過的步長都是k,設當前走的步數是x,走到了一個白條 那麼,每一次走就是把所有黑條都向前移k位,我們可以考慮把所有黑條的左邊界不斷的向前移動k,直到下一次移動時,其左邊界小於0, ...
- Sysbench0.5初体验
最近工作中需要测试数据库的OLTP的性能,参考了下MariaDB的benchmark中的测试脚本,发现脚本中已经使用了Sysbench-0.5,可以在这里https://launchpad.net/s ...
- webpack快速入门——CSS分离与图片路径处理
1.在终端安装extract-text-webpack-plugin 2.引入插件 const extractTextPlugin = require("extract-text-webpa ...
- 2018-2019-2 20165313 《网络对抗技术》 Exp7:网络欺诈防范
一.实践内容(3.5分) 本实践的目标理解常用网络欺诈背后的原理,以提高防范意识,并提出具体防范方法.具体实践有 (1)简单应用SET工具建立冒名网站 (1分) (2)ettercap DNS spo ...