using DevExpress.XtraEditors;
using System.ComponentModel;
using System.Drawing;
namespace KGIS.Plugin.LayerProperty.View
{
    partial class FormInputBox
    {
        /// 
        /// Required designer variable.
        /// 
        private System.ComponentModel.IContainer components = null;
        /// 
        /// Clean up any resources being used.
        /// 
        /// true if managed resources should be disposed; otherwise, false.
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }
        #region Windows Form Designer generated code
        /// 
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// 
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.txtInputBox = new TextEdit();
            this.btnOk = new SimpleButton();
            this.btnCancel = new SimpleButton();
            this.lblTitle = new LabelControl();
            ((ISupportInitialize)this.txtInputBox.Properties).BeginInit();
            base.SuspendLayout();
            this.txtInputBox.Location = new Point(12, 36);
            this.txtInputBox.Name = "txtInputBox";
            this.txtInputBox.Size = new Size(269, 21);
            this.txtInputBox.TabIndex = 0;
            this.btnOk.Location = new Point(301, 10);
            this.btnOk.Name = "btnOk";
            this.btnOk.Size = new Size(75, 23);
            this.btnOk.TabIndex = 1;
            this.btnOk.Text = "确定";
            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new Point(301, 39);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new Size(75, 23);
            this.btnCancel.TabIndex = 1;
            this.btnCancel.Text = "取消";
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            this.lblTitle.Location = new Point(12, 16);
            this.lblTitle.Name = "lblTitle";
            this.lblTitle.Size = new Size(24, 14);
            this.lblTitle.TabIndex = 2;
            this.lblTitle.Text = "标题";
            base.AcceptButton = this.btnOk;
            base.AutoScaleDimensions = new SizeF(6f, 12f);
            base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            base.CancelButton = this.btnCancel;
            base.ClientSize = new Size(388, 76);
            base.Controls.Add(this.lblTitle);
            base.Controls.Add(this.btnCancel);
            base.Controls.Add(this.btnOk);
            base.Controls.Add(this.txtInputBox);
            base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            base.MaximizeBox = false;
            base.MinimizeBox = false;
            base.Name = "FormInputBox";
            base.ShowIcon = false;
            base.ShowInTaskbar = false;
            base.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "输入";
            ((ISupportInitialize)this.txtInputBox.Properties).EndInit();
            base.ResumeLayout(false);
            base.PerformLayout();
        }
        #endregion
        private TextEdit txtInputBox;
        private SimpleButton btnOk;
        private SimpleButton btnCancel;
        private LabelControl lblTitle;
    }
}