我被困住了。我一直试图找到或创建自己,如何为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);
}
}
}