I'm using C# WinForms to make a video converter, I'm using NReco.VideoConverter library. It has an EventHandler named ConvertProgress
but I have never used EventHandlers, I was searching for some information on internet, but I still don't know how to apply it to my application.
I tried this:
public static event EventHandler<ConvertProgressEventArgs> _getPercent;
//...
_getPercent += ???
progressBar1.Value = ??
I'm stuck there, and I don't know what to do. Can someone help me?? Thanks in advance.