123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- namespace WinTools
- {
- partial class OPTravelListOutput
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.comb_Delegation = new System.Windows.Forms.ComboBox();
- this.btnImport = new System.Windows.Forms.Button();
- this.btnOutput = new System.Windows.Forms.Button();
- this.lblOutputResult = new System.Windows.Forms.Label();
- this.lblImport = new System.Windows.Forms.Label();
- this.SuspendLayout();
- //
- // comb_Delegation
- //
- this.comb_Delegation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.comb_Delegation.FormattingEnabled = true;
- this.comb_Delegation.Location = new System.Drawing.Point(13, 13);
- this.comb_Delegation.Name = "comb_Delegation";
- this.comb_Delegation.Size = new System.Drawing.Size(535, 20);
- this.comb_Delegation.TabIndex = 0;
- //
- // btnImport
- //
- this.btnImport.Location = new System.Drawing.Point(148, 156);
- this.btnImport.Name = "btnImport";
- this.btnImport.Size = new System.Drawing.Size(75, 23);
- this.btnImport.TabIndex = 1;
- this.btnImport.Text = "导入数据";
- this.btnImport.UseVisualStyleBackColor = true;
- this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
- //
- // btnOutput
- //
- this.btnOutput.Location = new System.Drawing.Point(373, 156);
- this.btnOutput.Name = "btnOutput";
- this.btnOutput.Size = new System.Drawing.Size(75, 23);
- this.btnOutput.TabIndex = 2;
- this.btnOutput.Text = "导出行程单";
- this.btnOutput.UseVisualStyleBackColor = true;
- this.btnOutput.Click += new System.EventHandler(this.btnOutput_Click);
- //
- // lblOutputResult
- //
- this.lblOutputResult.AutoSize = true;
- this.lblOutputResult.Location = new System.Drawing.Point(373, 138);
- this.lblOutputResult.Name = "lblOutputResult";
- this.lblOutputResult.Size = new System.Drawing.Size(0, 12);
- this.lblOutputResult.TabIndex = 3;
- //
- // lblImport
- //
- this.lblImport.AutoSize = true;
- this.lblImport.Location = new System.Drawing.Point(148, 138);
- this.lblImport.Name = "lblImport";
- this.lblImport.Size = new System.Drawing.Size(0, 12);
- this.lblImport.TabIndex = 4;
- //
- // OPTravelListOutput
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(560, 294);
- this.Controls.Add(this.lblImport);
- this.Controls.Add(this.lblOutputResult);
- this.Controls.Add(this.btnOutput);
- this.Controls.Add(this.btnImport);
- this.Controls.Add(this.comb_Delegation);
- this.Name = "OPTravelListOutput";
- this.Text = "OP行程单导出";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.ComboBox comb_Delegation;
- private System.Windows.Forms.Button btnImport;
- private System.Windows.Forms.Button btnOutput;
- private System.Windows.Forms.Label lblOutputResult;
- private System.Windows.Forms.Label lblImport;
- }
- }
|