oi-metrology/WinForms/Form1.Designer.cs
2024-03-14 15:30:40 -07:00

137 lines
5.4 KiB
C#

namespace WinForms;
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()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
this._Go = new System.Windows.Forms.Button();
this._NoGo = new System.Windows.Forms.Button();
this._Cancel = new System.Windows.Forms.Button();
this._BaseDirectory = new System.Windows.Forms.Label();
this._CommandLineArgs = new System.Windows.Forms.Label();
this._WebBrowser = new System.Windows.Forms.WebBrowser();
this._CurrentDirectory = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// _Go
//
this._Go.AutoSize = true;
this._Go.Location = new System.Drawing.Point(5, 5);
this._Go.Name = "Go";
this._Go.Size = new System.Drawing.Size(68, 16);
this._Go.Text = "Go";
this._Go.ForeColor = Color.White;
this._Go.Click += new EventHandler(this.Go_Click);
//
// _NoGo
//
this._NoGo.AutoSize = true;
this._NoGo.Location = new System.Drawing.Point(105, 5);
this._NoGo.Name = "NoGo";
this._NoGo.Size = new System.Drawing.Size(68, 16);
this._NoGo.Text = "NoGo";
this._NoGo.ForeColor = Color.White;
this._NoGo.Click += new EventHandler(this.NoGo_Click);
//
// _Cancel
//
this._Cancel.AutoSize = true;
this._Cancel.Location = new System.Drawing.Point(205, 5);
this._Cancel.Name = "Cancel";
this._Cancel.Size = new System.Drawing.Size(68, 16);
this._Cancel.Text = "Cancel";
this._Cancel.ForeColor = Color.White;
this._Cancel.Click += new EventHandler(this.Cancel_Click);
//
// _BaseDirectory
//
this._BaseDirectory.AutoSize = true;
this._BaseDirectory.Location = new System.Drawing.Point(5, 55);
this._BaseDirectory.Name = "BaseDirectory";
this._BaseDirectory.Size = new System.Drawing.Size(68, 16);
this._BaseDirectory.Text = "BaseDirectory";
this._BaseDirectory.ForeColor = Color.White;
//
// _CommandLineArgs
//
this._CommandLineArgs.AutoSize = true;
this._CommandLineArgs.Location = new System.Drawing.Point(5, 105);
this._CommandLineArgs.Name = "CurrentDirectory";
this._CommandLineArgs.Size = new System.Drawing.Size(68, 16);
this._CommandLineArgs.Text = "CurrentDirectory";
this._CommandLineArgs.ForeColor = Color.White;
//
// _CurrentDirectory
//
this._CurrentDirectory.AutoSize = true;
this._CurrentDirectory.Location = new System.Drawing.Point(5, 155);
this._CurrentDirectory.Name = "CurrentDirectory";
this._CurrentDirectory.Size = new System.Drawing.Size(68, 16);
this._CurrentDirectory.Text = "CurrentDirectory";
this._CurrentDirectory.ForeColor = Color.White;
//
// _WebBrowser
//
this._WebBrowser.Location = new System.Drawing.Point(5, 205);
this._WebBrowser.MinimumSize = new System.Drawing.Size(20, 20);
this._WebBrowser.Name = "WebBrowser";
this._WebBrowser.ScriptErrorsSuppressed = true;
this._WebBrowser.Size = new System.Drawing.Size(1008, 729);
this._WebBrowser.Visible = false;
this._WebBrowser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.WebBrowser_DocumentCompleted);
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(39)))), ((int)(((byte)(43)))), ((int)(((byte)(48)))));
this.ClientSize = new System.Drawing.Size(1008, 729);
this.Controls.Add(this._Go);
this.Controls.Add(this._NoGo);
this.Controls.Add(this._Cancel);
this.Controls.Add(this._WebBrowser);
this.Controls.Add(this._BaseDirectory);
this.Controls.Add(this._CommandLineArgs);
this.Controls.Add(this._CurrentDirectory);
this.Font = new System.Drawing.Font("Tahoma", 9.75F);
this.Load += new System.EventHandler(this.Form_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
internal System.Windows.Forms.Button _Go;
internal System.Windows.Forms.Button _NoGo;
internal System.Windows.Forms.Button _Cancel;
internal System.Windows.Forms.Label _BaseDirectory;
internal System.Windows.Forms.Label _CommandLineArgs;
internal System.Windows.Forms.WebBrowser _WebBrowser;
internal System.Windows.Forms.Label _CurrentDirectory;
#endregion
}