使用VS 2010 Express的简单Outlook 2007(或更新版)插件/插件

时间:2010-07-28 12:41:14

标签: c# outlook outlook-addin visual-studio-express

我被困住了。我一直试图找到或创建自己,如何为VS 2010 Express创建Outlook插件的简单准系统示例。我知道这在VS 2010专业版中更简单,但是,在快递版本中真的不可能这样做吗?

我的目标是当用户点击Outlook中的“发送按钮”时,获得“获取控制权”,例如显示消息框或类似信息。

我一直在尝试使用Microsoft.Office.Interop.Outlook; Microsoft.Office.Core;没有太多运气。

有没有人有一个简单的例子,它运行在快递版本上?

我正在玩的一些非功能性代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;

namespace WpfApplication1
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

        }

        public delegate void ApplicationEvents_11_ItemSendEventHandler(object Item, ref bool Cancel);

        public void MyItemSendEventHandler(object Item, ref bool Cancel)
        {

        }

        private void InternalStartup()
        {
            this.Startup += new System.EventHandler(ThisAddIn_Startup);
            this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
        }
    }

}

1 个答案:

答案 0 :(得分:1)

你必须去NetOffice,与快递工作室完美配合,尝试过2010年和2012年。
NetOffice - MS Office in .NET - Home