aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Programs/QuantumNet.cs
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-08-26 16:02:01 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-08-26 16:02:01 -0400
commitdb8d19f07f457cad229695ae1dc0ddbe8d13e0f3 (patch)
treeebf93e2c33ce061641b60e3a1ddbef86b4c2a580 /Project Ports/Programs/QuantumNet.cs
parent8f6b0e2c3dd491428d1e47f66191a26636b8f4e9 (diff)
downloadProject-Silicon-db8d19f07f457cad229695ae1dc0ddbe8d13e0f3.tar.gz
Project-Silicon-db8d19f07f457cad229695ae1dc0ddbe8d13e0f3.tar.bz2
Project-Silicon-db8d19f07f457cad229695ae1dc0ddbe8d13e0f3.zip
Added QuantumNet
Diffstat (limited to 'Project Ports/Programs/QuantumNet.cs')
-rw-r--r--Project Ports/Programs/QuantumNet.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/Project Ports/Programs/QuantumNet.cs b/Project Ports/Programs/QuantumNet.cs
new file mode 100644
index 0000000..81d09c1
--- /dev/null
+++ b/Project Ports/Programs/QuantumNet.cs
@@ -0,0 +1,29 @@
+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 QuantumNet : UserControl
+ {
+ public QuantumNet()
+ {
+ InitializeComponent();
+ }
+
+ private void txtAddress_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter)
+ {
+ QuantumnetAPI.navigateToSite(txtAddress, pnlSiteContents);
+ }
+ }
+ }
+}