| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 | namespace OTSExtremum{    partial class DataReadConfigurationForm    {        /// <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.tB_filepath = new System.Windows.Forms.TextBox();            this.btn_open = new System.Windows.Forms.Button();            this.label2 = new System.Windows.Forms.Label();            this.tB_loadCount = new System.Windows.Forms.TextBox();            this.btn_load = new System.Windows.Forms.Button();            this.panel1 = new System.Windows.Forms.Panel();            this.panel1.SuspendLayout();            this.SuspendLayout();            //             // label1            //             this.label1.AutoSize = true;            this.label1.Location = new System.Drawing.Point(3, 11);            this.label1.Name = "label1";            this.label1.Size = new System.Drawing.Size(155, 12);            this.label1.TabIndex = 0;            this.label1.Text = "请选择测量结果所在文件夹:";            //             // tB_filepath            //             this.tB_filepath.Location = new System.Drawing.Point(2, 36);            this.tB_filepath.Name = "tB_filepath";            this.tB_filepath.Size = new System.Drawing.Size(508, 21);            this.tB_filepath.TabIndex = 1;            //             // btn_open            //             this.btn_open.Location = new System.Drawing.Point(516, 34);            this.btn_open.Name = "btn_open";            this.btn_open.Size = new System.Drawing.Size(49, 23);            this.btn_open.TabIndex = 2;            this.btn_open.Text = "打开";            this.btn_open.UseVisualStyleBackColor = true;            this.btn_open.Click += new System.EventHandler(this.btn_open_Click);            //             // label2            //             this.label2.AutoSize = true;            this.label2.Location = new System.Drawing.Point(15, 105);            this.label2.Name = "label2";            this.label2.Size = new System.Drawing.Size(137, 12);            this.label2.TabIndex = 3;            this.label2.Text = "单个测量结果加载数量:";            //             // tB_loadCount            //             this.tB_loadCount.Location = new System.Drawing.Point(158, 102);            this.tB_loadCount.Name = "tB_loadCount";            this.tB_loadCount.Size = new System.Drawing.Size(51, 21);            this.tB_loadCount.TabIndex = 4;            this.tB_loadCount.Text = "1";            this.tB_loadCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;            //             // btn_load            //             this.btn_load.Location = new System.Drawing.Point(511, 121);            this.btn_load.Name = "btn_load";            this.btn_load.Size = new System.Drawing.Size(76, 29);            this.btn_load.TabIndex = 5;            this.btn_load.Text = "确认加载";            this.btn_load.UseVisualStyleBackColor = true;            this.btn_load.Click += new System.EventHandler(this.btn_load_Click);            //             // panel1            //             this.panel1.Controls.Add(this.label1);            this.panel1.Controls.Add(this.tB_filepath);            this.panel1.Controls.Add(this.btn_open);            this.panel1.Location = new System.Drawing.Point(12, 12);            this.panel1.Name = "panel1";            this.panel1.Size = new System.Drawing.Size(575, 75);            this.panel1.TabIndex = 6;            //             // DataReadConfigurationForm            //             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(599, 161);            this.Controls.Add(this.label2);            this.Controls.Add(this.tB_loadCount);            this.Controls.Add(this.panel1);            this.Controls.Add(this.btn_load);            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;            this.MaximizeBox = false;            this.MaximumSize = new System.Drawing.Size(615, 200);            this.MinimizeBox = false;            this.MinimumSize = new System.Drawing.Size(615, 200);            this.Name = "DataReadConfigurationForm";            this.ShowIcon = false;            this.ShowInTaskbar = false;            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;            this.Text = "DataLoad";            this.Load += new System.EventHandler(this.DataReadConfigurationForm_Load);            this.panel1.ResumeLayout(false);            this.panel1.PerformLayout();            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.Label label1;        private System.Windows.Forms.TextBox tB_filepath;        private System.Windows.Forms.Button btn_open;        private System.Windows.Forms.Label label2;        private System.Windows.Forms.TextBox tB_loadCount;        private System.Windows.Forms.Button btn_load;        private System.Windows.Forms.Panel panel1;    }}
 |