LightPropertiesForm.Designer.cs 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. namespace Max2Babylon
  2. {
  3. partial class LightPropertiesForm
  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.butOK = new System.Windows.Forms.Button();
  29. this.butCancel = new System.Windows.Forms.Button();
  30. this.groupBox3 = new System.Windows.Forms.GroupBox();
  31. this.grpAutoAnimate = new System.Windows.Forms.GroupBox();
  32. this.chkLoop = new System.Windows.Forms.CheckBox();
  33. this.nupTo = new System.Windows.Forms.NumericUpDown();
  34. this.label4 = new System.Windows.Forms.Label();
  35. this.nupFrom = new System.Windows.Forms.NumericUpDown();
  36. this.label5 = new System.Windows.Forms.Label();
  37. this.chkAutoAnimate = new System.Windows.Forms.CheckBox();
  38. this.groupBox3.SuspendLayout();
  39. this.grpAutoAnimate.SuspendLayout();
  40. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).BeginInit();
  41. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).BeginInit();
  42. this.SuspendLayout();
  43. //
  44. // butOK
  45. //
  46. this.butOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  47. this.butOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  48. this.butOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  49. this.butOK.Location = new System.Drawing.Point(93, 179);
  50. this.butOK.Name = "butOK";
  51. this.butOK.Size = new System.Drawing.Size(75, 23);
  52. this.butOK.TabIndex = 1;
  53. this.butOK.Text = "OK";
  54. this.butOK.UseVisualStyleBackColor = true;
  55. this.butOK.Click += new System.EventHandler(this.butOK_Click);
  56. //
  57. // butCancel
  58. //
  59. this.butCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  60. this.butCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  61. this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  62. this.butCancel.Location = new System.Drawing.Point(174, 179);
  63. this.butCancel.Name = "butCancel";
  64. this.butCancel.Size = new System.Drawing.Size(75, 23);
  65. this.butCancel.TabIndex = 2;
  66. this.butCancel.Text = "Cancel";
  67. this.butCancel.UseVisualStyleBackColor = true;
  68. //
  69. // groupBox3
  70. //
  71. this.groupBox3.Controls.Add(this.grpAutoAnimate);
  72. this.groupBox3.Controls.Add(this.chkAutoAnimate);
  73. this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  74. this.groupBox3.Location = new System.Drawing.Point(12, 12);
  75. this.groupBox3.Name = "groupBox3";
  76. this.groupBox3.Size = new System.Drawing.Size(319, 156);
  77. this.groupBox3.TabIndex = 5;
  78. this.groupBox3.TabStop = false;
  79. this.groupBox3.Text = "Animations";
  80. //
  81. // grpAutoAnimate
  82. //
  83. this.grpAutoAnimate.Controls.Add(this.chkLoop);
  84. this.grpAutoAnimate.Controls.Add(this.nupTo);
  85. this.grpAutoAnimate.Controls.Add(this.label4);
  86. this.grpAutoAnimate.Controls.Add(this.nupFrom);
  87. this.grpAutoAnimate.Controls.Add(this.label5);
  88. this.grpAutoAnimate.Enabled = false;
  89. this.grpAutoAnimate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  90. this.grpAutoAnimate.Location = new System.Drawing.Point(21, 51);
  91. this.grpAutoAnimate.Name = "grpAutoAnimate";
  92. this.grpAutoAnimate.Size = new System.Drawing.Size(292, 99);
  93. this.grpAutoAnimate.TabIndex = 3;
  94. this.grpAutoAnimate.TabStop = false;
  95. //
  96. // chkLoop
  97. //
  98. this.chkLoop.AutoSize = true;
  99. this.chkLoop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  100. this.chkLoop.Location = new System.Drawing.Point(9, 66);
  101. this.chkLoop.Name = "chkLoop";
  102. this.chkLoop.Size = new System.Drawing.Size(47, 17);
  103. this.chkLoop.TabIndex = 5;
  104. this.chkLoop.Text = "Loop";
  105. this.chkLoop.ThreeState = true;
  106. this.chkLoop.UseVisualStyleBackColor = true;
  107. //
  108. // nupTo
  109. //
  110. this.nupTo.Location = new System.Drawing.Point(47, 40);
  111. this.nupTo.Maximum = new decimal(new int[] {
  112. 1000,
  113. 0,
  114. 0,
  115. 0});
  116. this.nupTo.Name = "nupTo";
  117. this.nupTo.Size = new System.Drawing.Size(120, 20);
  118. this.nupTo.TabIndex = 3;
  119. //
  120. // label4
  121. //
  122. this.label4.AutoSize = true;
  123. this.label4.Location = new System.Drawing.Point(6, 42);
  124. this.label4.Name = "label4";
  125. this.label4.Size = new System.Drawing.Size(23, 13);
  126. this.label4.TabIndex = 4;
  127. this.label4.Text = "To:";
  128. //
  129. // nupFrom
  130. //
  131. this.nupFrom.Location = new System.Drawing.Point(47, 14);
  132. this.nupFrom.Maximum = new decimal(new int[] {
  133. 1000,
  134. 0,
  135. 0,
  136. 0});
  137. this.nupFrom.Name = "nupFrom";
  138. this.nupFrom.Size = new System.Drawing.Size(120, 20);
  139. this.nupFrom.TabIndex = 1;
  140. //
  141. // label5
  142. //
  143. this.label5.AutoSize = true;
  144. this.label5.Location = new System.Drawing.Point(6, 16);
  145. this.label5.Name = "label5";
  146. this.label5.Size = new System.Drawing.Size(33, 13);
  147. this.label5.TabIndex = 2;
  148. this.label5.Text = "From:";
  149. //
  150. // chkAutoAnimate
  151. //
  152. this.chkAutoAnimate.AutoSize = true;
  153. this.chkAutoAnimate.Location = new System.Drawing.Point(21, 28);
  154. this.chkAutoAnimate.Name = "chkAutoAnimate";
  155. this.chkAutoAnimate.Size = new System.Drawing.Size(88, 17);
  156. this.chkAutoAnimate.TabIndex = 0;
  157. this.chkAutoAnimate.Text = "Auto animate";
  158. this.chkAutoAnimate.ThreeState = true;
  159. this.chkAutoAnimate.UseVisualStyleBackColor = true;
  160. this.chkAutoAnimate.CheckedChanged += new System.EventHandler(this.chkAutoAnimate_CheckedChanged);
  161. //
  162. // LightPropertiesForm
  163. //
  164. this.AcceptButton = this.butOK;
  165. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  166. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  167. this.CancelButton = this.butCancel;
  168. this.ClientSize = new System.Drawing.Size(343, 214);
  169. this.Controls.Add(this.groupBox3);
  170. this.Controls.Add(this.butCancel);
  171. this.Controls.Add(this.butOK);
  172. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
  173. this.Name = "LightPropertiesForm";
  174. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  175. this.Text = "Babylon.js - Light Properties";
  176. this.Load += new System.EventHandler(this.LightPropertiesForm_Load);
  177. this.groupBox3.ResumeLayout(false);
  178. this.groupBox3.PerformLayout();
  179. this.grpAutoAnimate.ResumeLayout(false);
  180. this.grpAutoAnimate.PerformLayout();
  181. ((System.ComponentModel.ISupportInitialize)(this.nupTo)).EndInit();
  182. ((System.ComponentModel.ISupportInitialize)(this.nupFrom)).EndInit();
  183. this.ResumeLayout(false);
  184. }
  185. #endregion
  186. private System.Windows.Forms.Button butOK;
  187. private System.Windows.Forms.Button butCancel;
  188. private System.Windows.Forms.GroupBox groupBox3;
  189. private System.Windows.Forms.GroupBox grpAutoAnimate;
  190. private System.Windows.Forms.CheckBox chkLoop;
  191. private System.Windows.Forms.NumericUpDown nupTo;
  192. private System.Windows.Forms.Label label4;
  193. private System.Windows.Forms.NumericUpDown nupFrom;
  194. private System.Windows.Forms.Label label5;
  195. private System.Windows.Forms.CheckBox chkAutoAnimate;
  196. }
  197. }