Hi i have a dynamically created button on click which will download a video in windows universal app, while creation of button i am assigning on event handler like this:
videoIcon.Click += (s, ev) => { Download_Video(s, ev, SomeStringParameter1, SomeStringParameter2); };
Once user clicks on button, in Download_Video, I am removing the event handler to download the video, like this:
Button videoIcon = sender as Button;
videoIcon.Click -= (s, ev) => { Download_Video(s, ev, videoUrl, messageId); };
and the assigning a new event handler to play video on click of same button like this:
videoIcon.Click += (s, ev) => { Video_Click(s, ev, savedFile.Name); };
The problem is previously assigned handler Download_Video also fires along with Video_Click. How to stop this?