工具箱相关
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OutputbyTK_Form.Designer.cs 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. 
  2. namespace HCTools
  3. {
  4. partial class OutputbyTK_Form
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.textBox_output = new System.Windows.Forms.TextBox();
  32. this.button_ok = new System.Windows.Forms.Button();
  33. this.button_sele = new System.Windows.Forms.Button();
  34. this.comboBox_tk = new System.Windows.Forms.ComboBox();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.comboBox_num = new System.Windows.Forms.ComboBox();
  37. this.SuspendLayout();
  38. //
  39. // label1
  40. //
  41. this.label1.AutoSize = true;
  42. this.label1.Location = new System.Drawing.Point(51, 25);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(142, 15);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "分幅图框所在图层:";
  47. //
  48. // label2
  49. //
  50. this.label2.AutoSize = true;
  51. this.label2.Location = new System.Drawing.Point(110, 128);
  52. this.label2.Name = "label2";
  53. this.label2.Size = new System.Drawing.Size(82, 15);
  54. this.label2.TabIndex = 1;
  55. this.label2.Text = "输出位置:";
  56. //
  57. // textBox_output
  58. //
  59. this.textBox_output.Location = new System.Drawing.Point(198, 125);
  60. this.textBox_output.Name = "textBox_output";
  61. this.textBox_output.Size = new System.Drawing.Size(257, 25);
  62. this.textBox_output.TabIndex = 3;
  63. //
  64. // button_ok
  65. //
  66. this.button_ok.Location = new System.Drawing.Point(241, 170);
  67. this.button_ok.Name = "button_ok";
  68. this.button_ok.Size = new System.Drawing.Size(75, 31);
  69. this.button_ok.TabIndex = 4;
  70. this.button_ok.Text = "确 定";
  71. this.button_ok.UseVisualStyleBackColor = true;
  72. this.button_ok.Click += new System.EventHandler(this.button_ok_Click);
  73. //
  74. // button_sele
  75. //
  76. this.button_sele.Location = new System.Drawing.Point(471, 120);
  77. this.button_sele.Name = "button_sele";
  78. this.button_sele.Size = new System.Drawing.Size(68, 31);
  79. this.button_sele.TabIndex = 5;
  80. this.button_sele.Text = "选 择";
  81. this.button_sele.UseVisualStyleBackColor = true;
  82. this.button_sele.Click += new System.EventHandler(this.button_sele_Click);
  83. //
  84. // comboBox_tk
  85. //
  86. this.comboBox_tk.FormattingEnabled = true;
  87. this.comboBox_tk.Location = new System.Drawing.Point(199, 22);
  88. this.comboBox_tk.Name = "comboBox_tk";
  89. this.comboBox_tk.Size = new System.Drawing.Size(146, 23);
  90. this.comboBox_tk.TabIndex = 6;
  91. //
  92. // label3
  93. //
  94. this.label3.AutoSize = true;
  95. this.label3.Location = new System.Drawing.Point(65, 76);
  96. this.label3.Name = "label3";
  97. this.label3.Size = new System.Drawing.Size(127, 15);
  98. this.label3.TabIndex = 7;
  99. this.label3.Text = "图幅号所在图层:";
  100. //
  101. // comboBox_num
  102. //
  103. this.comboBox_num.FormattingEnabled = true;
  104. this.comboBox_num.Location = new System.Drawing.Point(199, 73);
  105. this.comboBox_num.Name = "comboBox_num";
  106. this.comboBox_num.Size = new System.Drawing.Size(146, 23);
  107. this.comboBox_num.TabIndex = 8;
  108. //
  109. // OutputbyTK_Form
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  113. this.ClientSize = new System.Drawing.Size(595, 234);
  114. this.Controls.Add(this.comboBox_num);
  115. this.Controls.Add(this.label3);
  116. this.Controls.Add(this.comboBox_tk);
  117. this.Controls.Add(this.button_sele);
  118. this.Controls.Add(this.button_ok);
  119. this.Controls.Add(this.textBox_output);
  120. this.Controls.Add(this.label2);
  121. this.Controls.Add(this.label1);
  122. this.Name = "OutputbyTK_Form";
  123. this.Text = "分幅输出地形图";
  124. this.Load += new System.EventHandler(this.OutputbyTK_Form_Load);
  125. this.ResumeLayout(false);
  126. this.PerformLayout();
  127. }
  128. #endregion
  129. private System.Windows.Forms.Label label1;
  130. private System.Windows.Forms.Label label2;
  131. private System.Windows.Forms.TextBox textBox_output;
  132. private System.Windows.Forms.Button button_ok;
  133. private System.Windows.Forms.Button button_sele;
  134. private System.Windows.Forms.ComboBox comboBox_tk;
  135. private System.Windows.Forms.Label label3;
  136. private System.Windows.Forms.ComboBox comboBox_num;
  137. }
  138. }