Files
Allen Wolf 4605d2dab7 Add project
2024-01-10 23:06:50 -06:00

26 lines
514 B
C#
Executable File

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 TeamViewerController
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
Cursor.Hide();
}
}
}