No overload for 'method' matches delegate

2020-02-06 07:08发布

问题:

I am trying to build a program that, once the button was click, every 5 second will perform the function (OnTimed).

Below is the code so far:

private void bntCapture_Click(object sender, RoutedEventArgs e)
{ 
    DispatcherTimer t1 = new DispatcherTimer();
    t1.Interval = TimeSpan.FromMilliseconds(5000);
    t1.IsEnabled = true;
    t1.Tick += new EventHandler(OnTimed);
    t1.Start();
}

void OnTimed(object sender, ElapsedEventArgs e)
{

    imgCapture.Source = imgVideo.Source;
    System.Threading.Thread.Sleep(1000);
    Helper.SaveImageCapture((BitmapSource)imgCapture.Source);
} 

When i run the code, it show the error:

"No overload for 'method' matches delegate 'System.EventHandler'

回答1:

The signature of the event-handler method isn't compatible with the delegate type.

Subsribers to the DispatcherTimer.Tick event must be of the EventHandler delegate type, which is declared as:

public delegate void EventHandler(object sender, EventArgs e);

Try this instead:

void OnTimed(object sender, EventArgs e)
{
   ...
}


回答2:

If you using Windows phone 8.1 then you need the following

private void OnTimed(object sender, object e) {
      // You Code Here
 }


回答3:

Method OnTimed has to declared like this:

 private void OnTimed(object sender, EventArgs e)
 {
     // Do something
 }


回答4:

I know it might be a little bit late, but i just wanted to throw in a bit more for anyone with this problem:

timer.Tick += new EventHandler(Method);

public void Method(object sender, EventArgs e)
{
//Do Something
}

solves the Problem.

It can also be written like this: timer.Tick += Method;

timer.Tick += Method;

public void Method(object sender, EventArgs e)
{
//Do Something
}

Hope it helps!



回答5:

Dispatcher.Tick is simple EventHandler:

public event EventHandler Tick;

So EventHandler parameters should be:

void OnTimed(object sender, EventArgs e)

Not the

void OnTimed(object sender, ElapsedEventArgs e)

Looks like you a bit overlooked around the System.Timers.Timer.Elapsed event which is:

public event ElapsedEventHandler Elapsed

public delegate void ElapsedEventHandler(
    Object sender,
    ElapsedEventArgs e
)


回答6:

In my case I was using a custom winforms control for digitalPersona fingerprint recognition.

When I tried to overload the 'OnComplete' method it would come up with 'No overload...'

private void FingerprintVerificationControl_OnComplete(object control, DPFP.FeatureSet featureSet, DPFP.Gui.EventHandlerStatus eventHandlerStatus)

This is what it looked like.

I looked into the assembly and I noticed that third parameter had the 'ref' keyword attached to it. I added it in my code and it worked:

private void FingerprintVerificationControl_OnComplete(object control, DPFP.FeatureSet featureSet, ref DPFP.Gui.EventHandlerStatus eventHandlerStatus)