工具箱相关
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.

PicPts.Designer.cs 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. 
  2. namespace HCTools
  3. {
  4. partial class PicPts
  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.label_Decimal = new System.Windows.Forms.Label();
  30. this.comboBox_Decimal = new System.Windows.Forms.ComboBox();
  31. this.btn_Cancel = new System.Windows.Forms.Button();
  32. this.btn_OK = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label_Decimal
  36. //
  37. this.label_Decimal.AutoSize = true;
  38. this.label_Decimal.Location = new System.Drawing.Point(91, 54);
  39. this.label_Decimal.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  40. this.label_Decimal.Name = "label_Decimal";
  41. this.label_Decimal.Size = new System.Drawing.Size(142, 15);
  42. this.label_Decimal.TabIndex = 32;
  43. this.label_Decimal.Text = "坐标保留的小数位数";
  44. //
  45. // comboBox_Decimal
  46. //
  47. this.comboBox_Decimal.FormattingEnabled = true;
  48. this.comboBox_Decimal.Items.AddRange(new object[] {
  49. "0",
  50. "1",
  51. "2",
  52. "3",
  53. "4",
  54. "5",
  55. "6",
  56. "7",
  57. "8",
  58. "9"});
  59. this.comboBox_Decimal.Location = new System.Drawing.Point(250, 51);
  60. this.comboBox_Decimal.Margin = new System.Windows.Forms.Padding(4);
  61. this.comboBox_Decimal.Name = "comboBox_Decimal";
  62. this.comboBox_Decimal.Size = new System.Drawing.Size(124, 23);
  63. this.comboBox_Decimal.TabIndex = 31;
  64. //
  65. // btn_Cancel
  66. //
  67. this.btn_Cancel.Location = new System.Drawing.Point(265, 113);
  68. this.btn_Cancel.Margin = new System.Windows.Forms.Padding(4);
  69. this.btn_Cancel.Name = "btn_Cancel";
  70. this.btn_Cancel.Size = new System.Drawing.Size(100, 29);
  71. this.btn_Cancel.TabIndex = 34;
  72. this.btn_Cancel.Text = "取 消";
  73. this.btn_Cancel.UseVisualStyleBackColor = true;
  74. this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
  75. //
  76. // btn_OK
  77. //
  78. this.btn_OK.Location = new System.Drawing.Point(114, 112);
  79. this.btn_OK.Margin = new System.Windows.Forms.Padding(4);
  80. this.btn_OK.Name = "btn_OK";
  81. this.btn_OK.Size = new System.Drawing.Size(100, 29);
  82. this.btn_OK.TabIndex = 33;
  83. this.btn_OK.Text = "确 定";
  84. this.btn_OK.UseVisualStyleBackColor = true;
  85. this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
  86. //
  87. // PicPts
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.ClientSize = new System.Drawing.Size(465, 190);
  92. this.Controls.Add(this.btn_Cancel);
  93. this.Controls.Add(this.btn_OK);
  94. this.Controls.Add(this.label_Decimal);
  95. this.Controls.Add(this.comboBox_Decimal);
  96. this.Name = "PicPts";
  97. this.Text = "节点提取";
  98. this.Load += new System.EventHandler(this.PicPts_Load);
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.Label label_Decimal;
  104. private System.Windows.Forms.ComboBox comboBox_Decimal;
  105. private System.Windows.Forms.Button btn_Cancel;
  106. private System.Windows.Forms.Button btn_OK;
  107. }
  108. }