This commit is contained in:
2026-02-09 15:37:45 -06:00
parent e33a68ac51
commit 9635b84c3e
501 changed files with 106873 additions and 0 deletions

182
ScanBox/operatorDialog.Designer.cs generated Normal file
View File

@@ -0,0 +1,182 @@
namespace ScaBox30
{
partial class operatorDialog
{
/// <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(operatorDialog));
this.txtDialog = new System.Windows.Forms.TextBox();
this.panelBody = new System.Windows.Forms.Panel();
this.labelMessage = new System.Windows.Forms.Label();
this.panelButtons = new System.Windows.Forms.Panel();
this.button1 = new System.Windows.Forms.Button();
this.panelTitleBar = new System.Windows.Forms.Panel();
this.labelCaption = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.panelBody.SuspendLayout();
this.panelButtons.SuspendLayout();
this.panelTitleBar.SuspendLayout();
this.SuspendLayout();
//
// txtDialog
//
this.txtDialog.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtDialog.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtDialog.Location = new System.Drawing.Point(10, 57);
this.txtDialog.Name = "txtDialog";
this.txtDialog.Size = new System.Drawing.Size(365, 47);
this.txtDialog.TabIndex = 1;
this.txtDialog.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// panelBody
//
this.panelBody.BackColor = System.Drawing.Color.WhiteSmoke;
this.panelBody.Controls.Add(this.labelMessage);
this.panelBody.Controls.Add(this.txtDialog);
this.panelBody.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelBody.Location = new System.Drawing.Point(0, 35);
this.panelBody.Name = "panelBody";
this.panelBody.Padding = new System.Windows.Forms.Padding(10, 10, 0, 0);
this.panelBody.Size = new System.Drawing.Size(383, 123);
this.panelBody.TabIndex = 5;
//
// labelMessage
//
this.labelMessage.AutoSize = true;
this.labelMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelMessage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(85)))), ((int)(((byte)(85)))), ((int)(((byte)(85)))));
this.labelMessage.Location = new System.Drawing.Point(10, 10);
this.labelMessage.MaximumSize = new System.Drawing.Size(600, 0);
this.labelMessage.Name = "labelMessage";
this.labelMessage.Padding = new System.Windows.Forms.Padding(5, 5, 10, 15);
this.labelMessage.Size = new System.Drawing.Size(154, 44);
this.labelMessage.TabIndex = 2;
this.labelMessage.Text = "labelMessage";
this.labelMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// panelButtons
//
this.panelButtons.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
this.panelButtons.Controls.Add(this.button1);
this.panelButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panelButtons.Location = new System.Drawing.Point(0, 158);
this.panelButtons.Name = "panelButtons";
this.panelButtons.Size = new System.Drawing.Size(383, 60);
this.panelButtons.TabIndex = 4;
//
// button1
//
this.button1.BackColor = System.Drawing.Color.SeaGreen;
this.button1.FlatAppearance.BorderSize = 0;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.Color.WhiteSmoke;
this.button1.Location = new System.Drawing.Point(19, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(100, 35);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = false;
//
// panelTitleBar
//
this.panelTitleBar.BackColor = System.Drawing.Color.CornflowerBlue;
this.panelTitleBar.Controls.Add(this.labelCaption);
this.panelTitleBar.Controls.Add(this.btnClose);
this.panelTitleBar.Dock = System.Windows.Forms.DockStyle.Top;
this.panelTitleBar.Location = new System.Drawing.Point(0, 0);
this.panelTitleBar.Name = "panelTitleBar";
this.panelTitleBar.Size = new System.Drawing.Size(383, 35);
this.panelTitleBar.TabIndex = 3;
this.panelTitleBar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelTitleBar_MouseDown);
//
// labelCaption
//
this.labelCaption.AutoSize = true;
this.labelCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelCaption.ForeColor = System.Drawing.Color.White;
this.labelCaption.Location = new System.Drawing.Point(9, 8);
this.labelCaption.Name = "labelCaption";
this.labelCaption.Size = new System.Drawing.Size(86, 17);
this.labelCaption.TabIndex = 4;
this.labelCaption.Text = "labelCaption";
//
// btnClose
//
this.btnClose.Dock = System.Windows.Forms.DockStyle.Right;
this.btnClose.FlatAppearance.BorderSize = 0;
this.btnClose.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(79)))), ((int)(((byte)(95)))));
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClose.ForeColor = System.Drawing.Color.White;
this.btnClose.Location = new System.Drawing.Point(343, 0);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(40, 35);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "X";
this.btnClose.UseVisualStyleBackColor = false;
//
// operatorDialog
//
this.AcceptButton = this.button1;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(383, 218);
this.Controls.Add(this.panelBody);
this.Controls.Add(this.panelButtons);
this.Controls.Add(this.panelTitleBar);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.Name = "operatorDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Operador";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.operatorDialog_FormClosing);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.operatorDialog_KeyDown);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.operatorDialog_KeyPress);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.operatorDialog_KeyUp);
this.panelBody.ResumeLayout(false);
this.panelBody.PerformLayout();
this.panelButtons.ResumeLayout(false);
this.panelTitleBar.ResumeLayout(false);
this.panelTitleBar.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtDialog;
private System.Windows.Forms.Panel panelBody;
private System.Windows.Forms.Panel panelButtons;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Panel panelTitleBar;
private System.Windows.Forms.Label labelCaption;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Label labelMessage;
}
}