我正在 Windows 8 Visual Studio 11 中开发一个应用程序,我想为 DispatcherTimer 实例定义一个事件处理程序,如下所示:
public sealed partial class BlankPage : Page
{
int timecounter = 10;
DispatcherTimer timer = new DispatcherTimer();
public BlankPage()
{
this.InitializeComponent();
timer.Tick += new EventHandler(HandleTick);
}
private void HandleTick(object s,EventArgs e)
{
timecounter--;
if (timecounter ==0)
{
//disable all buttons here
}
}
.....
}
但我收到以下错误:
Cannot implicitly convert type 'System.EventHandler' to 'System.EventHandler<object>'
我是寡妇 8 应用程序的新手开发人员。
你能帮帮我吗?