diff options
Diffstat (limited to 'Smart TV for Windows/menu.cs')
| -rw-r--r-- | Smart TV for Windows/menu.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Smart TV for Windows/menu.cs b/Smart TV for Windows/menu.cs new file mode 100644 index 0000000..2262238 --- /dev/null +++ b/Smart TV for Windows/menu.cs @@ -0,0 +1,40 @@ +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) + { + + } + + private void button3_Click(object sender, EventArgs e) + { + Environment.Exit(0); + } + + private void button2_Click(object sender, EventArgs e) + { + + } + } +} |
