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 アプリの初心者開発者です。
助けてくれませんか?