ObjectPropertiesForm.Designer.cs 6.1 KB

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