| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 | namespace OTSIncAReportApp._1_UI.Control_Grids{    partial class SpectrumExportConfirmation    {        /// <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.tBox1 = new System.Windows.Forms.TextBox();            this.bt_Path = new System.Windows.Forms.Button();            this.cB_SpectrumConfirmation = new System.Windows.Forms.CheckBox();            this.bt_Export = new System.Windows.Forms.Button();            this.SuspendLayout();            //             // tBox1            //             this.tBox1.Location = new System.Drawing.Point(12, 23);            this.tBox1.Name = "tBox1";            this.tBox1.ReadOnly = true;            this.tBox1.Size = new System.Drawing.Size(568, 28);            this.tBox1.TabIndex = 0;            //             // bt_Path            //             this.bt_Path.Location = new System.Drawing.Point(607, 16);            this.bt_Path.MaximumSize = new System.Drawing.Size(188, 38);            this.bt_Path.MinimumSize = new System.Drawing.Size(188, 38);            this.bt_Path.Name = "bt_Path";            this.bt_Path.Size = new System.Drawing.Size(188, 38);            this.bt_Path.TabIndex = 1;            this.bt_Path.Text = "选择导出Ececl路径";            this.bt_Path.UseVisualStyleBackColor = true;            this.bt_Path.Click += new System.EventHandler(this.bt_Path_Click);            //             // cB_SpectrumConfirmation            //             this.cB_SpectrumConfirmation.AutoSize = true;            this.cB_SpectrumConfirmation.Location = new System.Drawing.Point(368, 89);            this.cB_SpectrumConfirmation.Name = "cB_SpectrumConfirmation";            this.cB_SpectrumConfirmation.Size = new System.Drawing.Size(196, 22);            this.cB_SpectrumConfirmation.TabIndex = 2;            this.cB_SpectrumConfirmation.Text = "附带颗粒能谱谱峰图";            this.cB_SpectrumConfirmation.UseVisualStyleBackColor = true;            this.cB_SpectrumConfirmation.CheckedChanged += new System.EventHandler(this.cB_SpectrumConfirmation_CheckedChanged);            //             // bt_Export            //             this.bt_Export.Location = new System.Drawing.Point(607, 86);            this.bt_Export.Name = "bt_Export";            this.bt_Export.Size = new System.Drawing.Size(188, 37);            this.bt_Export.TabIndex = 3;            this.bt_Export.Text = "导出Ececl";            this.bt_Export.UseVisualStyleBackColor = true;            this.bt_Export.Click += new System.EventHandler(this.bt_Export_Click);            //             // SpectrumExportConfirmation            //             this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;            this.ClientSize = new System.Drawing.Size(807, 140);            this.Controls.Add(this.bt_Export);            this.Controls.Add(this.cB_SpectrumConfirmation);            this.Controls.Add(this.bt_Path);            this.Controls.Add(this.tBox1);            this.MaximizeBox = false;            this.MinimizeBox = false;            this.Name = "SpectrumExportConfirmation";            this.ShowIcon = false;            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;            this.Text = "SpectrumExportConfirmation";            this.ResumeLayout(false);            this.PerformLayout();        }        #endregion        private System.Windows.Forms.TextBox tBox1;        private System.Windows.Forms.Button bt_Path;        private System.Windows.Forms.CheckBox cB_SpectrumConfirmation;        private System.Windows.Forms.Button bt_Export;    }}
 |