ObjectPropertiesForm.Designer.cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. namespace Max2Babylon
  2. {
  3. partial class ObjectPropertiesForm
  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 Windows Form 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.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.chkCollisions = new System.Windows.Forms.CheckBox();
  30. this.butCancel = new System.Windows.Forms.Button();
  31. this.butOK = new System.Windows.Forms.Button();
  32. this.groupBox2 = new System.Windows.Forms.GroupBox();
  33. this.chkPickable = new System.Windows.Forms.CheckBox();
  34. this.chkNoOptimize = new System.Windows.Forms.CheckBox();
  35. this.groupBox1.SuspendLayout();
  36. this.groupBox2.SuspendLayout();
  37. this.SuspendLayout();
  38. //
  39. // groupBox1
  40. //
  41. this.groupBox1.Controls.Add(this.chkCollisions);
  42. this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  43. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  44. this.groupBox1.Name = "groupBox1";
  45. this.groupBox1.Size = new System.Drawing.Size(319, 59);
  46. this.groupBox1.TabIndex = 1;
  47. this.groupBox1.TabStop = false;
  48. this.groupBox1.Text = "Collisions";
  49. //
  50. // chkCollisions
  51. //
  52. this.chkCollisions.AutoSize = true;
  53. this.chkCollisions.Location = new System.Drawing.Point(21, 28);
  54. this.chkCollisions.Name = "chkCollisions";
  55. this.chkCollisions.Size = new System.Drawing.Size(102, 17);
  56. this.chkCollisions.TabIndex = 0;
  57. this.chkCollisions.Text = "Check collisions";
  58. this.chkCollisions.ThreeState = true;
  59. this.chkCollisions.UseVisualStyleBackColor = true;
  60. //
  61. // butCancel
  62. //
  63. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  64. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  65. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  66. this.butCancel.Location = new System.Drawing.Point(174, 226);
  67. this.butCancel.Name = "butCancel";
  68. this.butCancel.Size = new System.Drawing.Size(75, 23);
  69. this.butCancel.TabIndex = 6;
  70. this.butCancel.Text = "Cancel";
  71. this.butCancel.UseVisualStyleBackColor = true;
  72. //
  73. // butOK
  74. //
  75. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  76. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  77. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  78. this.butOK.Location = new System.Drawing.Point(93, 226);
  79. this.butOK.Name = "butOK";
  80. this.butOK.Size = new System.Drawing.Size(75, 23);
  81. this.butOK.TabIndex = 5;
  82. this.butOK.Text = "OK";
  83. this.butOK.UseVisualStyleBackColor = true;
  84. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  85. //
  86. // groupBox2
  87. //
  88. this.groupBox2.Controls.Add(this.chkNoOptimize);
  89. this.groupBox2.Controls.Add(this.chkPickable);
  90. this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  91. this.groupBox2.Location = new System.Drawing.Point(12, 77);
  92. this.groupBox2.Name = "groupBox2";
  93. this.groupBox2.Size = new System.Drawing.Size(319, 113);
  94. this.groupBox2.TabIndex = 2;
  95. this.groupBox2.TabStop = false;
  96. this.groupBox2.Text = "Misc.";
  97. //
  98. // chkPickable
  99. //
  100. this.chkPickable.AutoSize = true;
  101. this.chkPickable.Location = new System.Drawing.Point(21, 28);
  102. this.chkPickable.Name = "chkPickable";
  103. this.chkPickable.Size = new System.Drawing.Size(67, 17);
  104. this.chkPickable.TabIndex = 0;
  105. this.chkPickable.Text = "Pickable";
  106. this.chkPickable.ThreeState = true;
  107. this.chkPickable.UseVisualStyleBackColor = true;
  108. //
  109. // chkNoOptimize
  110. //
  111. this.chkNoOptimize.AutoSize = true;
  112. this.chkNoOptimize.Location = new System.Drawing.Point(21, 51);
  113. this.chkNoOptimize.Name = "chkNoOptimize";
  114. this.chkNoOptimize.Size = new System.Drawing.Size(165, 17);
  115. this.chkNoOptimize.TabIndex = 1;
  116. this.chkNoOptimize.Text = "Do not try to optimize vertices";
  117. this.chkNoOptimize.ThreeState = true;
  118. this.chkNoOptimize.UseVisualStyleBackColor = true;
  119. //
  120. // ObjectPropertiesForm
  121. //
  122. this.AcceptButton = this.butOK;
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.CancelButton = this.butCancel;
  126. this.ClientSize = new System.Drawing.Size(343, 261);
  127. this.Controls.Add(this.groupBox2);
  128. this.Controls.Add(this.butCancel);
  129. this.Controls.Add(this.butOK);
  130. this.Controls.Add(this.groupBox1);
  131. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  132. this.Name = "ObjectPropertiesForm";
  133. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  134. this.Text = "Babylon.js - Object Properties";
  135. this.Load += new System.EventHandler(this.ObjectPropertiesForm_Load);
  136. this.groupBox1.ResumeLayout(false);
  137. this.groupBox1.PerformLayout();
  138. this.groupBox2.ResumeLayout(false);
  139. this.groupBox2.PerformLayout();
  140. this.ResumeLayout(false);
  141. }
  142. #endregion
  143. private System.Windows.Forms.GroupBox groupBox1;
  144. private System.Windows.Forms.CheckBox chkCollisions;
  145. private System.Windows.Forms.Button butCancel;
  146. private System.Windows.Forms.Button butOK;
  147. private System.Windows.Forms.GroupBox groupBox2;
  148. private System.Windows.Forms.CheckBox chkPickable;
  149. private System.Windows.Forms.CheckBox chkNoOptimize;
  150. }
  151. }