summaryrefslogtreecommitdiff
path: root/windows/WebUIWrapper/Form1.Designer.cs
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@zerotier.com>2015-05-08 11:55:09 -0700
committerAdam Ierymenko <adam.ierymenko@zerotier.com>2015-05-08 11:55:09 -0700
commita913f006708312fa844d304641b207e9ff730b30 (patch)
tree87ab7921d00bfe5680ad71664b608d3e3e985cd9 /windows/WebUIWrapper/Form1.Designer.cs
parentb1164ed181b0ffde3c664cffc3513b203429d2f7 (diff)
downloadinfinitytier-a913f006708312fa844d304641b207e9ff730b30.tar.gz
infinitytier-a913f006708312fa844d304641b207e9ff730b30.zip
Windows WebControl based wrapper for web UI.
Diffstat (limited to 'windows/WebUIWrapper/Form1.Designer.cs')
-rw-r--r--windows/WebUIWrapper/Form1.Designer.cs70
1 files changed, 70 insertions, 0 deletions
diff --git a/windows/WebUIWrapper/Form1.Designer.cs b/windows/WebUIWrapper/Form1.Designer.cs
new file mode 100644
index 00000000..350772e0
--- /dev/null
+++ b/windows/WebUIWrapper/Form1.Designer.cs
@@ -0,0 +1,70 @@
+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.AllowWebBrowserDrop = 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.ScriptErrorsSuppressed = true;
+ this.webContainer.ScrollBarsEnabled = false;
+ this.webContainer.Size = new System.Drawing.Size(1012, 556);
+ this.webContainer.TabIndex = 0;
+ this.webContainer.Url = new System.Uri("", System.UriKind.Relative);
+ this.webContainer.WebBrowserShortcutsEnabled = false;
+ //
+ // 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;
+ }
+}
+