1
0

FrmOutputSellList.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. namespace BooksManageSystem
  2. {
  3. partial class FrmOutputSellList
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmOutputSellList));
  29. this.dtp_Start = new System.Windows.Forms.DateTimePicker();
  30. this.dtp_End = new System.Windows.Forms.DateTimePicker();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.btn_output = new System.Windows.Forms.Button();
  34. this.groupBox1 = new System.Windows.Forms.GroupBox();
  35. this.groupBox1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // dtp_Start
  39. //
  40. this.dtp_Start.CustomFormat = "yyyy-MM-dd";
  41. this.dtp_Start.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  42. this.dtp_Start.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  43. this.dtp_Start.Location = new System.Drawing.Point(38, 22);
  44. this.dtp_Start.MaxDate = new System.DateTime(2114, 12, 31, 0, 0, 0, 0);
  45. this.dtp_Start.MinDate = new System.DateTime(2014, 1, 1, 0, 0, 0, 0);
  46. this.dtp_Start.Name = "dtp_Start";
  47. this.dtp_Start.Size = new System.Drawing.Size(97, 23);
  48. this.dtp_Start.TabIndex = 0;
  49. //
  50. // dtp_End
  51. //
  52. this.dtp_End.CustomFormat = "yyyy-MM-dd";
  53. this.dtp_End.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  54. this.dtp_End.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  55. this.dtp_End.Location = new System.Drawing.Point(165, 22);
  56. this.dtp_End.Name = "dtp_End";
  57. this.dtp_End.Size = new System.Drawing.Size(97, 23);
  58. this.dtp_End.TabIndex = 1;
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  64. this.label1.Location = new System.Drawing.Point(16, 26);
  65. this.label1.Name = "label1";
  66. this.label1.Size = new System.Drawing.Size(20, 17);
  67. this.label1.TabIndex = 2;
  68. this.label1.Text = "从";
  69. //
  70. // label2
  71. //
  72. this.label2.AutoSize = true;
  73. this.label2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  74. this.label2.Location = new System.Drawing.Point(143, 26);
  75. this.label2.Name = "label2";
  76. this.label2.Size = new System.Drawing.Size(20, 17);
  77. this.label2.TabIndex = 3;
  78. this.label2.Text = "到";
  79. //
  80. // btn_output
  81. //
  82. this.btn_output.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  83. this.btn_output.Location = new System.Drawing.Point(400, 89);
  84. this.btn_output.Name = "btn_output";
  85. this.btn_output.Size = new System.Drawing.Size(75, 29);
  86. this.btn_output.TabIndex = 4;
  87. this.btn_output.Text = "导出";
  88. this.btn_output.UseVisualStyleBackColor = true;
  89. this.btn_output.Click += new System.EventHandler(this.btn_output_Click);
  90. //
  91. // groupBox1
  92. //
  93. this.groupBox1.Controls.Add(this.label2);
  94. this.groupBox1.Controls.Add(this.dtp_End);
  95. this.groupBox1.Controls.Add(this.label1);
  96. this.groupBox1.Controls.Add(this.dtp_Start);
  97. this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  98. this.groupBox1.Location = new System.Drawing.Point(12, 12);
  99. this.groupBox1.Name = "groupBox1";
  100. this.groupBox1.Size = new System.Drawing.Size(463, 71);
  101. this.groupBox1.TabIndex = 5;
  102. this.groupBox1.TabStop = false;
  103. this.groupBox1.Text = "选择导出数据的时间范围";
  104. //
  105. // FrmOutputSellList
  106. //
  107. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  108. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109. this.ClientSize = new System.Drawing.Size(487, 130);
  110. this.Controls.Add(this.btn_output);
  111. this.Controls.Add(this.groupBox1);
  112. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  113. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  114. this.MaximizeBox = false;
  115. this.MinimizeBox = false;
  116. this.Name = "FrmOutputSellList";
  117. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  118. this.Text = "导出数据";
  119. this.Load += new System.EventHandler(this.FrmOutputSellList_Load);
  120. this.groupBox1.ResumeLayout(false);
  121. this.groupBox1.PerformLayout();
  122. this.ResumeLayout(false);
  123. }
  124. #endregion
  125. private System.Windows.Forms.DateTimePicker dtp_Start;
  126. private System.Windows.Forms.DateTimePicker dtp_End;
  127. private System.Windows.Forms.Label label1;
  128. private System.Windows.Forms.Label label2;
  129. private System.Windows.Forms.Button btn_output;
  130. private System.Windows.Forms.GroupBox groupBox1;
  131. }
  132. }