namespace WorldGIS { partial class FrmAddFieldToLayer { /// <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.label1 = new System.Windows.Forms.Label(); this.comboBoxFieldType = new System.Windows.Forms.ComboBox(); this.textBoxFieldName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.buttonAdd = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(25, 24); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(53, 12); this.label1.TabIndex = 0; this.label1.Text = "字段名:"; // // comboBoxFieldType // this.comboBoxFieldType.FormattingEnabled = true; this.comboBoxFieldType.Items.AddRange(new object[] { "Date", "Double", "INT32", "Text"}); this.comboBoxFieldType.Location = new System.Drawing.Point(94, 53); this.comboBoxFieldType.Name = "comboBoxFieldType"; this.comboBoxFieldType.Size = new System.Drawing.Size(144, 20); this.comboBoxFieldType.TabIndex = 1; // // textBoxFieldName // this.textBoxFieldName.Location = new System.Drawing.Point(94, 15); this.textBoxFieldName.Name = "textBoxFieldName"; this.textBoxFieldName.Size = new System.Drawing.Size(144, 21); this.textBoxFieldName.TabIndex = 2; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(25, 61); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(65, 12); this.label2.TabIndex = 3; this.label2.Text = "字段类型:"; // // buttonAdd // this.buttonAdd.Location = new System.Drawing.Point(94, 90); this.buttonAdd.Name = "buttonAdd"; this.buttonAdd.Size = new System.Drawing.Size(63, 23); this.buttonAdd.TabIndex = 4; this.buttonAdd.Text = "添加"; this.buttonAdd.UseVisualStyleBackColor = true; this.buttonAdd.Click += new System.EventHandler(this.buttonOK_Click); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(173, 90); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(65, 23); this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "取消"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // // FrmAddFieldToLayer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(262, 130); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonAdd); this.Controls.Add(this.label2); this.Controls.Add(this.textBoxFieldName); this.Controls.Add(this.comboBoxFieldType); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.Name = "FrmAddFieldToLayer"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "添加字段"; this.Load += new System.EventHandler(this.FrmAddFieldToLayer_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.ComboBox comboBoxFieldType; private System.Windows.Forms.TextBox textBoxFieldName; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button buttonAdd; private System.Windows.Forms.Button buttonCancel; } }