在Outlook 2013/16 vsto扩展中打开WPF窗口

时间:2017-07-08 12:11:00

标签: c# wpf outlook vsto

我想在按钮点击事件

上显示一个wpf窗口
private void Button_Click(object sender, RibbonControlEventArgs e)
{  
    ExampleWindow wpfwindow = new ExampleWindow();
    wpfwindow.ShowDialog();
}

但按钮点击没有任何反应(并且任何地方都没有断点)。但是如果我将throw new NotImplementedException();放在事件处理程序中,它将被执行。我还为我的项目添加了所需的引用(包括WindowsFormsIntegration)。

Visual Studio重新启动,Windows重新启动和完成重建无济于事。

0 个答案:

没有答案