I am doing c # form application. The application is basically a video converter implementation. I have two buttons called convert and conver the stop. Here's what I want to do; I don't want the form to lock itself, even if I click on any of these. I may cancel the process or close the form at that time. I need to do async, but I don't know how. I can't use a backgroundworker because I'm basically dealing with big data. He can lock the form more. Please help.
convert the stop code;
private void Button7_Click(object sender, EventArgs e)
{
var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
ffmpeg.Stop();
MessageBox.Show("convert is stopped");
}