SCC.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. 
  2. namespace PaintDotNet.Hardware
  3. {
  4. partial class SCC
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.label3 = new System.Windows.Forms.Label();
  33. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  34. this.lblX = new System.Windows.Forms.Label();
  35. this.lblY = new System.Windows.Forms.Label();
  36. this.lblZ = new System.Windows.Forms.Label();
  37. this.timer1 = new System.Windows.Forms.Timer(this.components);
  38. this.tableLayoutPanel1.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // label1
  42. //
  43. this.label1.AutoSize = true;
  44. this.label1.Location = new System.Drawing.Point(3, 0);
  45. this.label1.Name = "label1";
  46. this.label1.Size = new System.Drawing.Size(9, 12);
  47. this.label1.TabIndex = 0;
  48. this.label1.Text = "X";
  49. //
  50. // label2
  51. //
  52. this.label2.AutoSize = true;
  53. this.label2.Location = new System.Drawing.Point(3, 20);
  54. this.label2.Name = "label2";
  55. this.label2.Size = new System.Drawing.Size(9, 12);
  56. this.label2.TabIndex = 1;
  57. this.label2.Text = "Y";
  58. //
  59. // label3
  60. //
  61. this.label3.AutoSize = true;
  62. this.label3.Location = new System.Drawing.Point(3, 40);
  63. this.label3.Name = "label3";
  64. this.label3.Size = new System.Drawing.Size(9, 12);
  65. this.label3.TabIndex = 1;
  66. this.label3.Text = "Z ";
  67. //
  68. // tableLayoutPanel1
  69. //
  70. this.tableLayoutPanel1.ColumnCount = 2;
  71. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 15F));
  72. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  73. this.tableLayoutPanel1.Controls.Add(this.label3, 0, 2);
  74. this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
  75. this.tableLayoutPanel1.Controls.Add(this.label2, 0, 1);
  76. this.tableLayoutPanel1.Controls.Add(this.lblX, 1, 0);
  77. this.tableLayoutPanel1.Controls.Add(this.lblY, 1, 1);
  78. this.tableLayoutPanel1.Controls.Add(this.lblZ, 1, 2);
  79. this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
  80. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  81. this.tableLayoutPanel1.RowCount = 3;
  82. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  83. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  84. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
  85. this.tableLayoutPanel1.Size = new System.Drawing.Size(200, 61);
  86. this.tableLayoutPanel1.TabIndex = 2;
  87. //
  88. // lblX
  89. //
  90. this.lblX.AutoSize = true;
  91. this.lblX.Location = new System.Drawing.Point(18, 0);
  92. this.lblX.Name = "lblX";
  93. this.lblX.Size = new System.Drawing.Size(11, 12);
  94. this.lblX.TabIndex = 0;
  95. this.lblX.Text = "X";
  96. //
  97. // lblY
  98. //
  99. this.lblY.AutoSize = true;
  100. this.lblY.Location = new System.Drawing.Point(18, 20);
  101. this.lblY.Name = "lblY";
  102. this.lblY.Size = new System.Drawing.Size(11, 12);
  103. this.lblY.TabIndex = 1;
  104. this.lblY.Text = "Y";
  105. //
  106. // lblZ
  107. //
  108. this.lblZ.AutoSize = true;
  109. this.lblZ.Location = new System.Drawing.Point(18, 40);
  110. this.lblZ.Name = "lblZ";
  111. this.lblZ.Size = new System.Drawing.Size(17, 12);
  112. this.lblZ.TabIndex = 1;
  113. this.lblZ.Text = "Z ";
  114. //
  115. // timer1
  116. //
  117. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  118. //
  119. // SCC
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.ClientSize = new System.Drawing.Size(232, 95);
  124. this.Controls.Add(this.tableLayoutPanel1);
  125. this.Name = "SCC";
  126. this.Text = "SCC";
  127. this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SCC_KeyDown);
  128. this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.SCC_KeyUp);
  129. this.tableLayoutPanel1.ResumeLayout(false);
  130. this.tableLayoutPanel1.PerformLayout();
  131. this.ResumeLayout(false);
  132. }
  133. #endregion
  134. private System.Windows.Forms.Label label1;
  135. private System.Windows.Forms.Label label2;
  136. private System.Windows.Forms.Label label3;
  137. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  138. private System.Windows.Forms.Label lblX;
  139. private System.Windows.Forms.Label lblY;
  140. private System.Windows.Forms.Label lblZ;
  141. private System.Windows.Forms.Timer timer1;
  142. }
  143. }