diff options
| author | TheEdgeNK <trey6979@gmail.com> | 2018-08-26 16:02:01 -0400 |
|---|---|---|
| committer | TheEdgeNK <trey6979@gmail.com> | 2018-08-26 16:02:01 -0400 |
| commit | db8d19f07f457cad229695ae1dc0ddbe8d13e0f3 (patch) | |
| tree | ebf93e2c33ce061641b60e3a1ddbef86b4c2a580 /Project Ports/Programs/QuantumNet.cs | |
| parent | 8f6b0e2c3dd491428d1e47f66191a26636b8f4e9 (diff) | |
| download | Project-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.cs | 29 |
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); + } + } + } +} |
