TileSearchDialog.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. namespace Cobble {
  2. partial class TileSearchDialog {
  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.groupBox2 = new System.Windows.Forms.GroupBox();
  26. this.udNewId = new System.Windows.Forms.NumericUpDown();
  27. this.label2 = new System.Windows.Forms.Label();
  28. this.udOldId = new System.Windows.Forms.NumericUpDown();
  29. this.groupBox2.SuspendLayout();
  30. ((System.ComponentModel.ISupportInitialize)(this.udNewId)).BeginInit();
  31. ((System.ComponentModel.ISupportInitialize)(this.udOldId)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // btnOk
  35. //
  36. this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
  37. this.btnOk.Location = new System.Drawing.Point(254, 105);
  38. this.btnOk.Name = "btnOk";
  39. this.btnOk.Size = new System.Drawing.Size(75, 23);
  40. this.btnOk.TabIndex = 0;
  41. this.btnOk.Text = "OK";
  42. this.btnOk.UseVisualStyleBackColor = true;
  43. //
  44. // btnCancel
  45. //
  46. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  47. this.btnCancel.Location = new System.Drawing.Point(173, 105);
  48. this.btnCancel.Name = "btnCancel";
  49. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  50. this.btnCancel.TabIndex = 1;
  51. this.btnCancel.Text = "Cancel";
  52. this.btnCancel.UseVisualStyleBackColor = true;
  53. //
  54. // groupBox2
  55. //
  56. this.groupBox2.Controls.Add(this.udNewId);
  57. this.groupBox2.Controls.Add(this.label2);
  58. this.groupBox2.Controls.Add(this.udOldId);
  59. this.groupBox2.Location = new System.Drawing.Point(12, 12);
  60. this.groupBox2.Name = "groupBox2";
  61. this.groupBox2.Size = new System.Drawing.Size(317, 75);
  62. this.groupBox2.TabIndex = 6;
  63. this.groupBox2.TabStop = false;
  64. this.groupBox2.Text = "Replace Tile Ids";
  65. //
  66. // udNewId
  67. //
  68. this.udNewId.Location = new System.Drawing.Point(168, 33);
  69. this.udNewId.Maximum = new decimal(new int[] {
  70. 65535,
  71. 0,
  72. 0,
  73. 0});
  74. this.udNewId.Name = "udNewId";
  75. this.udNewId.Size = new System.Drawing.Size(120, 20);
  76. this.udNewId.TabIndex = 3;
  77. //
  78. // label2
  79. //
  80. this.label2.AutoSize = true;
  81. this.label2.Location = new System.Drawing.Point(150, 40);
  82. this.label2.Name = "label2";
  83. this.label2.Size = new System.Drawing.Size(16, 13);
  84. this.label2.TabIndex = 4;
  85. this.label2.Text = "->";
  86. //
  87. // udOldId
  88. //
  89. this.udOldId.Location = new System.Drawing.Point(24, 33);
  90. this.udOldId.Maximum = new decimal(new int[] {
  91. 65535,
  92. 0,
  93. 0,
  94. 0});
  95. this.udOldId.Name = "udOldId";
  96. this.udOldId.Size = new System.Drawing.Size(120, 20);
  97. this.udOldId.TabIndex = 2;
  98. //
  99. // TileSearchDialog
  100. //
  101. this.AcceptButton = this.btnOk;
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.CancelButton = this.btnCancel;
  105. this.ClientSize = new System.Drawing.Size(341, 140);
  106. this.Controls.Add(this.groupBox2);
  107. this.Controls.Add(this.btnCancel);
  108. this.Controls.Add(this.btnOk);
  109. this.Name = "TileSearchDialog";
  110. this.Text = "Search and Replace Tiles";
  111. this.groupBox2.ResumeLayout(false);
  112. this.groupBox2.PerformLayout();
  113. ((System.ComponentModel.ISupportInitialize)(this.udNewId)).EndInit();
  114. ((System.ComponentModel.ISupportInitialize)(this.udOldId)).EndInit();
  115. this.ResumeLayout(false);
  116. }
  117. #endregion
  118. private System.Windows.Forms.Button btnOk;
  119. private System.Windows.Forms.Button btnCancel;
  120. private System.Windows.Forms.GroupBox groupBox2;
  121. private System.Windows.Forms.NumericUpDown udNewId;
  122. private System.Windows.Forms.Label label2;
  123. private System.Windows.Forms.NumericUpDown udOldId;
  124. }
  125. }