123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
-
- namespace PaintDotNet.Hardware
- {
- partial class SCC
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.label2 = new System.Windows.Forms.Label();
- this.label3 = new System.Windows.Forms.Label();
- this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
- this.lblX = new System.Windows.Forms.Label();
- this.lblY = new System.Windows.Forms.Label();
- this.lblZ = new System.Windows.Forms.Label();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.tableLayoutPanel1.SuspendLayout();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(3, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(9, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "X";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(3, 20);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(9, 12);
- this.label2.TabIndex = 1;
- this.label2.Text = "Y";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(3, 40);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(9, 12);
- this.label3.TabIndex = 1;
- this.label3.Text = "Z ";
- //
- // tableLayoutPanel1
- //
- this.tableLayoutPanel1.ColumnCount = 2;
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 15F));
- this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
- this.tableLayoutPanel1.Controls.Add(this.label3, 0, 2);
- this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
- this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
- this.tableLayoutPanel1.Controls.Add(this.lblX, 1, 0);
- this.tableLayoutPanel1.Controls.Add(this.lblY, 1, 1);
- this.tableLayoutPanel1.Controls.Add(this.lblZ, 1, 2);
- this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
- this.tableLayoutPanel1.Name = "tableLayoutPanel1";
- this.tableLayoutPanel1.RowCount = 3;
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
- this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 61);
- this.tableLayoutPanel1.TabIndex = 2;
- //
- // lblX
- //
- this.lblX.AutoSize = true;
- this.lblX.Location = new System.Drawing.Point(18, 0);
- this.lblX.Name = "lblX";
- this.lblX.Size = new System.Drawing.Size(11, 12);
- this.lblX.TabIndex = 0;
- this.lblX.Text = "X";
- //
- // lblY
- //
- this.lblY.AutoSize = true;
- this.lblY.Location = new System.Drawing.Point(18, 20);
- this.lblY.Name = "lblY";
- this.lblY.Size = new System.Drawing.Size(11, 12);
- this.lblY.TabIndex = 1;
- this.lblY.Text = "Y";
- //
- // lblZ
- //
- this.lblZ.AutoSize = true;
- this.lblZ.Location = new System.Drawing.Point(18, 40);
- this.lblZ.Name = "lblZ";
- this.lblZ.Size = new System.Drawing.Size(17, 12);
- this.lblZ.TabIndex = 1;
- this.lblZ.Text = "Z ";
- //
- // timer1
- //
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // SCC
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(232, 95);
- this.Controls.Add(this.tableLayoutPanel1);
- this.Name = "SCC";
- this.Text = "SCC";
- this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SCC_KeyDown);
- this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SCC_KeyUp);
- this.tableLayoutPanel1.ResumeLayout(false);
- this.tableLayoutPanel1.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
- private System.Windows.Forms.Label lblX;
- private System.Windows.Forms.Label lblY;
- private System.Windows.Forms.Label lblZ;
- private System.Windows.Forms.Timer timer1;
- }
- }
|