我正在玩活动/代表,我经常收到以下错误:
PresentationFramework.dll 中出现“System.Reflection.TargetInvocationException”类型的未处理异常
附加信息:调用的目标已引发异常。
我的代码如下:
namespace Test
{
using System;
using System.Windows;
public partial class TestWindow : Window
{
public TestWindow()
{
this.InitializeComponent();
this.TestEvent(this, new EventArgs());
}
public delegate void TestDelegate(object sender, EventArgs e);
public event TestDelegate TestEvent;
}
}
显然,我在另一个位置有代码来打开 TestWindow 对象:
TestWindow testWindow = new TestWindow();
testWindow.TestEvent += this.TestMethod;
和:
private void TestMethod(object sender, EventArgs e)
{
}