Home.Designer.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. namespace OpWin
  2. {
  3. partial class Home
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. btnImport = new Button();
  29. btnOutput = new Button();
  30. comb_Delegation = new ComboBox();
  31. lblImport = new Label();
  32. lblOutputResult = new Label();
  33. SuspendLayout();
  34. //
  35. // btnImport
  36. //
  37. btnImport.Location = new Point(38, 170);
  38. btnImport.Name = "btnImport";
  39. btnImport.Size = new Size(75, 23);
  40. btnImport.TabIndex = 0;
  41. btnImport.Text = "导入数据";
  42. btnImport.UseVisualStyleBackColor = true;
  43. btnImport.Click += btnImport_Click;
  44. //
  45. // btnOutput
  46. //
  47. btnOutput.Location = new Point(418, 170);
  48. btnOutput.Name = "btnOutput";
  49. btnOutput.Size = new Size(75, 23);
  50. btnOutput.TabIndex = 1;
  51. btnOutput.Text = "导出行程单";
  52. btnOutput.UseVisualStyleBackColor = true;
  53. btnOutput.Click += btnOutput_Click;
  54. //
  55. // comb_Delegation
  56. //
  57. comb_Delegation.FormattingEnabled = true;
  58. comb_Delegation.Location = new Point(38, 21);
  59. comb_Delegation.Name = "comb_Delegation";
  60. comb_Delegation.Size = new Size(455, 25);
  61. comb_Delegation.TabIndex = 2;
  62. comb_Delegation.TextUpdate += comb_Delegation_TextUpdate;
  63. comb_Delegation.MouseClick += comb_Delegation_MouseClick;
  64. //
  65. // lblImport
  66. //
  67. lblImport.AutoSize = true;
  68. lblImport.Location = new Point(38, 150);
  69. lblImport.Name = "lblImport";
  70. lblImport.Size = new Size(0, 17);
  71. lblImport.TabIndex = 3;
  72. //
  73. // lblOutputResult
  74. //
  75. lblOutputResult.AutoSize = true;
  76. lblOutputResult.Location = new Point(422, 150);
  77. lblOutputResult.Name = "lblOutputResult";
  78. lblOutputResult.Size = new Size(0, 17);
  79. lblOutputResult.TabIndex = 4;
  80. //
  81. // Home
  82. //
  83. AutoScaleDimensions = new SizeF(7F, 17F);
  84. AutoScaleMode = AutoScaleMode.Font;
  85. ClientSize = new Size(533, 222);
  86. Controls.Add(lblOutputResult);
  87. Controls.Add(lblImport);
  88. Controls.Add(comb_Delegation);
  89. Controls.Add(btnOutput);
  90. Controls.Add(btnImport);
  91. Name = "Home";
  92. Text = "OP行程单导出";
  93. Load += Home_Load;
  94. ResumeLayout(false);
  95. PerformLayout();
  96. }
  97. #endregion
  98. private Button btnImport;
  99. private Button btnOutput;
  100. private ComboBox comb_Delegation;
  101. private Label lblImport;
  102. private Label lblOutputResult;
  103. }
  104. }