C# Tutorial – YouTube Video Player in Web View
- Subject: C# Tutorials
- Learning Time: 2 hours
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace youtube_webview { public partial class Form1 : Form { string VideoID; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { switch (comboBox1.Text) { case"Captain America": VideoID = "https://www.youtube.com/embed/uVdV-lxRPFo"; changeVideo(VideoID); break; case"Batman V Superman": VideoID = "https://www.youtube.com/embed/eX_iASz1Si8"; changeVideo(VideoID); break; case"Farcry Primal": VideoID = "https://www.youtube.com/embed/LJ2iH57Fs3M"; changeVideo(VideoID); break; case "Tekken 7": VideoID = "https://www.youtube.com/embed/b7oqMr4o4nk"; changeVideo(VideoID); break; } } private void changeVideo(string link) { webBrowser1.DocumentText = "<html> <body>" + "<iframe src="" + link "" width="477" height="315">"+ "</iframe>" + "</body></html>" } } } |
Pages: 1 2