- Add a
WebBrowser
control to your form
- Retrieve the
embed
code of your video
- Load the video into the
WebBrowser
Example :
const string page = "{0}";
webBrowser1.DocumentText = string.Format(page, "");
As for counting the views : each time a user click the "View" button, load the video then increment your counter (this one should be easy enough).