diff options
| author | Grant Limberg <glimberg@gmail.com> | 2015-05-13 20:52:23 -0700 |
|---|---|---|
| committer | Grant Limberg <glimberg@gmail.com> | 2015-05-13 20:52:23 -0700 |
| commit | 4a0280686c7a74b58a060375ffce385554d90040 (patch) | |
| tree | addbccc48f967f5e80ff31641f530c9d282766a2 /windows/WebUIWrapper/Form1.Designer.cs | |
| parent | da45840e5ad87aa86f67fbe20d0cb003d982b0f0 (diff) | |
| parent | a8835cd8b33903440f372ed66f4e3b49745ea68f (diff) | |
| download | infinitytier-4a0280686c7a74b58a060375ffce385554d90040.tar.gz infinitytier-4a0280686c7a74b58a060375ffce385554d90040.zip | |
Merge branch 'adamierymenko-dev' into android-jni
Diffstat (limited to 'windows/WebUIWrapper/Form1.Designer.cs')
| -rw-r--r-- | windows/WebUIWrapper/Form1.Designer.cs | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/windows/WebUIWrapper/Form1.Designer.cs b/windows/WebUIWrapper/Form1.Designer.cs new file mode 100644 index 00000000..8d8eb9e9 --- /dev/null +++ b/windows/WebUIWrapper/Form1.Designer.cs @@ -0,0 +1,65 @@ +namespace WebUIWrapper +{ + partial class Form1 + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); + this.webContainer = new System.Windows.Forms.WebBrowser(); + this.SuspendLayout(); + // + // webContainer + // + this.webContainer.AllowNavigation = false; + this.webContainer.Dock = System.Windows.Forms.DockStyle.Fill; + this.webContainer.IsWebBrowserContextMenuEnabled = false; + this.webContainer.Location = new System.Drawing.Point(0, 0); + this.webContainer.MinimumSize = new System.Drawing.Size(20, 20); + this.webContainer.Name = "webContainer"; + this.webContainer.Size = new System.Drawing.Size(1012, 556); + this.webContainer.TabIndex = 0; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1012, 556); + this.Controls.Add(this.webContainer); + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "Form1"; + this.Text = "ZeroTier One"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.WebBrowser webContainer; + } +} + |
