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; namespace Smart_TV_for_Windows { public partial class menu : Form { public menu() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { youtube f2 = new youtube(); f2.ShowDialog(); } private void button3_Click(object sender, EventArgs e) { Environment.Exit(0); } private void button2_Click(object sender, EventArgs e) { netflix f3 = new netflix(); f3.ShowDialog(); } } }