namespace DataCollectionSystem { partial class DlgBatchExportForm { /// /// 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.cmbStartFile = new System.Windows.Forms.ComboBox(); this.cmbEndFile = new System.Windows.Forms.ComboBox(); this.labelStart = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.BtnOK = new System.Windows.Forms.Button(); this.BtnCancel = new System.Windows.Forms.Button(); this.SuspendLayout(); // // cmbStartFile // this.cmbStartFile.FormattingEnabled = true; this.cmbStartFile.Location = new System.Drawing.Point(103, 12); this.cmbStartFile.Name = "cmbStartFile"; this.cmbStartFile.Size = new System.Drawing.Size(217, 20); this.cmbStartFile.TabIndex = 0; this.cmbStartFile.SelectedIndexChanged += new System.EventHandler(this.cmbStartFile_SelectedIndexChanged); // // cmbEndFile // this.cmbEndFile.FormattingEnabled = true; this.cmbEndFile.Location = new System.Drawing.Point(103, 53); this.cmbEndFile.Name = "cmbEndFile"; this.cmbEndFile.Size = new System.Drawing.Size(217, 20); this.cmbEndFile.TabIndex = 1; this.cmbEndFile.SelectedIndexChanged += new System.EventHandler(this.cmbEndFile_SelectedIndexChanged); // // labelStart // this.labelStart.AutoSize = true; this.labelStart.Location = new System.Drawing.Point(33, 15); this.labelStart.Name = "labelStart"; this.labelStart.Size = new System.Drawing.Size(53, 12); this.labelStart.TabIndex = 2; this.labelStart.Text = "开始文件"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(33, 56); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(53, 12); this.label2.TabIndex = 3; this.label2.Text = "结束文件"; // // BtnOK // this.BtnOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.BtnOK.Location = new System.Drawing.Point(50, 100); this.BtnOK.Name = "BtnOK"; this.BtnOK.Size = new System.Drawing.Size(75, 23); this.BtnOK.TabIndex = 4; this.BtnOK.Text = "OK"; this.BtnOK.UseVisualStyleBackColor = true; this.BtnOK.Click += new System.EventHandler(this.BtnOK_Click); // // BtnCancel // this.BtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.BtnCancel.Location = new System.Drawing.Point(233, 100); this.BtnCancel.Name = "BtnCancel"; this.BtnCancel.Size = new System.Drawing.Size(75, 23); this.BtnCancel.TabIndex = 5; this.BtnCancel.Text = "Cancell"; this.BtnCancel.UseVisualStyleBackColor = true; // // DlgBatchExportForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(378, 138); this.Controls.Add(this.BtnCancel); this.Controls.Add(this.BtnOK); this.Controls.Add(this.label2); this.Controls.Add(this.labelStart); this.Controls.Add(this.cmbEndFile); this.Controls.Add(this.cmbStartFile); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "DlgBatchExportForm"; this.Text = "批量导出"; this.Load += new System.EventHandler(this.DlgBatchExportForm_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ComboBox cmbStartFile; private System.Windows.Forms.ComboBox cmbEndFile; private System.Windows.Forms.Label labelStart; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button BtnOK; private System.Windows.Forms.Button BtnCancel; public string EndFileName { get; private set; } public string StartFileName { get; set; } public string FileDirectory { get; internal set; } } }