工具箱相关
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Scale.Designer.cs 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. 
  2. namespace HCTools
  3. {
  4. partial class Scale
  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.combox_scalesel = new System.Windows.Forms.ComboBox();
  31. this.btn_ok = new System.Windows.Forms.Button();
  32. this.btn_cacel = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Location = new System.Drawing.Point(54, 52);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(67, 15);
  41. this.label1.TabIndex = 0;
  42. this.label1.Text = "比例尺:";
  43. //
  44. // combox_scalesel
  45. //
  46. this.combox_scalesel.FormattingEnabled = true;
  47. this.combox_scalesel.Items.AddRange(new object[] {
  48. "1:500",
  49. "1:1000",
  50. "1:2000"});
  51. this.combox_scalesel.Location = new System.Drawing.Point(142, 44);
  52. this.combox_scalesel.Name = "combox_scalesel";
  53. this.combox_scalesel.Size = new System.Drawing.Size(160, 23);
  54. this.combox_scalesel.TabIndex = 1;
  55. //
  56. // btn_ok
  57. //
  58. this.btn_ok.Location = new System.Drawing.Point(46, 102);
  59. this.btn_ok.Name = "btn_ok";
  60. this.btn_ok.Size = new System.Drawing.Size(75, 30);
  61. this.btn_ok.TabIndex = 2;
  62. this.btn_ok.Text = "确 定";
  63. this.btn_ok.UseVisualStyleBackColor = true;
  64. this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
  65. //
  66. // btn_cacel
  67. //
  68. this.btn_cacel.Location = new System.Drawing.Point(252, 102);
  69. this.btn_cacel.Name = "btn_cacel";
  70. this.btn_cacel.Size = new System.Drawing.Size(75, 30);
  71. this.btn_cacel.TabIndex = 3;
  72. this.btn_cacel.Text = "取 消";
  73. this.btn_cacel.UseVisualStyleBackColor = true;
  74. //
  75. // Scale
  76. //
  77. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  78. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  79. this.ClientSize = new System.Drawing.Size(371, 153);
  80. this.Controls.Add(this.btn_cacel);
  81. this.Controls.Add(this.btn_ok);
  82. this.Controls.Add(this.combox_scalesel);
  83. this.Controls.Add(this.label1);
  84. this.Name = "Scale";
  85. this.Text = "地物压盖";
  86. this.Load += new System.EventHandler(this.Scale_Load);
  87. this.ResumeLayout(false);
  88. this.PerformLayout();
  89. }
  90. #endregion
  91. private System.Windows.Forms.Label label1;
  92. private System.Windows.Forms.ComboBox combox_scalesel;
  93. private System.Windows.Forms.Button btn_ok;
  94. private System.Windows.Forms.Button btn_cacel;
  95. }
  96. }