123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
-
- namespace HCTools
- {
- partial class PicPts
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
-
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.label_Decimal = new System.Windows.Forms.Label();
- this.comboBox_Decimal = new System.Windows.Forms.ComboBox();
- this.btn_Cancel = new System.Windows.Forms.Button();
- this.btn_OK = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label_Decimal
- //
- this.label_Decimal.AutoSize = true;
- this.label_Decimal.Location = new System.Drawing.Point(91, 54);
- this.label_Decimal.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
- this.label_Decimal.Name = "label_Decimal";
- this.label_Decimal.Size = new System.Drawing.Size(142, 15);
- this.label_Decimal.TabIndex = 32;
- this.label_Decimal.Text = "坐标保留的小数位数";
- //
- // comboBox_Decimal
- //
- this.comboBox_Decimal.FormattingEnabled = true;
- this.comboBox_Decimal.Items.AddRange(new object[] {
- "0",
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9"});
- this.comboBox_Decimal.Location = new System.Drawing.Point(250, 51);
- this.comboBox_Decimal.Margin = new System.Windows.Forms.Padding(4);
- this.comboBox_Decimal.Name = "comboBox_Decimal";
- this.comboBox_Decimal.Size = new System.Drawing.Size(124, 23);
- this.comboBox_Decimal.TabIndex = 31;
- //
- // btn_Cancel
- //
- this.btn_Cancel.Location = new System.Drawing.Point(265, 113);
- this.btn_Cancel.Margin = new System.Windows.Forms.Padding(4);
- this.btn_Cancel.Name = "btn_Cancel";
- this.btn_Cancel.Size = new System.Drawing.Size(100, 29);
- this.btn_Cancel.TabIndex = 34;
- this.btn_Cancel.Text = "取 消";
- this.btn_Cancel.UseVisualStyleBackColor = true;
- this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
- //
- // btn_OK
- //
- this.btn_OK.Location = new System.Drawing.Point(114, 112);
- this.btn_OK.Margin = new System.Windows.Forms.Padding(4);
- this.btn_OK.Name = "btn_OK";
- this.btn_OK.Size = new System.Drawing.Size(100, 29);
- this.btn_OK.TabIndex = 33;
- this.btn_OK.Text = "确 定";
- this.btn_OK.UseVisualStyleBackColor = true;
- this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click);
- //
- // PicPts
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(465, 190);
- this.Controls.Add(this.btn_Cancel);
- this.Controls.Add(this.btn_OK);
- this.Controls.Add(this.label_Decimal);
- this.Controls.Add(this.comboBox_Decimal);
- this.Name = "PicPts";
- this.Text = "节点提取";
- this.Load += new System.EventHandler(this.PicPts_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label_Decimal;
- private System.Windows.Forms.ComboBox comboBox_Decimal;
- private System.Windows.Forms.Button btn_Cancel;
- private System.Windows.Forms.Button btn_OK;
- }
- }
|