diff options
| author | Alee14 <Alee14498@gmail.com> | 2018-05-19 15:54:58 -0400 |
|---|---|---|
| committer | Alee14 <Alee14498@gmail.com> | 2018-05-19 15:54:58 -0400 |
| commit | feb9922b968aad01e9f40fc5832c4890abf0ece7 (patch) | |
| tree | 4ee35cdb6f50366f3ec82de2136a0b9fcd6b34c1 /Project Ports | |
| parent | eaf78c1440b0528233a1e049cb5062e526a4bd92 (diff) | |
| download | Project-Silicon-feb9922b968aad01e9f40fc5832c4890abf0ece7.tar.gz Project-Silicon-feb9922b968aad01e9f40fc5832c4890abf0ece7.tar.bz2 Project-Silicon-feb9922b968aad01e9f40fc5832c4890abf0ece7.zip | |
things
Diffstat (limited to 'Project Ports')
| -rw-r--r-- | Project Ports/DebugMode.Designer.cs | 46 | ||||
| -rw-r--r-- | Project Ports/DebugMode.cs | 7 | ||||
| -rw-r--r-- | Project Ports/MainMenu.Designer.cs | 4 | ||||
| -rw-r--r-- | Project Ports/MainMenu.cs | 3 | ||||
| -rw-r--r-- | Project Ports/Project Ports.csproj | 5 | ||||
| -rw-r--r-- | Project Ports/Terminal.Designer.cs | 35 | ||||
| -rw-r--r-- | Project Ports/Terminal.cs | 7 |
7 files changed, 60 insertions, 47 deletions
diff --git a/Project Ports/DebugMode.Designer.cs b/Project Ports/DebugMode.Designer.cs index 88a26ff..ed2163c 100644 --- a/Project Ports/DebugMode.Designer.cs +++ b/Project Ports/DebugMode.Designer.cs @@ -28,27 +28,47 @@ /// </summary> private void InitializeComponent() { - this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.textBox2 = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // - // label1 + // textBox1 // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("Consolas", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.Location = new System.Drawing.Point(34, 74); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(207, 34); - this.label1.TabIndex = 0; - this.label1.Text = "COMING SOON!"; + this.textBox1.Location = new System.Drawing.Point(12, 12); + this.textBox1.Multiline = true; + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(506, 368); + this.textBox1.TabIndex = 0; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(441, 397); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 120); + this.button1.TabIndex = 1; + this.button1.Text = "button1"; + this.button1.UseVisualStyleBackColor = true; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(12, 397); + this.textBox2.Multiline = true; + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(423, 120); + this.textBox2.TabIndex = 2; // // DebugMode // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(293, 223); - this.Controls.Add(this.label1); + this.ClientSize = new System.Drawing.Size(530, 529); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); this.Name = "DebugMode"; this.Text = "DebugMode"; + this.Load += new System.EventHandler(this.DebugMode_Load); this.ResumeLayout(false); this.PerformLayout(); @@ -56,6 +76,8 @@ #endregion - private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox2; } }
\ No newline at end of file diff --git a/Project Ports/DebugMode.cs b/Project Ports/DebugMode.cs index dc25eca..e9e4e3a 100644 --- a/Project Ports/DebugMode.cs +++ b/Project Ports/DebugMode.cs @@ -16,5 +16,10 @@ namespace Project_Ports { InitializeComponent(); } + + private void DebugMode_Load(object sender, EventArgs e) + { + + } } -} +}
\ No newline at end of file diff --git a/Project Ports/MainMenu.Designer.cs b/Project Ports/MainMenu.Designer.cs index 455b8fa..c333209 100644 --- a/Project Ports/MainMenu.Designer.cs +++ b/Project Ports/MainMenu.Designer.cs @@ -81,7 +81,7 @@ this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.ForeColor = System.Drawing.Color.White; - this.label2.Location = new System.Drawing.Point(542, 646); + this.label2.Location = new System.Drawing.Point(563, 621); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(252, 38); this.label2.TabIndex = 3; @@ -108,7 +108,7 @@ this.webBrowser1.Location = new System.Drawing.Point(300, 32); this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20); this.webBrowser1.Name = "webBrowser1"; - this.webBrowser1.Size = new System.Drawing.Size(891, 571); + this.webBrowser1.Size = new System.Drawing.Size(876, 508); this.webBrowser1.TabIndex = 5; this.webBrowser1.Url = new System.Uri("https://aleecorp.github.io/project-ports", System.UriKind.Absolute); // diff --git a/Project Ports/MainMenu.cs b/Project Ports/MainMenu.cs index 89c91e9..17f1bff 100644 --- a/Project Ports/MainMenu.cs +++ b/Project Ports/MainMenu.cs @@ -55,7 +55,7 @@ namespace Project_Ports private void MainMenu_Load(object sender, EventArgs e) { - + } private void btnDebugMode_Click(object sender, EventArgs e) @@ -63,5 +63,6 @@ namespace Project_Ports DebugMode debugForm = new DebugMode(); debugForm.Show(); } + } }
\ No newline at end of file diff --git a/Project Ports/Project Ports.csproj b/Project Ports/Project Ports.csproj index aa7085f..e1da9e0 100644 --- a/Project Ports/Project Ports.csproj +++ b/Project Ports/Project Ports.csproj @@ -32,6 +32,9 @@ <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> + <Reference Include="PortEngine"> + <HintPath>..\PortEngine\bin\Debug\PortEngine.dll</HintPath> + </Reference> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.Xml.Linq" /> @@ -72,7 +75,7 @@ <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Terminal.cs"> - <SubType>Form</SubType> + <SubType>UserControl</SubType> </Compile> <Compile Include="Terminal.Designer.cs"> <DependentUpon>Terminal.cs</DependentUpon> diff --git a/Project Ports/Terminal.Designer.cs b/Project Ports/Terminal.Designer.cs index 2d96296..d254912 100644 --- a/Project Ports/Terminal.Designer.cs +++ b/Project Ports/Terminal.Designer.cs @@ -2,12 +2,12 @@ { partial class Terminal { - /// <summary> + /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; - /// <summary> + /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> @@ -20,47 +20,26 @@ base.Dispose(disposing); } - #region Windows Form Designer generated code + #region Component Designer generated code - /// <summary> - /// Required method for Designer support - do not modify + /// <summary> + /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { - this.txtTerminal = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // - // txtTerminal - // - this.txtTerminal.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.txtTerminal.BackColor = System.Drawing.Color.Black; - this.txtTerminal.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.txtTerminal.Font = new System.Drawing.Font("Lucida Console", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.txtTerminal.ForeColor = System.Drawing.Color.White; - this.txtTerminal.Location = new System.Drawing.Point(1, 0); - this.txtTerminal.Multiline = true; - this.txtTerminal.Name = "txtTerminal"; - this.txtTerminal.Size = new System.Drawing.Size(555, 320); - this.txtTerminal.TabIndex = 0; - // // Terminal // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(558, 321); - this.Controls.Add(this.txtTerminal); this.Name = "Terminal"; - this.Text = "Terminal"; + this.Size = new System.Drawing.Size(456, 337); this.ResumeLayout(false); - this.PerformLayout(); } #endregion - - private System.Windows.Forms.TextBox txtTerminal; } -}
\ No newline at end of file +} diff --git a/Project Ports/Terminal.cs b/Project Ports/Terminal.cs index ba51f3a..ff529d0 100644 --- a/Project Ports/Terminal.cs +++ b/Project Ports/Terminal.cs @@ -1,20 +1,23 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.Data; 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 Terminal : Form + public partial class Terminal : UserControl { + public Terminal() { InitializeComponent(); } + // WindowManager wm = new WindowManager(); } } |
