diff options
| author | Alee14 <alee14498@gmail.com> | 2017-07-02 19:45:52 -0400 |
|---|---|---|
| committer | Alee14 <alee14498@gmail.com> | 2017-07-02 20:07:29 -0400 |
| commit | ec552fb640dce9bb7ef46d143edffaaa585f219e (patch) | |
| tree | a32fb47ffe0820ea60a2bb0f4486512a08f0dc95 /YouTube TV/Form2.cs | |
| parent | 591f24fe8a4facbcedc794819b3063e778345c14 (diff) | |
| download | YouTube-TV-ec552fb640dce9bb7ef46d143edffaaa585f219e.tar.gz YouTube-TV-ec552fb640dce9bb7ef46d143edffaaa585f219e.tar.bz2 YouTube-TV-ec552fb640dce9bb7ef46d143edffaaa585f219e.zip | |
New update
Diffstat (limited to 'YouTube TV/Form2.cs')
| -rw-r--r-- | YouTube TV/Form2.cs | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/YouTube TV/Form2.cs b/YouTube TV/Form2.cs new file mode 100644 index 0000000..6a7bd5a --- /dev/null +++ b/YouTube TV/Form2.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using CefSharp; +using CefSharp.WinForms; +using CefSharp.WinForms.Internals; + +namespace YouTube_TV +{ + public partial class Form2 : Form + { + public Form2() + { + InitializeComponent(); + } + + public CefSharp.WinForms.ChromiumWebBrowser browser; + + private void Form1_Load(object sender, EventArgs e) + { + + + + browser = new CefSharp.WinForms.ChromiumWebBrowser("www.youtube.com/tv"); + { + Dock = DockStyle.Fill; + Size = new Size(514, 421); + Location = new Point(0, 0); + } + this.panel1.Controls.Add(browser); + } + } +} |
