彩票走势图

Add-in Express帮您快速在Office办公软件中添加智能标签

原创|其它|编辑:郝浩|2012-10-08 15:23:25.000|阅读 488 次

概述:拥有了Add-in Express,你就可以使用Smart Tag识别器,快速地为Microsoft Word,Excel,Outlook(Word作为默认的电子邮件编辑器)和PowerPoint创建一个新的Smart Tag,我们把这一解决方案叫做SmartTag library。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

拥有了Add-in Express,你就可以使用Smart Tag识别器,快速地为Microsoft Word,Excel,Outlook(Word作为默认的电子邮件编辑器)和PowerPoint创建一个新的Smart Tag,我们把这一解决方案叫做SmartTag library。下面是这一特性的具体介绍:

1. Create a new smart tag library

Just like in other Microsoft Office customization technologies, Add-in Express implements the Smart Tag library through a special module, the smart tag module. It centralizes the functional code of all smart tags and is a container for the Smart Tag components representing your smart tags. This component allows you to specify recognized words or phrases and to add custom actions related to Smart Tags. To create a new Smart Tag library based on Add-in Express, close all opened solutions, choose "File | New | Project…", select the "Other Projects | Extensibility Projects" item, click the "Smart Tag" icon, and click the OK button.

Add-in Express帮您快速在Office办公软件中添加智能标签

This will start the wizard that asks you to choose a programming language and then generates the project. When the wizard is finished, the smart tag library solution will be created and opened in Visual Studio. This solution includes the main Smart Tag project with the Smart Tag module and the setup project (optional). The Smart Tag module is a container for Smart Tag components and implements the logic required by the Smart Tag technology.

2. Smart Tag module

SmartTagModule.vb (or SmartTagModule.cs) is the core part of your project. It represents a smart tag library - a set of smart tags that have a common recognizer. The designer of the Smart Tag module allows you to set up the smart tag library properties and to add components onto the module.

Add-in Express帮您快速在Office办公软件中添加智能标签

Technical details:

Add-in Express帮您快速在Office办公软件中添加智能标签

Smart Tag library name, description, and namespace URI

Add-in Express帮您快速在Office办公软件中添加智能标签

When the smart tag library is connected and disconnected

3. Add a new smart tag

To add a new SmartTag, select the Smart Tag module, right-click it and choose the Add Smart Tag item in the context menu.

Add-in Express帮您快速在Office办公软件中添加智能标签

4. Set up the smart tag component

The Smart Tag component provides you with two word recognizing strategies: a) based on the list of words or phrases and b) custom recognition based on an event fired by the host application.

The screenshot below highlights creating a smart tag based on the list of words. The smart tag component is added to the module, its caption is My Smart Tag 1. In the Actions collection editor, there is the only action with caption My Action 1. The Kind property of the component is set to ktList. This value implies using the list of words or phrases supplied in the RecognizedWords property. The String Collection Editor allows adding words or phrases to be recognized by the smart tag.

Add-in Express帮您快速在Office办公软件中添加智能标签

Then you handle the Click event, say, with the following code:

Private Sub AdxSmartTagAction1_Click(ByVal sender ;As System.Object, _  

         ByVal e As AddinExpress.SmartTag.ADXSmartTagActionEventArgs) _  

         Handles AdxSmartTagAction1.Click  

      MsgBox("Recognized text is '" + e.Text + "'!")  

End Sub 

Private Sub AdxSmartTagAction1_Click(ByVal sender As System.Object, _

ByVal e As AddinExpress.SmartTag.ADXSmartTagActionEventArgs) _

Handles AdxSmartTagAction1.Click

MsgBox("Recognized text is '" + e.Text + "'!")

End Sub

With these settings and event handlers, the smart tag works in your Excel workbook as shown on the screenshot below.

Add-in Express帮您快速在Office办公软件中添加智能标签

Technical details:

Add-in Express帮您快速在Office办公软件中添加智能标签

Smart tag caption, recognition strategy, collection of actions, collection of recognized words

Add-in Express帮您快速在Office办公软件中添加智能标签

Every action had a caption shown in the SmartTag context menu

Add-in Express帮您快速在Office办公软件中添加智能标签

When the smart tag is required to recognize a word by the host application

Add-in Express帮您快速在Office办公软件中添加智能标签

When the user clicks the Property button in the SmartTags dialog

Add-in Express帮您快速在Office办公软件中添加智能标签

When the user clicks the smart tag action in the smart tag context menu

5. Deploying the smart tag

Add-in Express smart tags are based on the Add-in Express Loader which is a feature-rich shim and bootstrap application.

Add-in Express帮您快速在Office办公软件中添加智能标签

Included into the automatically generated setup project, the Add-in Express Loader gives you with the following benefits:

· Manifest-configured features: setup log, non-admin installation, updating a smart tag while it is loaded

· Ready-to-use custom actions for your setup project

· Per-user and per-computer add-in installations

· You can sign the Add-in Express Loader with a digital certificate

See also how to build .


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件网

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP