Form1.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. namespace WinTools
  2. {
  3. partial class OPTravelListOutput
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.comb_Delegation = new System.Windows.Forms.ComboBox();
  29. this.btnImport = new System.Windows.Forms.Button();
  30. this.btnOutput = new System.Windows.Forms.Button();
  31. this.lblOutputResult = new System.Windows.Forms.Label();
  32. this.lblImport = new System.Windows.Forms.Label();
  33. this.SuspendLayout();
  34. //
  35. // comb_Delegation
  36. //
  37. this.comb_Delegation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  38. this.comb_Delegation.FormattingEnabled = true;
  39. this.comb_Delegation.Location = new System.Drawing.Point(13, 13);
  40. this.comb_Delegation.Name = "comb_Delegation";
  41. this.comb_Delegation.Size = new System.Drawing.Size(535, 20);
  42. this.comb_Delegation.TabIndex = 0;
  43. //
  44. // btnImport
  45. //
  46. this.btnImport.Location = new System.Drawing.Point(148, 156);
  47. this.btnImport.Name = "btnImport";
  48. this.btnImport.Size = new System.Drawing.Size(75, 23);
  49. this.btnImport.TabIndex = 1;
  50. this.btnImport.Text = "导入数据";
  51. this.btnImport.UseVisualStyleBackColor = true;
  52. this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
  53. //
  54. // btnOutput
  55. //
  56. this.btnOutput.Location = new System.Drawing.Point(373, 156);
  57. this.btnOutput.Name = "btnOutput";
  58. this.btnOutput.Size = new System.Drawing.Size(75, 23);
  59. this.btnOutput.TabIndex = 2;
  60. this.btnOutput.Text = "导出行程单";
  61. this.btnOutput.UseVisualStyleBackColor = true;
  62. this.btnOutput.Click += new System.EventHandler(this.btnOutput_Click);
  63. //
  64. // lblOutputResult
  65. //
  66. this.lblOutputResult.AutoSize = true;
  67. this.lblOutputResult.Location = new System.Drawing.Point(373, 138);
  68. this.lblOutputResult.Name = "lblOutputResult";
  69. this.lblOutputResult.Size = new System.Drawing.Size(0, 12);
  70. this.lblOutputResult.TabIndex = 3;
  71. //
  72. // lblImport
  73. //
  74. this.lblImport.AutoSize = true;
  75. this.lblImport.Location = new System.Drawing.Point(148, 138);
  76. this.lblImport.Name = "lblImport";
  77. this.lblImport.Size = new System.Drawing.Size(0, 12);
  78. this.lblImport.TabIndex = 4;
  79. //
  80. // OPTravelListOutput
  81. //
  82. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  83. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  84. this.ClientSize = new System.Drawing.Size(560, 294);
  85. this.Controls.Add(this.lblImport);
  86. this.Controls.Add(this.lblOutputResult);
  87. this.Controls.Add(this.btnOutput);
  88. this.Controls.Add(this.btnImport);
  89. this.Controls.Add(this.comb_Delegation);
  90. this.Name = "OPTravelListOutput";
  91. this.Text = "OP行程单导出";
  92. this.Load += new System.EventHandler(this.Form1_Load);
  93. this.ResumeLayout(false);
  94. this.PerformLayout();
  95. }
  96. #endregion
  97. private System.Windows.Forms.ComboBox comb_Delegation;
  98. private System.Windows.Forms.Button btnImport;
  99. private System.Windows.Forms.Button btnOutput;
  100. private System.Windows.Forms.Label lblOutputResult;
  101. private System.Windows.Forms.Label lblImport;
  102. }
  103. }