SectorResizeDialog.Designer.cs 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. namespace Cobble {
  2. partial class SectorResizeDialog {
  3. /// <summary>
  4. /// Required designer variable.
  5. /// </summary>
  6. private System.ComponentModel.IContainer components = null;
  7. /// <summary>
  8. /// Clean up any resources being used.
  9. /// </summary>
  10. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  11. protected override void Dispose(bool disposing) {
  12. if (disposing && (components != null)) {
  13. components.Dispose();
  14. }
  15. base.Dispose(disposing);
  16. }
  17. #region Windows Form Designer generated code
  18. /// <summary>
  19. /// Required method for Designer support - do not modify
  20. /// the contents of this method with the code editor.
  21. /// </summary>
  22. private void InitializeComponent() {
  23. this.btnOk = new System.Windows.Forms.Button();
  24. this.btnCancel = new System.Windows.Forms.Button();
  25. this.udWidth = new System.Windows.Forms.NumericUpDown();
  26. this.udHeight = new System.Windows.Forms.NumericUpDown();
  27. this.label1 = new System.Windows.Forms.Label();
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.groupBox2 = new System.Windows.Forms.GroupBox();
  30. this.udOffsetY = new System.Windows.Forms.NumericUpDown();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.udOffsetX = new System.Windows.Forms.NumericUpDown();
  33. ((System.ComponentModel.ISupportInitialize)(this.udWidth)).BeginInit();
  34. ((System.ComponentModel.ISupportInitialize)(this.udHeight)).BeginInit();
  35. this.groupBox1.SuspendLayout();
  36. this.groupBox2.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.udOffsetY)).BeginInit();
  38. ((System.ComponentModel.ISupportInitialize)(this.udOffsetX)).BeginInit();
  39. this.SuspendLayout();
  40. //
  41. // btnOk
  42. //
  43. this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
  44. this.btnOk.Location = new System.Drawing.Point(254, 174);
  45. this.btnOk.Name = "btnOk";
  46. this.btnOk.Size = new System.Drawing.Size(75, 23);
  47. this.btnOk.TabIndex = 0;
  48. this.btnOk.Text = "OK";
  49. this.btnOk.UseVisualStyleBackColor = true;
  50. //
  51. // btnCancel
  52. //
  53. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  54. this.btnCancel.Location = new System.Drawing.Point(173, 174);
  55. this.btnCancel.Name = "btnCancel";
  56. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  57. this.btnCancel.TabIndex = 1;
  58. this.btnCancel.Text = "Cancel";
  59. this.btnCancel.UseVisualStyleBackColor = true;
  60. //
  61. // udWidth
  62. //
  63. this.udWidth.Location = new System.Drawing.Point(24, 33);
  64. this.udWidth.Maximum = new decimal(new int[] {
  65. 1000,
  66. 0,
  67. 0,
  68. 0});
  69. this.udWidth.Minimum = new decimal(new int[] {
  70. 4,
  71. 0,
  72. 0,
  73. 0});
  74. this.udWidth.Name = "udWidth";
  75. this.udWidth.Size = new System.Drawing.Size(120, 20);
  76. this.udWidth.TabIndex = 2;
  77. this.udWidth.Value = new decimal(new int[] {
  78. 32,
  79. 0,
  80. 0,
  81. 0});
  82. //
  83. // udHeight
  84. //
  85. this.udHeight.Location = new System.Drawing.Point(168, 33);
  86. this.udHeight.Maximum = new decimal(new int[] {
  87. 1000,
  88. 0,
  89. 0,
  90. 0});
  91. this.udHeight.Minimum = new decimal(new int[] {
  92. 4,
  93. 0,
  94. 0,
  95. 0});
  96. this.udHeight.Name = "udHeight";
  97. this.udHeight.Size = new System.Drawing.Size(120, 20);
  98. this.udHeight.TabIndex = 3;
  99. this.udHeight.Value = new decimal(new int[] {
  100. 32,
  101. 0,
  102. 0,
  103. 0});
  104. //
  105. // label1
  106. //
  107. this.label1.AutoSize = true;
  108. this.label1.Location = new System.Drawing.Point(150, 40);
  109. this.label1.Name = "label1";
  110. this.label1.Size = new System.Drawing.Size(12, 13);
  111. this.label1.TabIndex = 4;
  112. this.label1.Text = "x";
  113. //
  114. // groupBox1
  115. //
  116. this.groupBox1.Controls.Add(this.udHeight);
  117. this.groupBox1.Controls.Add(this.label1);
  118. this.groupBox1.Controls.Add(this.udWidth);
  119. this.groupBox1.Location = new System.Drawing.Point(12, 93);
  120. this.groupBox1.Name = "groupBox1";
  121. this.groupBox1.Size = new System.Drawing.Size(317, 75);
  122. this.groupBox1.TabIndex = 5;
  123. this.groupBox1.TabStop = false;
  124. this.groupBox1.Text = "Resize To";
  125. //
  126. // groupBox2
  127. //
  128. this.groupBox2.Controls.Add(this.udOffsetY);
  129. this.groupBox2.Controls.Add(this.label2);
  130. this.groupBox2.Controls.Add(this.udOffsetX);
  131. this.groupBox2.Location = new System.Drawing.Point(12, 12);
  132. this.groupBox2.Name = "groupBox2";
  133. this.groupBox2.Size = new System.Drawing.Size(317, 75);
  134. this.groupBox2.TabIndex = 6;
  135. this.groupBox2.TabStop = false;
  136. this.groupBox2.Text = "Offset By";
  137. //
  138. // udOffsetY
  139. //
  140. this.udOffsetY.Location = new System.Drawing.Point(168, 33);
  141. this.udOffsetY.Maximum = new decimal(new int[] {
  142. 512,
  143. 0,
  144. 0,
  145. 0});
  146. this.udOffsetY.Minimum = new decimal(new int[] {
  147. 512,
  148. 0,
  149. 0,
  150. -2147483648});
  151. this.udOffsetY.Name = "udOffsetY";
  152. this.udOffsetY.Size = new System.Drawing.Size(120, 20);
  153. this.udOffsetY.TabIndex = 3;
  154. //
  155. // label2
  156. //
  157. this.label2.AutoSize = true;
  158. this.label2.Location = new System.Drawing.Point(150, 40);
  159. this.label2.Name = "label2";
  160. this.label2.Size = new System.Drawing.Size(10, 13);
  161. this.label2.TabIndex = 4;
  162. this.label2.Text = ",";
  163. //
  164. // udOffsetX
  165. //
  166. this.udOffsetX.Location = new System.Drawing.Point(24, 33);
  167. this.udOffsetX.Maximum = new decimal(new int[] {
  168. 512,
  169. 0,
  170. 0,
  171. 0});
  172. this.udOffsetX.Minimum = new decimal(new int[] {
  173. 512,
  174. 0,
  175. 0,
  176. -2147483648});
  177. this.udOffsetX.Name = "udOffsetX";
  178. this.udOffsetX.Size = new System.Drawing.Size(120, 20);
  179. this.udOffsetX.TabIndex = 2;
  180. //
  181. // SectorResizeDialog
  182. //
  183. this.AcceptButton = this.btnOk;
  184. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  185. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  186. this.CancelButton = this.btnCancel;
  187. this.ClientSize = new System.Drawing.Size(341, 210);
  188. this.Controls.Add(this.groupBox2);
  189. this.Controls.Add(this.groupBox1);
  190. this.Controls.Add(this.btnCancel);
  191. this.Controls.Add(this.btnOk);
  192. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  193. this.MaximizeBox = false;
  194. this.MinimizeBox = false;
  195. this.Name = "SectorResizeDialog";
  196. this.Text = "Sector Manipulation";
  197. ((System.ComponentModel.ISupportInitialize)(this.udWidth)).EndInit();
  198. ((System.ComponentModel.ISupportInitialize)(this.udHeight)).EndInit();
  199. this.groupBox1.ResumeLayout(false);
  200. this.groupBox1.PerformLayout();
  201. this.groupBox2.ResumeLayout(false);
  202. this.groupBox2.PerformLayout();
  203. ((System.ComponentModel.ISupportInitialize)(this.udOffsetY)).EndInit();
  204. ((System.ComponentModel.ISupportInitialize)(this.udOffsetX)).EndInit();
  205. this.ResumeLayout(false);
  206. }
  207. #endregion
  208. private System.Windows.Forms.Button btnOk;
  209. private System.Windows.Forms.Button btnCancel;
  210. private System.Windows.Forms.NumericUpDown udWidth;
  211. private System.Windows.Forms.NumericUpDown udHeight;
  212. private System.Windows.Forms.Label label1;
  213. private System.Windows.Forms.GroupBox groupBox1;
  214. private System.Windows.Forms.GroupBox groupBox2;
  215. private System.Windows.Forms.NumericUpDown udOffsetY;
  216. private System.Windows.Forms.Label label2;
  217. private System.Windows.Forms.NumericUpDown udOffsetX;
  218. }
  219. }