107 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Project.Dialog
 | |
| {
 | |
|     partial class fDebug
 | |
|     {
 | |
|         /// <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.tabControl1 = new System.Windows.Forms.TabControl();
 | |
|             this.tabPage1 = new System.Windows.Forms.TabPage();
 | |
|             this.button1 = new System.Windows.Forms.Button();
 | |
|             this.textBox1 = new System.Windows.Forms.TextBox();
 | |
|             this.tabControl1.SuspendLayout();
 | |
|             this.tabPage1.SuspendLayout();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // tabControl1
 | |
|             // 
 | |
|             this.tabControl1.Controls.Add(this.tabPage1);
 | |
|             this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.tabControl1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.tabControl1.Name = "tabControl1";
 | |
|             this.tabControl1.SelectedIndex = 0;
 | |
|             this.tabControl1.Size = new System.Drawing.Size(538, 163);
 | |
|             this.tabControl1.TabIndex = 8;
 | |
|             // 
 | |
|             // tabPage1
 | |
|             // 
 | |
|             this.tabPage1.Controls.Add(this.button1);
 | |
|             this.tabPage1.Controls.Add(this.textBox1);
 | |
|             this.tabPage1.Location = new System.Drawing.Point(4, 22);
 | |
|             this.tabPage1.Name = "tabPage1";
 | |
|             this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
 | |
|             this.tabPage1.Size = new System.Drawing.Size(530, 137);
 | |
|             this.tabPage1.TabIndex = 0;
 | |
|             this.tabPage1.Text = "tabPage1";
 | |
|             this.tabPage1.UseVisualStyleBackColor = true;
 | |
|             // 
 | |
|             // button1
 | |
|             // 
 | |
|             this.button1.Location = new System.Drawing.Point(201, 19);
 | |
|             this.button1.Name = "button1";
 | |
|             this.button1.Size = new System.Drawing.Size(122, 21);
 | |
|             this.button1.TabIndex = 1;
 | |
|             this.button1.Text = "barcode";
 | |
|             this.button1.UseVisualStyleBackColor = true;
 | |
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | |
|             // 
 | |
|             // textBox1
 | |
|             // 
 | |
|             this.textBox1.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
 | |
|             this.textBox1.ImeMode = System.Windows.Forms.ImeMode.Alpha;
 | |
|             this.textBox1.Location = new System.Drawing.Point(17, 19);
 | |
|             this.textBox1.Name = "textBox1";
 | |
|             this.textBox1.Size = new System.Drawing.Size(179, 21);
 | |
|             this.textBox1.TabIndex = 0;
 | |
|             // 
 | |
|             // fDebug
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(538, 163);
 | |
|             this.Controls.Add(this.tabControl1);
 | |
|             this.KeyPreview = true;
 | |
|             this.MaximizeBox = false;
 | |
|             this.MinimizeBox = false;
 | |
|             this.Name = "fDebug";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "fDebug";
 | |
|             this.TopMost = true;
 | |
|             this.tabControl1.ResumeLayout(false);
 | |
|             this.tabPage1.ResumeLayout(false);
 | |
|             this.tabPage1.PerformLayout();
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.TabControl tabControl1;
 | |
|         private System.Windows.Forms.TabPage tabPage1;
 | |
|         private System.Windows.Forms.TextBox textBox1;
 | |
|         private System.Windows.Forms.Button button1;
 | |
|     }
 | |
| } | 
