Vector3Control.Designer.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. namespace Max2Babylon
  2. {
  3. partial class Vector3Control
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Component Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.nupX = new System.Windows.Forms.NumericUpDown();
  30. this.nupY = new System.Windows.Forms.NumericUpDown();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.nupZ = new System.Windows.Forms.NumericUpDown();
  33. this.label3 = new System.Windows.Forms.Label();
  34. ((System.ComponentModel.ISupportInitialize)(this.nupX)).BeginInit();
  35. ((System.ComponentModel.ISupportInitialize)(this.nupY)).BeginInit();
  36. ((System.ComponentModel.ISupportInitialize)(this.nupZ)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // label1
  40. //
  41. this.label1.AutoSize = true;
  42. this.label1.Location = new System.Drawing.Point(4, 6);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(20, 13);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "X: ";
  47. //
  48. // nupX
  49. //
  50. this.nupX.DecimalPlaces = 2;
  51. this.nupX.Location = new System.Drawing.Point(30, 4);
  52. this.nupX.Maximum = new decimal(new int[] {
  53. 1000000,
  54. 0,
  55. 0,
  56. 0});
  57. this.nupX.Minimum = new decimal(new int[] {
  58. 1000000,
  59. 0,
  60. 0,
  61. -2147483648});
  62. this.nupX.Name = "nupX";
  63. this.nupX.Size = new System.Drawing.Size(57, 20);
  64. this.nupX.TabIndex = 1;
  65. //
  66. // nupY
  67. //
  68. this.nupY.DecimalPlaces = 2;
  69. this.nupY.Location = new System.Drawing.Point(123, 4);
  70. this.nupY.Maximum = new decimal(new int[] {
  71. 1000000,
  72. 0,
  73. 0,
  74. 0});
  75. this.nupY.Minimum = new decimal(new int[] {
  76. 1000000,
  77. 0,
  78. 0,
  79. -2147483648});
  80. this.nupY.Name = "nupY";
  81. this.nupY.Size = new System.Drawing.Size(57, 20);
  82. this.nupY.TabIndex = 3;
  83. //
  84. // label2
  85. //
  86. this.label2.AutoSize = true;
  87. this.label2.Location = new System.Drawing.Point(97, 6);
  88. this.label2.Name = "label2";
  89. this.label2.Size = new System.Drawing.Size(17, 13);
  90. this.label2.TabIndex = 2;
  91. this.label2.Text = "Y:";
  92. //
  93. // nupZ
  94. //
  95. this.nupZ.DecimalPlaces = 2;
  96. this.nupZ.Location = new System.Drawing.Point(216, 4);
  97. this.nupZ.Maximum = new decimal(new int[] {
  98. 1000000,
  99. 0,
  100. 0,
  101. 0});
  102. this.nupZ.Minimum = new decimal(new int[] {
  103. 1000000,
  104. 0,
  105. 0,
  106. -2147483648});
  107. this.nupZ.Name = "nupZ";
  108. this.nupZ.Size = new System.Drawing.Size(57, 20);
  109. this.nupZ.TabIndex = 5;
  110. //
  111. // label3
  112. //
  113. this.label3.AutoSize = true;
  114. this.label3.Location = new System.Drawing.Point(190, 6);
  115. this.label3.Name = "label3";
  116. this.label3.Size = new System.Drawing.Size(17, 13);
  117. this.label3.TabIndex = 4;
  118. this.label3.Text = "Z:";
  119. //
  120. // Vector3Control
  121. //
  122. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  123. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  124. this.Controls.Add(this.nupZ);
  125. this.Controls.Add(this.label3);
  126. this.Controls.Add(this.nupY);
  127. this.Controls.Add(this.label2);
  128. this.Controls.Add(this.nupX);
  129. this.Controls.Add(this.label1);
  130. this.Name = "Vector3Control";
  131. this.Size = new System.Drawing.Size(294, 28);
  132. ((System.ComponentModel.ISupportInitialize)(this.nupX)).EndInit();
  133. ((System.ComponentModel.ISupportInitialize)(this.nupY)).EndInit();
  134. ((System.ComponentModel.ISupportInitialize)(this.nupZ)).EndInit();
  135. this.ResumeLayout(false);
  136. this.PerformLayout();
  137. }
  138. #endregion
  139. private System.Windows.Forms.Label label1;
  140. private System.Windows.Forms.NumericUpDown nupX;
  141. private System.Windows.Forms.NumericUpDown nupY;
  142. private System.Windows.Forms.Label label2;
  143. private System.Windows.Forms.NumericUpDown nupZ;
  144. private System.Windows.Forms.Label label3;
  145. }
  146. }