aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/TestWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Project Ports/TestWindow.cs')
-rw-r--r--Project Ports/TestWindow.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/Project Ports/TestWindow.cs b/Project Ports/TestWindow.cs
new file mode 100644
index 0000000..acbaacc
--- /dev/null
+++ b/Project Ports/TestWindow.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using PortEngine;
+
+namespace Project_Ports
+{
+ public partial class TestWindow : UserControl
+ {
+ public TestWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void TestWindow_Load(object sender, EventArgs e)
+ {
+ WindowManager wm = new WindowManager();
+ }
+ }
+}