ArchivedTools/C# Projects/ScanAssistant/ScanAssistant/FormMain.Designer.cs
2023-12-21 01:31:35 +01:00

380 lines
19 KiB
C#

namespace ScanAssistant
{
partial class FormMain
{
/// <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(FormMain));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.closeProjectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.panelNewOpenProject = new System.Windows.Forms.Panel();
this.panelMainWork = new System.Windows.Forms.Panel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.comboBoxDPI = new System.Windows.Forms.ComboBox();
this.buttonCorrectDPI = new System.Windows.Forms.Button();
this.buttonG4Compress = new System.Windows.Forms.Button();
this.groupBoxPreScanTailor = new System.Windows.Forms.GroupBox();
this.textBoxWhite = new System.Windows.Forms.TextBox();
this.textBoxBlack = new System.Windows.Forms.TextBox();
this.progressBarInitiate = new System.Windows.Forms.ProgressBar();
this.buttonSetDefault = new System.Windows.Forms.Button();
this.buttonInitiate = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnNew = new System.Windows.Forms.Button();
this.btnOpen = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.panelNewOpenProject.SuspendLayout();
this.panelMainWork.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBoxPreScanTailor.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(593, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newProjectToolStripMenuItem,
this.openToolStripMenuItem,
this.closeProjectToolStripMenuItem,
this.toolStripSeparator1,
this.quitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// newProjectToolStripMenuItem
//
this.newProjectToolStripMenuItem.Name = "newProjectToolStripMenuItem";
this.newProjectToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.newProjectToolStripMenuItem.Text = "&New Project...";
this.newProjectToolStripMenuItem.Click += new System.EventHandler(this.newProjectToolStripMenuItem_Click);
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.openToolStripMenuItem.Text = "&Open Project...";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// closeProjectToolStripMenuItem
//
this.closeProjectToolStripMenuItem.Name = "closeProjectToolStripMenuItem";
this.closeProjectToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.closeProjectToolStripMenuItem.Text = "&Close Project";
this.closeProjectToolStripMenuItem.Click += new System.EventHandler(this.closeProjectToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
//
// quitToolStripMenuItem
//
this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
this.quitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.quitToolStripMenuItem.Text = "&Quit";
this.quitToolStripMenuItem.Click += new System.EventHandler(this.quitToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "&Help";
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.aboutToolStripMenuItem.Text = "&About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// panelNewOpenProject
//
this.panelNewOpenProject.Controls.Add(this.panelMainWork);
this.panelNewOpenProject.Controls.Add(this.btnNew);
this.panelNewOpenProject.Controls.Add(this.btnOpen);
this.panelNewOpenProject.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelNewOpenProject.Location = new System.Drawing.Point(0, 24);
this.panelNewOpenProject.Name = "panelNewOpenProject";
this.panelNewOpenProject.Size = new System.Drawing.Size(593, 497);
this.panelNewOpenProject.TabIndex = 1;
//
// panelMainWork
//
this.panelMainWork.BackColor = System.Drawing.SystemColors.Control;
this.panelMainWork.Controls.Add(this.groupBox1);
this.panelMainWork.Controls.Add(this.groupBoxPreScanTailor);
this.panelMainWork.Location = new System.Drawing.Point(0, 0);
this.panelMainWork.Name = "panelMainWork";
this.panelMainWork.Size = new System.Drawing.Size(593, 497);
this.panelMainWork.TabIndex = 2;
this.panelMainWork.Visible = false;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.comboBoxDPI);
this.groupBox1.Controls.Add(this.buttonCorrectDPI);
this.groupBox1.Controls.Add(this.buttonG4Compress);
this.groupBox1.Location = new System.Drawing.Point(12, 121);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(568, 208);
this.groupBox1.TabIndex = 10;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Options after ScanTailor";
//
// comboBoxDPI
//
this.comboBoxDPI.DisplayMember = "600";
this.comboBoxDPI.FormatString = "N0";
this.comboBoxDPI.FormattingEnabled = true;
this.comboBoxDPI.Items.AddRange(new object[] {
"150",
"300",
"600"});
this.comboBoxDPI.Location = new System.Drawing.Point(99, 21);
this.comboBoxDPI.Name = "comboBoxDPI";
this.comboBoxDPI.Size = new System.Drawing.Size(70, 21);
this.comboBoxDPI.TabIndex = 2;
//
// buttonCorrectDPI
//
this.buttonCorrectDPI.Location = new System.Drawing.Point(7, 20);
this.buttonCorrectDPI.Name = "buttonCorrectDPI";
this.buttonCorrectDPI.Size = new System.Drawing.Size(85, 23);
this.buttonCorrectDPI.TabIndex = 1;
this.buttonCorrectDPI.Text = "Correct DPI";
this.buttonCorrectDPI.UseVisualStyleBackColor = true;
//
// buttonG4Compress
//
this.buttonG4Compress.Location = new System.Drawing.Point(6, 58);
this.buttonG4Compress.Name = "buttonG4Compress";
this.buttonG4Compress.Size = new System.Drawing.Size(86, 23);
this.buttonG4Compress.TabIndex = 0;
this.buttonG4Compress.Text = "G4 Compress ";
this.buttonG4Compress.UseVisualStyleBackColor = true;
//
// groupBoxPreScanTailor
//
this.groupBoxPreScanTailor.Controls.Add(this.textBoxWhite);
this.groupBoxPreScanTailor.Controls.Add(this.textBoxBlack);
this.groupBoxPreScanTailor.Controls.Add(this.progressBarInitiate);
this.groupBoxPreScanTailor.Controls.Add(this.buttonSetDefault);
this.groupBoxPreScanTailor.Controls.Add(this.buttonInitiate);
this.groupBoxPreScanTailor.Controls.Add(this.label4);
this.groupBoxPreScanTailor.Controls.Add(this.label3);
this.groupBoxPreScanTailor.Controls.Add(this.label2);
this.groupBoxPreScanTailor.Controls.Add(this.label1);
this.groupBoxPreScanTailor.Location = new System.Drawing.Point(12, 15);
this.groupBoxPreScanTailor.Name = "groupBoxPreScanTailor";
this.groupBoxPreScanTailor.Size = new System.Drawing.Size(569, 100);
this.groupBoxPreScanTailor.TabIndex = 9;
this.groupBoxPreScanTailor.TabStop = false;
this.groupBoxPreScanTailor.Text = "Prepare for ScanTailor";
//
// textBoxWhite
//
this.textBoxWhite.Location = new System.Drawing.Point(152, 45);
this.textBoxWhite.Name = "textBoxWhite";
this.textBoxWhite.Size = new System.Drawing.Size(31, 20);
this.textBoxWhite.TabIndex = 10;
this.textBoxWhite.Text = "86";
this.textBoxWhite.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBoxBlack
//
this.textBoxBlack.Location = new System.Drawing.Point(90, 45);
this.textBoxBlack.Name = "textBoxBlack";
this.textBoxBlack.Size = new System.Drawing.Size(31, 20);
this.textBoxBlack.TabIndex = 9;
this.textBoxBlack.Text = "11";
this.textBoxBlack.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// progressBarInitiate
//
this.progressBarInitiate.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.progressBarInitiate.Location = new System.Drawing.Point(420, 42);
this.progressBarInitiate.Name = "progressBarInitiate";
this.progressBarInitiate.Size = new System.Drawing.Size(143, 23);
this.progressBarInitiate.TabIndex = 8;
//
// buttonSetDefault
//
this.buttonSetDefault.Location = new System.Drawing.Point(319, 42);
this.buttonSetDefault.Name = "buttonSetDefault";
this.buttonSetDefault.Size = new System.Drawing.Size(85, 23);
this.buttonSetDefault.TabIndex = 7;
this.buttonSetDefault.Text = "Default Values";
this.buttonSetDefault.UseVisualStyleBackColor = true;
//
// buttonInitiate
//
this.buttonInitiate.Location = new System.Drawing.Point(6, 43);
this.buttonInitiate.Name = "buttonInitiate";
this.buttonInitiate.Size = new System.Drawing.Size(75, 23);
this.buttonInitiate.TabIndex = 0;
this.buttonInitiate.Text = "Initiate";
this.buttonInitiate.UseVisualStyleBackColor = true;
this.buttonInitiate.Click += new System.EventHandler(this.buttonInitiate_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(149, 29);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(35, 13);
this.label4.TabIndex = 6;
this.label4.Text = "White";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(89, 29);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(34, 13);
this.label3.TabIndex = 5;
this.label3.Text = "Black";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(184, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(15, 13);
this.label2.TabIndex = 4;
this.label2.Text = "%";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(122, 48);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(15, 13);
this.label1.TabIndex = 3;
this.label1.Text = "%";
//
// btnNew
//
this.btnNew.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnNew.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnNew.Location = new System.Drawing.Point(164, 204);
this.btnNew.Name = "btnNew";
this.btnNew.Size = new System.Drawing.Size(129, 88);
this.btnNew.TabIndex = 0;
this.btnNew.Text = "Pre ScanTailor";
this.btnNew.UseVisualStyleBackColor = true;
this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
//
// btnOpen
//
this.btnOpen.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnOpen.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnOpen.Location = new System.Drawing.Point(299, 204);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(128, 88);
this.btnOpen.TabIndex = 1;
this.btnOpen.Text = "Post ScanTailor";
this.btnOpen.UseVisualStyleBackColor = true;
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(593, 521);
this.Controls.Add(this.panelNewOpenProject);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Name = "FormMain";
this.Text = "ScanAssistant";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.panelNewOpenProject.ResumeLayout(false);
this.panelMainWork.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBoxPreScanTailor.ResumeLayout(false);
this.groupBoxPreScanTailor.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem newProjectToolStripMenuItem;
private System.Windows.Forms.Panel panelNewOpenProject;
private System.Windows.Forms.Button btnOpen;
private System.Windows.Forms.Button btnNew;
private System.Windows.Forms.ToolStripMenuItem closeProjectToolStripMenuItem;
private System.Windows.Forms.Panel panelMainWork;
private System.Windows.Forms.GroupBox groupBoxPreScanTailor;
private System.Windows.Forms.ProgressBar progressBarInitiate;
private System.Windows.Forms.Button buttonSetDefault;
private System.Windows.Forms.Button buttonInitiate;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxWhite;
private System.Windows.Forms.TextBox textBoxBlack;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ComboBox comboBoxDPI;
private System.Windows.Forms.Button buttonCorrectDPI;
private System.Windows.Forms.Button buttonG4Compress;
}
}