Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ReportFormPage.Designer.cs 12 KiB

pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
pirms 2 gadiem
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. namespace HKCardManager.UserPages
  2. {
  3. partial class ReportFormPage
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
  33. this.label4 = new System.Windows.Forms.Label();
  34. this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.姓名 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.手机 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.时间 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.机构 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.早上消费次数 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.中午消费次数 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.晚上消费次数 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  43. this.总计消费次数 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  45. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  46. this.splitContainer1.Panel1.SuspendLayout();
  47. this.splitContainer1.Panel2.SuspendLayout();
  48. this.splitContainer1.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // dataGridView1
  52. //
  53. this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Control;
  54. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  55. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  56. this.姓名,
  57. this.手机,
  58. this.时间,
  59. this.机构,
  60. this.早上消费次数,
  61. this.中午消费次数,
  62. this.晚上消费次数,
  63. this.总计消费次数});
  64. this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
  65. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  66. this.dataGridView1.Name = "dataGridView1";
  67. this.dataGridView1.RowHeadersVisible = false;
  68. this.dataGridView1.RowTemplate.Height = 25;
  69. this.dataGridView1.Size = new System.Drawing.Size(875, 513);
  70. this.dataGridView1.TabIndex = 2;
  71. //
  72. // splitContainer1
  73. //
  74. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  75. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  76. this.splitContainer1.Name = "splitContainer1";
  77. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  78. //
  79. // splitContainer1.Panel1
  80. //
  81. this.splitContainer1.Panel1.Controls.Add(this.button2);
  82. this.splitContainer1.Panel1.Controls.Add(this.button1);
  83. this.splitContainer1.Panel1.Controls.Add(this.dateTimePicker2);
  84. this.splitContainer1.Panel1.Controls.Add(this.label4);
  85. this.splitContainer1.Panel1.Controls.Add(this.dateTimePicker1);
  86. this.splitContainer1.Panel1.Controls.Add(this.label3);
  87. //
  88. // splitContainer1.Panel2
  89. //
  90. this.splitContainer1.Panel2.Controls.Add(this.dataGridView1);
  91. this.splitContainer1.Size = new System.Drawing.Size(875, 557);
  92. this.splitContainer1.SplitterDistance = 40;
  93. this.splitContainer1.TabIndex = 3;
  94. //
  95. // button2
  96. //
  97. this.button2.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  98. this.button2.Location = new System.Drawing.Point(735, 6);
  99. this.button2.Name = "button2";
  100. this.button2.Size = new System.Drawing.Size(88, 30);
  101. this.button2.TabIndex = 12;
  102. this.button2.Text = "导出";
  103. this.button2.UseVisualStyleBackColor = true;
  104. this.button2.Click += new System.EventHandler(this.button2_Click);
  105. //
  106. // button1
  107. //
  108. this.button1.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  109. this.button1.Location = new System.Drawing.Point(629, 6);
  110. this.button1.Name = "button1";
  111. this.button1.Size = new System.Drawing.Size(88, 30);
  112. this.button1.TabIndex = 11;
  113. this.button1.Text = "查询";
  114. this.button1.UseVisualStyleBackColor = true;
  115. this.button1.Click += new System.EventHandler(this.button1_Click);
  116. //
  117. // dateTimePicker2
  118. //
  119. this.dateTimePicker2.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  120. this.dateTimePicker2.Location = new System.Drawing.Point(389, 6);
  121. this.dateTimePicker2.Name = "dateTimePicker2";
  122. this.dateTimePicker2.Size = new System.Drawing.Size(200, 28);
  123. this.dateTimePicker2.TabIndex = 9;
  124. //
  125. // label4
  126. //
  127. this.label4.AutoSize = true;
  128. this.label4.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  129. this.label4.Location = new System.Drawing.Point(312, 10);
  130. this.label4.Name = "label4";
  131. this.label4.Size = new System.Drawing.Size(90, 21);
  132. this.label4.TabIndex = 8;
  133. this.label4.Text = "结束时间:";
  134. //
  135. // dateTimePicker1
  136. //
  137. this.dateTimePicker1.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  138. this.dateTimePicker1.Location = new System.Drawing.Point(80, 6);
  139. this.dateTimePicker1.Name = "dateTimePicker1";
  140. this.dateTimePicker1.Size = new System.Drawing.Size(200, 28);
  141. this.dateTimePicker1.TabIndex = 7;
  142. //
  143. // label3
  144. //
  145. this.label3.AutoSize = true;
  146. this.label3.Font = new System.Drawing.Font("Microsoft YaHei UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
  147. this.label3.Location = new System.Drawing.Point(3, 10);
  148. this.label3.Name = "label3";
  149. this.label3.Size = new System.Drawing.Size(90, 21);
  150. this.label3.TabIndex = 6;
  151. this.label3.Text = "开始时间:";
  152. //
  153. // 姓名
  154. //
  155. this.姓名.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  156. this.姓名.DataPropertyName = "Name";
  157. this.姓名.HeaderText = "姓名";
  158. this.姓名.Name = "姓名";
  159. this.姓名.ReadOnly = true;
  160. //
  161. // 手机
  162. //
  163. this.手机.DataPropertyName = "Phone";
  164. this.手机.HeaderText = "手机";
  165. this.手机.Name = "手机";
  166. this.手机.ReadOnly = true;
  167. this.手机.Visible = false;
  168. //
  169. // 时间
  170. //
  171. this.时间.DataPropertyName = "Date";
  172. this.时间.HeaderText = "时间";
  173. this.时间.Name = "时间";
  174. this.时间.ReadOnly = true;
  175. //
  176. // 机构
  177. //
  178. this.机构.DataPropertyName = "Tag";
  179. this.机构.HeaderText = "机构";
  180. this.机构.Name = "机构";
  181. this.机构.ReadOnly = true;
  182. //
  183. // 早上消费次数
  184. //
  185. this.早上消费次数.DataPropertyName = "AMCount";
  186. this.早上消费次数.HeaderText = "早上消费次数";
  187. this.早上消费次数.Name = "早上消费次数";
  188. this.早上消费次数.ReadOnly = true;
  189. this.早上消费次数.Width = 110;
  190. //
  191. // 中午消费次数
  192. //
  193. this.中午消费次数.DataPropertyName = "PMCount";
  194. this.中午消费次数.HeaderText = "中午消费次数";
  195. this.中午消费次数.Name = "中午消费次数";
  196. this.中午消费次数.ReadOnly = true;
  197. this.中午消费次数.Width = 110;
  198. //
  199. // 晚上消费次数
  200. //
  201. this.晚上消费次数.DataPropertyName = "ATCount";
  202. this.晚上消费次数.HeaderText = "晚上消费次数";
  203. this.晚上消费次数.Name = "晚上消费次数";
  204. this.晚上消费次数.ReadOnly = true;
  205. this.晚上消费次数.Width = 110;
  206. //
  207. // 总计消费次数
  208. //
  209. this.总计消费次数.DataPropertyName = "TotalCount";
  210. this.总计消费次数.HeaderText = "总计消费次数";
  211. this.总计消费次数.Name = "总计消费次数";
  212. this.总计消费次数.ReadOnly = true;
  213. this.总计消费次数.Width = 110;
  214. //
  215. // ReportFormPage
  216. //
  217. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  218. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  219. this.Controls.Add(this.splitContainer1);
  220. this.Name = "ReportFormPage";
  221. this.Size = new System.Drawing.Size(875, 557);
  222. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  223. this.splitContainer1.Panel1.ResumeLayout(false);
  224. this.splitContainer1.Panel1.PerformLayout();
  225. this.splitContainer1.Panel2.ResumeLayout(false);
  226. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  227. this.splitContainer1.ResumeLayout(false);
  228. this.ResumeLayout(false);
  229. }
  230. #endregion
  231. private DataGridView dataGridView1;
  232. private SplitContainer splitContainer1;
  233. private DateTimePicker dateTimePicker1;
  234. private Label label3;
  235. private DateTimePicker dateTimePicker2;
  236. private Label label4;
  237. private Button button1;
  238. private Button button2;
  239. private DataGridViewTextBoxColumn 姓名;
  240. private DataGridViewTextBoxColumn 手机;
  241. private DataGridViewTextBoxColumn 时间;
  242. private DataGridViewTextBoxColumn 机构;
  243. private DataGridViewTextBoxColumn 早上消费次数;
  244. private DataGridViewTextBoxColumn 中午消费次数;
  245. private DataGridViewTextBoxColumn 晚上消费次数;
  246. private DataGridViewTextBoxColumn 总计消费次数;
  247. }
  248. }