123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- namespace Max2Babylon
- {
- partial class ObjectPropertiesForm
- {
- /// <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.groupBox1 = new System.Windows.Forms.GroupBox();
- this.chkCollisions = new System.Windows.Forms.CheckBox();
- this.butCancel = new System.Windows.Forms.Button();
- this.butOK = new System.Windows.Forms.Button();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.chkPickable = new System.Windows.Forms.CheckBox();
- this.chkNoOptimize = new System.Windows.Forms.CheckBox();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.chkCollisions);
- this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.groupBox1.Location = new System.Drawing.Point(12, 12);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(319, 59);
- this.groupBox1.TabIndex = 1;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "Collisions";
- //
- // chkCollisions
- //
- this.chkCollisions.AutoSize = true;
- this.chkCollisions.Location = new System.Drawing.Point(21, 28);
- this.chkCollisions.Name = "chkCollisions";
- this.chkCollisions.Size = new System.Drawing.Size(102, 17);
- this.chkCollisions.TabIndex = 0;
- this.chkCollisions.Text = "Check collisions";
- this.chkCollisions.ThreeState = true;
- this.chkCollisions.UseVisualStyleBackColor = true;
- //
- // butCancel
- //
- this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
- this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
- this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butCancel.Location = new System.Drawing.Point(174, 226);
- this.butCancel.Name = "butCancel";
- this.butCancel.Size = new System.Drawing.Size(75, 23);
- this.butCancel.TabIndex = 6;
- this.butCancel.Text = "Cancel";
- this.butCancel.UseVisualStyleBackColor = true;
- //
- // butOK
- //
- this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
- this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
- this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.butOK.Location = new System.Drawing.Point(93, 226);
- this.butOK.Name = "butOK";
- this.butOK.Size = new System.Drawing.Size(75, 23);
- this.butOK.TabIndex = 5;
- this.butOK.Text = "OK";
- this.butOK.UseVisualStyleBackColor = true;
- this.butOK.Click += new System.EventHandler(this.butOK_Click);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.chkNoOptimize);
- this.groupBox2.Controls.Add(this.chkPickable);
- this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
- this.groupBox2.Location = new System.Drawing.Point(12, 77);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(319, 113);
- this.groupBox2.TabIndex = 2;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "Misc.";
- //
- // chkPickable
- //
- this.chkPickable.AutoSize = true;
- this.chkPickable.Location = new System.Drawing.Point(21, 28);
- this.chkPickable.Name = "chkPickable";
- this.chkPickable.Size = new System.Drawing.Size(67, 17);
- this.chkPickable.TabIndex = 0;
- this.chkPickable.Text = "Pickable";
- this.chkPickable.ThreeState = true;
- this.chkPickable.UseVisualStyleBackColor = true;
- //
- // chkNoOptimize
- //
- this.chkNoOptimize.AutoSize = true;
- this.chkNoOptimize.Location = new System.Drawing.Point(21, 51);
- this.chkNoOptimize.Name = "chkNoOptimize";
- this.chkNoOptimize.Size = new System.Drawing.Size(165, 17);
- this.chkNoOptimize.TabIndex = 1;
- this.chkNoOptimize.Text = "Do not try to optimize vertices";
- this.chkNoOptimize.ThreeState = true;
- this.chkNoOptimize.UseVisualStyleBackColor = true;
- //
- // ObjectPropertiesForm
- //
- this.AcceptButton = this.butOK;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.CancelButton = this.butCancel;
- this.ClientSize = new System.Drawing.Size(343, 261);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.butCancel);
- this.Controls.Add(this.butOK);
- this.Controls.Add(this.groupBox1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
- this.Name = "ObjectPropertiesForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Babylon.js - Object Properties";
- this.Load += new System.EventHandler(this.ObjectPropertiesForm_Load);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.CheckBox chkCollisions;
- private System.Windows.Forms.Button butCancel;
- private System.Windows.Forms.Button butOK;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.CheckBox chkPickable;
- private System.Windows.Forms.CheckBox chkNoOptimize;
- }
- }
|