FinanceYearReportSmallForm.Designer.cs 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. namespace LYFZ.Software.UI.StatisticalInquiry
  2. {
  3. partial class FinanceYearReportSmallForm
  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. this.components = new System.ComponentModel.Container();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FinanceYearReportSmallForm));
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  32. this.panelEx1 = new LYFZ.ComponentLibrary.PanelEx();
  33. this.dgvData = new LYFZ.ComponentLibrary.DataGridViewEc();
  34. this.panelEx2 = new LYFZ.ComponentLibrary.PanelEx();
  35. this.panelEx14 = new LYFZ.ComponentLibrary.PanelEx();
  36. this.lblCount = new LYFZ.ComponentLibrary.LabelEx();
  37. this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
  38. this.panelTotalIncome = new LYFZ.ComponentLibrary.PanelEx();
  39. this.txtTotalIncome = new LYFZ.ComponentLibrary.TextBoxEx();
  40. this.lblTotalIncome = new LYFZ.ComponentLibrary.LabelEx();
  41. this.panelOperatingIncome = new LYFZ.ComponentLibrary.PanelEx();
  42. this.txtOperatingIncome = new LYFZ.ComponentLibrary.TextBoxEx();
  43. this.lblOperatingIncome = new LYFZ.ComponentLibrary.LabelEx();
  44. this.panelTotalOutlay = new LYFZ.ComponentLibrary.PanelEx();
  45. this.txtTotalOutlay = new LYFZ.ComponentLibrary.TextBoxEx();
  46. this.lblTotalOutlay = new LYFZ.ComponentLibrary.LabelEx();
  47. this.panelNetIncome = new LYFZ.ComponentLibrary.PanelEx();
  48. this.txtNetIncome = new LYFZ.ComponentLibrary.TextBoxEx();
  49. this.lblNetIncome = new LYFZ.ComponentLibrary.LabelEx();
  50. this.panelOrderEarly = new LYFZ.ComponentLibrary.PanelEx();
  51. this.txtOrderEarly = new LYFZ.ComponentLibrary.TextBoxEx();
  52. this.lblOrderEarly = new LYFZ.ComponentLibrary.LabelEx();
  53. this.panelOrderLate = new LYFZ.ComponentLibrary.PanelEx();
  54. this.txtOrderLate = new LYFZ.ComponentLibrary.TextBoxEx();
  55. this.lblOrderLate = new LYFZ.ComponentLibrary.LabelEx();
  56. this.panelVoucher = new LYFZ.ComponentLibrary.PanelEx();
  57. this.txtVoucher = new LYFZ.ComponentLibrary.TextBoxEx();
  58. this.lblVoucher = new LYFZ.ComponentLibrary.LabelEx();
  59. this.panelPaymentMethod = new LYFZ.ComponentLibrary.PanelEx();
  60. this.cmbtreevPaymentMethod = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  61. this.lblPaymentMethod = new LYFZ.ComponentLibrary.LabelEx();
  62. this.panelQueryItem = new LYFZ.ComponentLibrary.PanelEx();
  63. this.cmbtreevQueryItem = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  64. this.cmbtreevSecondOption = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  65. this.lblQueryItem = new LYFZ.ComponentLibrary.LabelEx();
  66. this.panelStoreName = new LYFZ.ComponentLibrary.PanelEx();
  67. this.cmbtreevStoreName = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  68. this.labelEx3 = new LYFZ.ComponentLibrary.LabelEx();
  69. this.panelEx13 = new LYFZ.ComponentLibrary.PanelEx();
  70. this.btnExport = new LYFZ.ComponentLibrary.ButtonEx();
  71. this.btnPrint = new LYFZ.ComponentLibrary.ButtonEx();
  72. this.btnClose = new LYFZ.ComponentLibrary.ButtonEx();
  73. this.numYear = new LYFZ.ComponentLibrary.NumericUpDownEx(this.components);
  74. this.labelEx6 = new LYFZ.ComponentLibrary.LabelEx();
  75. this.panelOrderType = new LYFZ.ComponentLibrary.PanelEx();
  76. this.cmbtreevOrderType = new LYFZ.ComponentLibrary.ComboBoxTreeViewEx();
  77. this.labelEx4 = new LYFZ.ComponentLibrary.LabelEx();
  78. this.plExMainContainer.SuspendLayout();
  79. this.plFormMainContent.SuspendLayout();
  80. this.panelEx1.SuspendLayout();
  81. ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
  82. this.panelEx2.SuspendLayout();
  83. this.panelEx14.SuspendLayout();
  84. this.flowLayoutPanel1.SuspendLayout();
  85. this.panelTotalIncome.SuspendLayout();
  86. this.panelOperatingIncome.SuspendLayout();
  87. this.panelTotalOutlay.SuspendLayout();
  88. this.panelNetIncome.SuspendLayout();
  89. this.panelOrderEarly.SuspendLayout();
  90. this.panelOrderLate.SuspendLayout();
  91. this.panelVoucher.SuspendLayout();
  92. this.panelPaymentMethod.SuspendLayout();
  93. this.panelQueryItem.SuspendLayout();
  94. this.panelStoreName.SuspendLayout();
  95. ((System.ComponentModel.ISupportInitialize)(this.numYear)).BeginInit();
  96. this.panelOrderType.SuspendLayout();
  97. this.SuspendLayout();
  98. //
  99. // plExMainContainer
  100. //
  101. this.plExMainContainer.Controls.Add(this.panelEx1);
  102. this.plExMainContainer.Location = new System.Drawing.Point(0, 40);
  103. this.plExMainContainer.Padding = new System.Windows.Forms.Padding(5);
  104. this.plExMainContainer.Size = new System.Drawing.Size(910, 505);
  105. //
  106. // plFormMainContent
  107. //
  108. this.plFormMainContent.Controls.Add(this.btnExport);
  109. this.plFormMainContent.Controls.Add(this.btnPrint);
  110. this.plFormMainContent.Controls.Add(this.btnClose);
  111. this.plFormMainContent.Controls.Add(this.numYear);
  112. this.plFormMainContent.Controls.Add(this.labelEx6);
  113. this.plFormMainContent.Controls.SetChildIndex(this.plExMainContainer, 0);
  114. this.plFormMainContent.Controls.SetChildIndex(this.labelEx6, 0);
  115. this.plFormMainContent.Controls.SetChildIndex(this.numYear, 0);
  116. this.plFormMainContent.Controls.SetChildIndex(this.btnClose, 0);
  117. this.plFormMainContent.Controls.SetChildIndex(this.btnPrint, 0);
  118. this.plFormMainContent.Controls.SetChildIndex(this.btnExport, 0);
  119. //
  120. // btnAppFormExit
  121. //
  122. this.btnAppFormExit.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormExit.BackImg")));
  123. //
  124. // btnAppFormMinimize
  125. //
  126. this.btnAppFormMinimize.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnAppFormMinimize.BackImg")));
  127. //
  128. // panelEx1
  129. //
  130. this.panelEx1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  131. this.panelEx1.BorderWidth = 1;
  132. this.panelEx1.Controls.Add(this.dgvData);
  133. this.panelEx1.Controls.Add(this.panelEx2);
  134. this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill;
  135. this.panelEx1.Location = new System.Drawing.Point(5, 5);
  136. this.panelEx1.Name = "panelEx1";
  137. this.panelEx1.Size = new System.Drawing.Size(900, 495);
  138. this.panelEx1.TabIndex = 2;
  139. //
  140. // dgvData
  141. //
  142. this.dgvData.AllowUserToAddRows = false;
  143. this.dgvData.AllowUserToDeleteRows = false;
  144. this.dgvData.AllowUserToResizeRows = false;
  145. this.dgvData.BackgroundColor = System.Drawing.Color.White;
  146. this.dgvData.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  147. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  148. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(108)))), ((int)(((byte)(150)))));
  149. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  150. dataGridViewCellStyle1.ForeColor = System.Drawing.Color.White;
  151. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  152. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  153. this.dgvData.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
  154. this.dgvData.ColumnHeadersHeight = 24;
  155. this.dgvData.dgvColumnHeadersHeight = 24;
  156. this.dgvData.dgvCurrentColumnOriginalSet = "";
  157. this.dgvData.dgvCurrentColumnWidth = "";
  158. this.dgvData.dgvCurrentHideColumn = null;
  159. this.dgvData.dgvFixedHideColumn = null;
  160. this.dgvData.dgvGuidName = null;
  161. this.dgvData.dgvUserEmployeeID = null;
  162. this.dgvData.Dock = System.Windows.Forms.DockStyle.Fill;
  163. this.dgvData.EnableHeadersVisualStyles = false;
  164. this.dgvData.GridColor = System.Drawing.SystemColors.GradientInactiveCaption;
  165. this.dgvData.ImageHeight = 15;
  166. this.dgvData.ImageWidth = 15;
  167. this.dgvData.ImgCollapse = ((System.Drawing.Image)(resources.GetObject("dgvData.ImgCollapse")));
  168. this.dgvData.ImgExpand = ((System.Drawing.Image)(resources.GetObject("dgvData.ImgExpand")));
  169. this.dgvData.IsAutomaticDrawSingleOrDoubleRow = true;
  170. this.dgvData.IsCopyCellValue = true;
  171. this.dgvData.IsShowSerialNumber = true;
  172. this.dgvData.IsSortedRedraw = true;
  173. this.dgvData.IsSortMode = true;
  174. this.dgvData.Location = new System.Drawing.Point(0, 52);
  175. this.dgvData.Name = "dgvData";
  176. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  177. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
  178. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  179. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
  180. dataGridViewCellStyle2.Padding = new System.Windows.Forms.Padding(41);
  181. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  182. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  183. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  184. this.dgvData.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
  185. this.dgvData.RowHeadersWidth = 30;
  186. this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  187. this.dgvData.RowTemplate.Height = 23;
  188. this.dgvData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  189. this.dgvData.Size = new System.Drawing.Size(900, 443);
  190. this.dgvData.TabIndex = 1;
  191. this.dgvData.ViceCount = 1;
  192. //
  193. // panelEx2
  194. //
  195. this.panelEx2.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  196. this.panelEx2.BorderWidth = 1;
  197. this.panelEx2.Controls.Add(this.panelEx14);
  198. this.panelEx2.Controls.Add(this.flowLayoutPanel1);
  199. this.panelEx2.Controls.Add(this.panelEx13);
  200. this.panelEx2.Dock = System.Windows.Forms.DockStyle.Top;
  201. this.panelEx2.Location = new System.Drawing.Point(0, 0);
  202. this.panelEx2.Name = "panelEx2";
  203. this.panelEx2.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
  204. this.panelEx2.Size = new System.Drawing.Size(900, 52);
  205. this.panelEx2.TabIndex = 0;
  206. //
  207. // panelEx14
  208. //
  209. this.panelEx14.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  210. this.panelEx14.BorderWidth = 1;
  211. this.panelEx14.Controls.Add(this.lblCount);
  212. this.panelEx14.Dock = System.Windows.Forms.DockStyle.Fill;
  213. this.panelEx14.Location = new System.Drawing.Point(0, 30);
  214. this.panelEx14.Name = "panelEx14";
  215. this.panelEx14.Size = new System.Drawing.Size(900, 21);
  216. this.panelEx14.TabIndex = 4;
  217. //
  218. // lblCount
  219. //
  220. this.lblCount.AutoSize = true;
  221. this.lblCount.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  222. this.lblCount.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  223. this.lblCount.Location = new System.Drawing.Point(15, 2);
  224. this.lblCount.Name = "lblCount";
  225. this.lblCount.Size = new System.Drawing.Size(56, 17);
  226. this.lblCount.TabIndex = 281;
  227. this.lblCount.Text = "订单数:";
  228. //
  229. // flowLayoutPanel1
  230. //
  231. this.flowLayoutPanel1.Controls.Add(this.panelTotalIncome);
  232. this.flowLayoutPanel1.Controls.Add(this.panelOperatingIncome);
  233. this.flowLayoutPanel1.Controls.Add(this.panelTotalOutlay);
  234. this.flowLayoutPanel1.Controls.Add(this.panelNetIncome);
  235. this.flowLayoutPanel1.Controls.Add(this.panelOrderEarly);
  236. this.flowLayoutPanel1.Controls.Add(this.panelOrderLate);
  237. this.flowLayoutPanel1.Controls.Add(this.panelVoucher);
  238. this.flowLayoutPanel1.Controls.Add(this.panelPaymentMethod);
  239. this.flowLayoutPanel1.Controls.Add(this.panelQueryItem);
  240. this.flowLayoutPanel1.Controls.Add(this.panelStoreName);
  241. this.flowLayoutPanel1.Controls.Add(this.panelOrderType);
  242. this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
  243. this.flowLayoutPanel1.Location = new System.Drawing.Point(0, 3);
  244. this.flowLayoutPanel1.Name = "flowLayoutPanel1";
  245. this.flowLayoutPanel1.Size = new System.Drawing.Size(900, 27);
  246. this.flowLayoutPanel1.TabIndex = 3;
  247. //
  248. // panelTotalIncome
  249. //
  250. this.panelTotalIncome.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  251. this.panelTotalIncome.BorderWidth = 1;
  252. this.panelTotalIncome.Controls.Add(this.txtTotalIncome);
  253. this.panelTotalIncome.Controls.Add(this.lblTotalIncome);
  254. this.panelTotalIncome.Location = new System.Drawing.Point(0, 0);
  255. this.panelTotalIncome.Margin = new System.Windows.Forms.Padding(0);
  256. this.panelTotalIncome.Name = "panelTotalIncome";
  257. this.panelTotalIncome.Size = new System.Drawing.Size(175, 27);
  258. this.panelTotalIncome.TabIndex = 0;
  259. //
  260. // txtTotalIncome
  261. //
  262. this.txtTotalIncome.BackColor = System.Drawing.Color.Transparent;
  263. this.txtTotalIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  264. this.txtTotalIncome.Icon = null;
  265. this.txtTotalIncome.IconIsButton = false;
  266. this.txtTotalIncome.IsPasswordChat = '\0';
  267. this.txtTotalIncome.IsSystemPasswordChar = false;
  268. this.txtTotalIncome.Lines = new string[0];
  269. this.txtTotalIncome.Location = new System.Drawing.Point(67, 1);
  270. this.txtTotalIncome.Margin = new System.Windows.Forms.Padding(0);
  271. this.txtTotalIncome.MaxLength = 15;
  272. this.txtTotalIncome.MinimumSize = new System.Drawing.Size(0, 24);
  273. this.txtTotalIncome.MouseBack = null;
  274. this.txtTotalIncome.Multiline = false;
  275. this.txtTotalIncome.Name = "txtTotalIncome";
  276. this.txtTotalIncome.NormlBack = null;
  277. this.txtTotalIncome.Padding = new System.Windows.Forms.Padding(5);
  278. this.txtTotalIncome.ReadOnly = true;
  279. this.txtTotalIncome.ScrollBars = System.Windows.Forms.ScrollBars.None;
  280. this.txtTotalIncome.Size = new System.Drawing.Size(100, 25);
  281. this.txtTotalIncome.TabIndex = 35;
  282. this.txtTotalIncome.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  283. this.txtTotalIncome.WaterColor = System.Drawing.Color.DarkGray;
  284. this.txtTotalIncome.WaterText = "";
  285. this.txtTotalIncome.WordWrap = true;
  286. //
  287. // lblTotalIncome
  288. //
  289. this.lblTotalIncome.AutoSize = true;
  290. this.lblTotalIncome.Cursor = System.Windows.Forms.Cursors.Default;
  291. this.lblTotalIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  292. this.lblTotalIncome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  293. this.lblTotalIncome.Location = new System.Drawing.Point(15, 5);
  294. this.lblTotalIncome.Name = "lblTotalIncome";
  295. this.lblTotalIncome.Size = new System.Drawing.Size(56, 17);
  296. this.lblTotalIncome.TabIndex = 241;
  297. this.lblTotalIncome.Text = "总收入:";
  298. //
  299. // panelOperatingIncome
  300. //
  301. this.panelOperatingIncome.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  302. this.panelOperatingIncome.BorderWidth = 1;
  303. this.panelOperatingIncome.Controls.Add(this.txtOperatingIncome);
  304. this.panelOperatingIncome.Controls.Add(this.lblOperatingIncome);
  305. this.panelOperatingIncome.Location = new System.Drawing.Point(175, 0);
  306. this.panelOperatingIncome.Margin = new System.Windows.Forms.Padding(0);
  307. this.panelOperatingIncome.Name = "panelOperatingIncome";
  308. this.panelOperatingIncome.Size = new System.Drawing.Size(175, 27);
  309. this.panelOperatingIncome.TabIndex = 1;
  310. //
  311. // txtOperatingIncome
  312. //
  313. this.txtOperatingIncome.BackColor = System.Drawing.Color.Transparent;
  314. this.txtOperatingIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  315. this.txtOperatingIncome.Icon = null;
  316. this.txtOperatingIncome.IconIsButton = false;
  317. this.txtOperatingIncome.IsPasswordChat = '\0';
  318. this.txtOperatingIncome.IsSystemPasswordChar = false;
  319. this.txtOperatingIncome.Lines = new string[0];
  320. this.txtOperatingIncome.Location = new System.Drawing.Point(67, 1);
  321. this.txtOperatingIncome.Margin = new System.Windows.Forms.Padding(0);
  322. this.txtOperatingIncome.MaxLength = 15;
  323. this.txtOperatingIncome.MinimumSize = new System.Drawing.Size(0, 24);
  324. this.txtOperatingIncome.MouseBack = null;
  325. this.txtOperatingIncome.Multiline = false;
  326. this.txtOperatingIncome.Name = "txtOperatingIncome";
  327. this.txtOperatingIncome.NormlBack = null;
  328. this.txtOperatingIncome.Padding = new System.Windows.Forms.Padding(5);
  329. this.txtOperatingIncome.ReadOnly = true;
  330. this.txtOperatingIncome.ScrollBars = System.Windows.Forms.ScrollBars.None;
  331. this.txtOperatingIncome.Size = new System.Drawing.Size(100, 25);
  332. this.txtOperatingIncome.TabIndex = 242;
  333. this.txtOperatingIncome.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  334. this.txtOperatingIncome.WaterColor = System.Drawing.Color.DarkGray;
  335. this.txtOperatingIncome.WaterText = "";
  336. this.txtOperatingIncome.WordWrap = true;
  337. //
  338. // lblOperatingIncome
  339. //
  340. this.lblOperatingIncome.AutoSize = true;
  341. this.lblOperatingIncome.Cursor = System.Windows.Forms.Cursors.Default;
  342. this.lblOperatingIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  343. this.lblOperatingIncome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  344. this.lblOperatingIncome.Location = new System.Drawing.Point(3, 5);
  345. this.lblOperatingIncome.Name = "lblOperatingIncome";
  346. this.lblOperatingIncome.Size = new System.Drawing.Size(68, 17);
  347. this.lblOperatingIncome.TabIndex = 243;
  348. this.lblOperatingIncome.Text = "营业收入:";
  349. //
  350. // panelTotalOutlay
  351. //
  352. this.panelTotalOutlay.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  353. this.panelTotalOutlay.BorderWidth = 1;
  354. this.panelTotalOutlay.Controls.Add(this.txtTotalOutlay);
  355. this.panelTotalOutlay.Controls.Add(this.lblTotalOutlay);
  356. this.panelTotalOutlay.Location = new System.Drawing.Point(350, 0);
  357. this.panelTotalOutlay.Margin = new System.Windows.Forms.Padding(0);
  358. this.panelTotalOutlay.Name = "panelTotalOutlay";
  359. this.panelTotalOutlay.Size = new System.Drawing.Size(175, 27);
  360. this.panelTotalOutlay.TabIndex = 2;
  361. //
  362. // txtTotalOutlay
  363. //
  364. this.txtTotalOutlay.BackColor = System.Drawing.Color.Transparent;
  365. this.txtTotalOutlay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  366. this.txtTotalOutlay.Icon = null;
  367. this.txtTotalOutlay.IconIsButton = false;
  368. this.txtTotalOutlay.IsPasswordChat = '\0';
  369. this.txtTotalOutlay.IsSystemPasswordChar = false;
  370. this.txtTotalOutlay.Lines = new string[0];
  371. this.txtTotalOutlay.Location = new System.Drawing.Point(67, 1);
  372. this.txtTotalOutlay.Margin = new System.Windows.Forms.Padding(0);
  373. this.txtTotalOutlay.MaxLength = 15;
  374. this.txtTotalOutlay.MinimumSize = new System.Drawing.Size(0, 24);
  375. this.txtTotalOutlay.MouseBack = null;
  376. this.txtTotalOutlay.Multiline = false;
  377. this.txtTotalOutlay.Name = "txtTotalOutlay";
  378. this.txtTotalOutlay.NormlBack = null;
  379. this.txtTotalOutlay.Padding = new System.Windows.Forms.Padding(5);
  380. this.txtTotalOutlay.ReadOnly = true;
  381. this.txtTotalOutlay.ScrollBars = System.Windows.Forms.ScrollBars.None;
  382. this.txtTotalOutlay.Size = new System.Drawing.Size(100, 25);
  383. this.txtTotalOutlay.TabIndex = 36;
  384. this.txtTotalOutlay.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  385. this.txtTotalOutlay.WaterColor = System.Drawing.Color.DarkGray;
  386. this.txtTotalOutlay.WaterText = "";
  387. this.txtTotalOutlay.WordWrap = true;
  388. //
  389. // lblTotalOutlay
  390. //
  391. this.lblTotalOutlay.AutoSize = true;
  392. this.lblTotalOutlay.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  393. this.lblTotalOutlay.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  394. this.lblTotalOutlay.Location = new System.Drawing.Point(27, 5);
  395. this.lblTotalOutlay.Name = "lblTotalOutlay";
  396. this.lblTotalOutlay.Size = new System.Drawing.Size(44, 17);
  397. this.lblTotalOutlay.TabIndex = 245;
  398. this.lblTotalOutlay.Text = "支出:";
  399. //
  400. // panelNetIncome
  401. //
  402. this.panelNetIncome.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  403. this.panelNetIncome.BorderWidth = 1;
  404. this.panelNetIncome.Controls.Add(this.txtNetIncome);
  405. this.panelNetIncome.Controls.Add(this.lblNetIncome);
  406. this.panelNetIncome.Location = new System.Drawing.Point(525, 0);
  407. this.panelNetIncome.Margin = new System.Windows.Forms.Padding(0);
  408. this.panelNetIncome.Name = "panelNetIncome";
  409. this.panelNetIncome.Size = new System.Drawing.Size(175, 27);
  410. this.panelNetIncome.TabIndex = 2;
  411. //
  412. // txtNetIncome
  413. //
  414. this.txtNetIncome.BackColor = System.Drawing.Color.Transparent;
  415. this.txtNetIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  416. this.txtNetIncome.Icon = null;
  417. this.txtNetIncome.IconIsButton = false;
  418. this.txtNetIncome.IsPasswordChat = '\0';
  419. this.txtNetIncome.IsSystemPasswordChar = false;
  420. this.txtNetIncome.Lines = new string[0];
  421. this.txtNetIncome.Location = new System.Drawing.Point(67, 1);
  422. this.txtNetIncome.Margin = new System.Windows.Forms.Padding(0);
  423. this.txtNetIncome.MaxLength = 15;
  424. this.txtNetIncome.MinimumSize = new System.Drawing.Size(0, 24);
  425. this.txtNetIncome.MouseBack = null;
  426. this.txtNetIncome.Multiline = false;
  427. this.txtNetIncome.Name = "txtNetIncome";
  428. this.txtNetIncome.NormlBack = null;
  429. this.txtNetIncome.Padding = new System.Windows.Forms.Padding(5);
  430. this.txtNetIncome.ReadOnly = true;
  431. this.txtNetIncome.ScrollBars = System.Windows.Forms.ScrollBars.None;
  432. this.txtNetIncome.Size = new System.Drawing.Size(100, 25);
  433. this.txtNetIncome.TabIndex = 37;
  434. this.txtNetIncome.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  435. this.txtNetIncome.WaterColor = System.Drawing.Color.DarkGray;
  436. this.txtNetIncome.WaterText = "";
  437. this.txtNetIncome.WordWrap = true;
  438. //
  439. // lblNetIncome
  440. //
  441. this.lblNetIncome.AutoSize = true;
  442. this.lblNetIncome.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  443. this.lblNetIncome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  444. this.lblNetIncome.Location = new System.Drawing.Point(15, 5);
  445. this.lblNetIncome.Name = "lblNetIncome";
  446. this.lblNetIncome.Size = new System.Drawing.Size(56, 17);
  447. this.lblNetIncome.TabIndex = 255;
  448. this.lblNetIncome.Text = "净收入:";
  449. //
  450. // panelOrderEarly
  451. //
  452. this.panelOrderEarly.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  453. this.panelOrderEarly.BorderWidth = 1;
  454. this.panelOrderEarly.Controls.Add(this.txtOrderEarly);
  455. this.panelOrderEarly.Controls.Add(this.lblOrderEarly);
  456. this.panelOrderEarly.Location = new System.Drawing.Point(700, 0);
  457. this.panelOrderEarly.Margin = new System.Windows.Forms.Padding(0);
  458. this.panelOrderEarly.Name = "panelOrderEarly";
  459. this.panelOrderEarly.Size = new System.Drawing.Size(175, 27);
  460. this.panelOrderEarly.TabIndex = 2;
  461. //
  462. // txtOrderEarly
  463. //
  464. this.txtOrderEarly.BackColor = System.Drawing.Color.Transparent;
  465. this.txtOrderEarly.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  466. this.txtOrderEarly.Icon = null;
  467. this.txtOrderEarly.IconIsButton = false;
  468. this.txtOrderEarly.IsPasswordChat = '\0';
  469. this.txtOrderEarly.IsSystemPasswordChar = false;
  470. this.txtOrderEarly.Lines = new string[0];
  471. this.txtOrderEarly.Location = new System.Drawing.Point(67, 1);
  472. this.txtOrderEarly.Margin = new System.Windows.Forms.Padding(0);
  473. this.txtOrderEarly.MaxLength = 15;
  474. this.txtOrderEarly.MinimumSize = new System.Drawing.Size(0, 24);
  475. this.txtOrderEarly.MouseBack = null;
  476. this.txtOrderEarly.Multiline = false;
  477. this.txtOrderEarly.Name = "txtOrderEarly";
  478. this.txtOrderEarly.NormlBack = null;
  479. this.txtOrderEarly.Padding = new System.Windows.Forms.Padding(5);
  480. this.txtOrderEarly.ReadOnly = true;
  481. this.txtOrderEarly.ScrollBars = System.Windows.Forms.ScrollBars.None;
  482. this.txtOrderEarly.Size = new System.Drawing.Size(100, 25);
  483. this.txtOrderEarly.TabIndex = 39;
  484. this.txtOrderEarly.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  485. this.txtOrderEarly.WaterColor = System.Drawing.Color.DarkGray;
  486. this.txtOrderEarly.WaterText = "";
  487. this.txtOrderEarly.WordWrap = true;
  488. //
  489. // lblOrderEarly
  490. //
  491. this.lblOrderEarly.AutoSize = true;
  492. this.lblOrderEarly.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  493. this.lblOrderEarly.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  494. this.lblOrderEarly.Location = new System.Drawing.Point(3, 5);
  495. this.lblOrderEarly.Name = "lblOrderEarly";
  496. this.lblOrderEarly.Size = new System.Drawing.Size(68, 17);
  497. this.lblOrderEarly.TabIndex = 267;
  498. this.lblOrderEarly.Text = "订单前期:";
  499. //
  500. // panelOrderLate
  501. //
  502. this.panelOrderLate.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  503. this.panelOrderLate.BorderWidth = 1;
  504. this.panelOrderLate.Controls.Add(this.txtOrderLate);
  505. this.panelOrderLate.Controls.Add(this.lblOrderLate);
  506. this.panelOrderLate.Location = new System.Drawing.Point(0, 27);
  507. this.panelOrderLate.Margin = new System.Windows.Forms.Padding(0);
  508. this.panelOrderLate.Name = "panelOrderLate";
  509. this.panelOrderLate.Size = new System.Drawing.Size(175, 27);
  510. this.panelOrderLate.TabIndex = 2;
  511. //
  512. // txtOrderLate
  513. //
  514. this.txtOrderLate.BackColor = System.Drawing.Color.Transparent;
  515. this.txtOrderLate.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  516. this.txtOrderLate.Icon = null;
  517. this.txtOrderLate.IconIsButton = false;
  518. this.txtOrderLate.IsPasswordChat = '\0';
  519. this.txtOrderLate.IsSystemPasswordChar = false;
  520. this.txtOrderLate.Lines = new string[0];
  521. this.txtOrderLate.Location = new System.Drawing.Point(67, 1);
  522. this.txtOrderLate.Margin = new System.Windows.Forms.Padding(0);
  523. this.txtOrderLate.MaxLength = 15;
  524. this.txtOrderLate.MinimumSize = new System.Drawing.Size(0, 24);
  525. this.txtOrderLate.MouseBack = null;
  526. this.txtOrderLate.Multiline = false;
  527. this.txtOrderLate.Name = "txtOrderLate";
  528. this.txtOrderLate.NormlBack = null;
  529. this.txtOrderLate.Padding = new System.Windows.Forms.Padding(5);
  530. this.txtOrderLate.ReadOnly = true;
  531. this.txtOrderLate.ScrollBars = System.Windows.Forms.ScrollBars.None;
  532. this.txtOrderLate.Size = new System.Drawing.Size(100, 25);
  533. this.txtOrderLate.TabIndex = 40;
  534. this.txtOrderLate.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  535. this.txtOrderLate.WaterColor = System.Drawing.Color.DarkGray;
  536. this.txtOrderLate.WaterText = "";
  537. this.txtOrderLate.WordWrap = true;
  538. //
  539. // lblOrderLate
  540. //
  541. this.lblOrderLate.AutoSize = true;
  542. this.lblOrderLate.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  543. this.lblOrderLate.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  544. this.lblOrderLate.Location = new System.Drawing.Point(3, 5);
  545. this.lblOrderLate.Name = "lblOrderLate";
  546. this.lblOrderLate.Size = new System.Drawing.Size(68, 17);
  547. this.lblOrderLate.TabIndex = 268;
  548. this.lblOrderLate.Text = "订单后期:";
  549. //
  550. // panelVoucher
  551. //
  552. this.panelVoucher.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  553. this.panelVoucher.BorderWidth = 1;
  554. this.panelVoucher.Controls.Add(this.txtVoucher);
  555. this.panelVoucher.Controls.Add(this.lblVoucher);
  556. this.panelVoucher.Location = new System.Drawing.Point(175, 27);
  557. this.panelVoucher.Margin = new System.Windows.Forms.Padding(0);
  558. this.panelVoucher.Name = "panelVoucher";
  559. this.panelVoucher.Size = new System.Drawing.Size(175, 27);
  560. this.panelVoucher.TabIndex = 3;
  561. //
  562. // txtVoucher
  563. //
  564. this.txtVoucher.BackColor = System.Drawing.Color.Transparent;
  565. this.txtVoucher.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
  566. this.txtVoucher.Icon = null;
  567. this.txtVoucher.IconIsButton = false;
  568. this.txtVoucher.IsPasswordChat = '\0';
  569. this.txtVoucher.IsSystemPasswordChar = false;
  570. this.txtVoucher.Lines = new string[0];
  571. this.txtVoucher.Location = new System.Drawing.Point(67, 1);
  572. this.txtVoucher.Margin = new System.Windows.Forms.Padding(0);
  573. this.txtVoucher.MaxLength = 15;
  574. this.txtVoucher.MinimumSize = new System.Drawing.Size(0, 24);
  575. this.txtVoucher.MouseBack = null;
  576. this.txtVoucher.Multiline = false;
  577. this.txtVoucher.Name = "txtVoucher";
  578. this.txtVoucher.NormlBack = null;
  579. this.txtVoucher.Padding = new System.Windows.Forms.Padding(5);
  580. this.txtVoucher.ReadOnly = true;
  581. this.txtVoucher.ScrollBars = System.Windows.Forms.ScrollBars.None;
  582. this.txtVoucher.Size = new System.Drawing.Size(100, 25);
  583. this.txtVoucher.TabIndex = 42;
  584. this.txtVoucher.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
  585. this.txtVoucher.WaterColor = System.Drawing.Color.DarkGray;
  586. this.txtVoucher.WaterText = "";
  587. this.txtVoucher.WordWrap = true;
  588. //
  589. // lblVoucher
  590. //
  591. this.lblVoucher.AutoSize = true;
  592. this.lblVoucher.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  593. this.lblVoucher.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  594. this.lblVoucher.Location = new System.Drawing.Point(15, 5);
  595. this.lblVoucher.Name = "lblVoucher";
  596. this.lblVoucher.Size = new System.Drawing.Size(56, 17);
  597. this.lblVoucher.TabIndex = 269;
  598. this.lblVoucher.Text = "代金券:";
  599. //
  600. // panelPaymentMethod
  601. //
  602. this.panelPaymentMethod.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  603. this.panelPaymentMethod.BorderWidth = 1;
  604. this.panelPaymentMethod.Controls.Add(this.cmbtreevPaymentMethod);
  605. this.panelPaymentMethod.Controls.Add(this.lblPaymentMethod);
  606. this.panelPaymentMethod.Location = new System.Drawing.Point(350, 27);
  607. this.panelPaymentMethod.Margin = new System.Windows.Forms.Padding(0);
  608. this.panelPaymentMethod.Name = "panelPaymentMethod";
  609. this.panelPaymentMethod.Size = new System.Drawing.Size(240, 27);
  610. this.panelPaymentMethod.TabIndex = 2;
  611. //
  612. // cmbtreevPaymentMethod
  613. //
  614. this.cmbtreevPaymentMethod.AfterSelectLevelFirstNode = true;
  615. this.cmbtreevPaymentMethod.DropDownHeight = 220;
  616. this.cmbtreevPaymentMethod.DropDownShow = false;
  617. this.cmbtreevPaymentMethod.FormattingEnabled = true;
  618. this.cmbtreevPaymentMethod.IntegralHeight = false;
  619. this.cmbtreevPaymentMethod.IsNodeMouseClick = true;
  620. this.cmbtreevPaymentMethod.IsSelectParentNode = true;
  621. this.cmbtreevPaymentMethod.Location = new System.Drawing.Point(67, 4);
  622. this.cmbtreevPaymentMethod.Name = "cmbtreevPaymentMethod";
  623. this.cmbtreevPaymentMethod.ReadOnly = true;
  624. this.cmbtreevPaymentMethod.SelectedNode = null;
  625. this.cmbtreevPaymentMethod.Size = new System.Drawing.Size(160, 20);
  626. this.cmbtreevPaymentMethod.StrGetName = "";
  627. this.cmbtreevPaymentMethod.StrGetTagName = "";
  628. this.cmbtreevPaymentMethod.StrKey = null;
  629. this.cmbtreevPaymentMethod.TabIndex = 274;
  630. //
  631. // lblPaymentMethod
  632. //
  633. this.lblPaymentMethod.AutoSize = true;
  634. this.lblPaymentMethod.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  635. this.lblPaymentMethod.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  636. this.lblPaymentMethod.Location = new System.Drawing.Point(3, 5);
  637. this.lblPaymentMethod.Name = "lblPaymentMethod";
  638. this.lblPaymentMethod.Size = new System.Drawing.Size(68, 17);
  639. this.lblPaymentMethod.TabIndex = 256;
  640. this.lblPaymentMethod.Text = "付款方式:";
  641. //
  642. // panelQueryItem
  643. //
  644. this.panelQueryItem.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  645. this.panelQueryItem.BorderWidth = 1;
  646. this.panelQueryItem.Controls.Add(this.cmbtreevQueryItem);
  647. this.panelQueryItem.Controls.Add(this.cmbtreevSecondOption);
  648. this.panelQueryItem.Controls.Add(this.lblQueryItem);
  649. this.panelQueryItem.Location = new System.Drawing.Point(0, 54);
  650. this.panelQueryItem.Margin = new System.Windows.Forms.Padding(0);
  651. this.panelQueryItem.Name = "panelQueryItem";
  652. this.panelQueryItem.Size = new System.Drawing.Size(370, 27);
  653. this.panelQueryItem.TabIndex = 2;
  654. //
  655. // cmbtreevQueryItem
  656. //
  657. this.cmbtreevQueryItem.AfterSelectLevelFirstNode = true;
  658. this.cmbtreevQueryItem.DropDownHeight = 220;
  659. this.cmbtreevQueryItem.DropDownShow = false;
  660. this.cmbtreevQueryItem.FormattingEnabled = true;
  661. this.cmbtreevQueryItem.IntegralHeight = false;
  662. this.cmbtreevQueryItem.IsNodeMouseClick = true;
  663. this.cmbtreevQueryItem.IsSelectParentNode = true;
  664. this.cmbtreevQueryItem.Location = new System.Drawing.Point(67, 4);
  665. this.cmbtreevQueryItem.Name = "cmbtreevQueryItem";
  666. this.cmbtreevQueryItem.ReadOnly = true;
  667. this.cmbtreevQueryItem.SelectedNode = null;
  668. this.cmbtreevQueryItem.Size = new System.Drawing.Size(160, 20);
  669. this.cmbtreevQueryItem.StrGetName = "";
  670. this.cmbtreevQueryItem.StrGetTagName = "";
  671. this.cmbtreevQueryItem.StrKey = null;
  672. this.cmbtreevQueryItem.TabIndex = 273;
  673. //
  674. // cmbtreevSecondOption
  675. //
  676. this.cmbtreevSecondOption.AfterSelectLevelFirstNode = true;
  677. this.cmbtreevSecondOption.DropDownHeight = 220;
  678. this.cmbtreevSecondOption.DropDownShow = false;
  679. this.cmbtreevSecondOption.FormattingEnabled = true;
  680. this.cmbtreevSecondOption.IntegralHeight = false;
  681. this.cmbtreevSecondOption.IsNodeMouseClick = true;
  682. this.cmbtreevSecondOption.IsSelectParentNode = false;
  683. this.cmbtreevSecondOption.Location = new System.Drawing.Point(233, 4);
  684. this.cmbtreevSecondOption.Name = "cmbtreevSecondOption";
  685. this.cmbtreevSecondOption.ReadOnly = true;
  686. this.cmbtreevSecondOption.SelectedNode = null;
  687. this.cmbtreevSecondOption.Size = new System.Drawing.Size(125, 20);
  688. this.cmbtreevSecondOption.StrGetName = "";
  689. this.cmbtreevSecondOption.StrGetTagName = "";
  690. this.cmbtreevSecondOption.StrKey = null;
  691. this.cmbtreevSecondOption.TabIndex = 272;
  692. //
  693. // lblQueryItem
  694. //
  695. this.lblQueryItem.AutoSize = true;
  696. this.lblQueryItem.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  697. this.lblQueryItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  698. this.lblQueryItem.Location = new System.Drawing.Point(3, 5);
  699. this.lblQueryItem.Name = "lblQueryItem";
  700. this.lblQueryItem.Size = new System.Drawing.Size(68, 17);
  701. this.lblQueryItem.TabIndex = 270;
  702. this.lblQueryItem.Text = "项目查询:";
  703. //
  704. // panelStoreName
  705. //
  706. this.panelStoreName.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  707. this.panelStoreName.BorderWidth = 1;
  708. this.panelStoreName.Controls.Add(this.cmbtreevStoreName);
  709. this.panelStoreName.Controls.Add(this.labelEx3);
  710. this.panelStoreName.Location = new System.Drawing.Point(370, 54);
  711. this.panelStoreName.Margin = new System.Windows.Forms.Padding(0);
  712. this.panelStoreName.Name = "panelStoreName";
  713. this.panelStoreName.Size = new System.Drawing.Size(265, 27);
  714. this.panelStoreName.TabIndex = 210;
  715. //
  716. // cmbtreevStoreName
  717. //
  718. this.cmbtreevStoreName.AfterSelectLevelFirstNode = true;
  719. this.cmbtreevStoreName.DropDownHeight = 220;
  720. this.cmbtreevStoreName.DropDownShow = false;
  721. this.cmbtreevStoreName.FormattingEnabled = true;
  722. this.cmbtreevStoreName.IntegralHeight = false;
  723. this.cmbtreevStoreName.IsNodeMouseClick = true;
  724. this.cmbtreevStoreName.IsSelectParentNode = false;
  725. this.cmbtreevStoreName.Location = new System.Drawing.Point(45, 3);
  726. this.cmbtreevStoreName.Name = "cmbtreevStoreName";
  727. this.cmbtreevStoreName.ReadOnly = true;
  728. this.cmbtreevStoreName.SelectedNode = null;
  729. this.cmbtreevStoreName.Size = new System.Drawing.Size(210, 20);
  730. this.cmbtreevStoreName.StrGetName = "";
  731. this.cmbtreevStoreName.StrGetTagName = "";
  732. this.cmbtreevStoreName.StrKey = null;
  733. this.cmbtreevStoreName.TabIndex = 274;
  734. //
  735. // labelEx3
  736. //
  737. this.labelEx3.AutoSize = true;
  738. this.labelEx3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  739. this.labelEx3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  740. this.labelEx3.Location = new System.Drawing.Point(4, 5);
  741. this.labelEx3.Name = "labelEx3";
  742. this.labelEx3.Size = new System.Drawing.Size(44, 17);
  743. this.labelEx3.TabIndex = 275;
  744. this.labelEx3.Text = "分店:";
  745. //
  746. // panelEx13
  747. //
  748. this.panelEx13.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  749. this.panelEx13.BorderWidth = 1;
  750. this.panelEx13.Dock = System.Windows.Forms.DockStyle.Bottom;
  751. this.panelEx13.Location = new System.Drawing.Point(0, 51);
  752. this.panelEx13.Name = "panelEx13";
  753. this.panelEx13.Size = new System.Drawing.Size(900, 1);
  754. this.panelEx13.TabIndex = 1;
  755. //
  756. // btnExport
  757. //
  758. this.btnExport.BackColor = System.Drawing.Color.Transparent;
  759. this.btnExport.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnExport.BackImg")));
  760. this.btnExport.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  761. this.btnExport.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  762. this.btnExport.ForeColor = System.Drawing.Color.White;
  763. this.btnExport.IsCustomBackImg = false;
  764. this.btnExport.IsShowText = true;
  765. this.btnExport.Location = new System.Drawing.Point(461, 8);
  766. this.btnExport.Name = "btnExport";
  767. this.btnExport.Size = new System.Drawing.Size(85, 26);
  768. this.btnExport.TabIndex = 205;
  769. this.btnExport.Text = " 导 出";
  770. this.btnExport.UseVisualStyleBackColor = false;
  771. //
  772. // btnPrint
  773. //
  774. this.btnPrint.BackColor = System.Drawing.Color.Transparent;
  775. this.btnPrint.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnPrint.BackImg")));
  776. this.btnPrint.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  777. this.btnPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  778. this.btnPrint.ForeColor = System.Drawing.Color.White;
  779. this.btnPrint.IsCustomBackImg = false;
  780. this.btnPrint.IsShowText = true;
  781. this.btnPrint.Location = new System.Drawing.Point(552, 8);
  782. this.btnPrint.Name = "btnPrint";
  783. this.btnPrint.Size = new System.Drawing.Size(85, 26);
  784. this.btnPrint.TabIndex = 206;
  785. this.btnPrint.Text = " 打 印";
  786. this.btnPrint.UseVisualStyleBackColor = false;
  787. //
  788. // btnClose
  789. //
  790. this.btnClose.BackColor = System.Drawing.Color.Transparent;
  791. this.btnClose.BackImg = ((System.Drawing.Bitmap)(resources.GetObject("btnClose.BackImg")));
  792. this.btnClose.BacklightLTRB = new System.Drawing.Rectangle(10, 10, 26, 21);
  793. this.btnClose.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold);
  794. this.btnClose.ForeColor = System.Drawing.Color.White;
  795. this.btnClose.IsCustomBackImg = false;
  796. this.btnClose.IsShowText = true;
  797. this.btnClose.Location = new System.Drawing.Point(643, 8);
  798. this.btnClose.Name = "btnClose";
  799. this.btnClose.Size = new System.Drawing.Size(85, 26);
  800. this.btnClose.TabIndex = 207;
  801. this.btnClose.Text = " 关 闭";
  802. this.btnClose.UseVisualStyleBackColor = false;
  803. //
  804. // numYear
  805. //
  806. this.numYear.ArrowColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(66)))), ((int)(((byte)(80)))));
  807. this.numYear.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  808. this.numYear.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(174)))), ((int)(((byte)(168)))), ((int)(((byte)(168)))));
  809. this.numYear.Font = new System.Drawing.Font("宋体", 12F);
  810. this.numYear.IsCustomColor = false;
  811. this.numYear.Location = new System.Drawing.Point(295, 8);
  812. this.numYear.Maximum = new decimal(new int[] {
  813. 3000,
  814. 0,
  815. 0,
  816. 0});
  817. this.numYear.Minimum = new decimal(new int[] {
  818. 1900,
  819. 0,
  820. 0,
  821. 0});
  822. this.numYear.Name = "numYear";
  823. this.numYear.Size = new System.Drawing.Size(78, 26);
  824. this.numYear.TabIndex = 203;
  825. this.numYear.Value = new decimal(new int[] {
  826. 2014,
  827. 0,
  828. 0,
  829. 0});
  830. //
  831. // labelEx6
  832. //
  833. this.labelEx6.AutoSize = true;
  834. this.labelEx6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(245)))), ((int)(((byte)(246)))), ((int)(((byte)(248)))));
  835. this.labelEx6.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
  836. this.labelEx6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  837. this.labelEx6.Location = new System.Drawing.Point(376, 12);
  838. this.labelEx6.Name = "labelEx6";
  839. this.labelEx6.Size = new System.Drawing.Size(23, 19);
  840. this.labelEx6.TabIndex = 204;
  841. this.labelEx6.Text = "年";
  842. //
  843. // panelOrderType
  844. //
  845. this.panelOrderType.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(204)))), ((int)(((byte)(209)))));
  846. this.panelOrderType.BorderWidth = 1;
  847. this.panelOrderType.Controls.Add(this.cmbtreevOrderType);
  848. this.panelOrderType.Controls.Add(this.labelEx4);
  849. this.panelOrderType.Location = new System.Drawing.Point(635, 54);
  850. this.panelOrderType.Margin = new System.Windows.Forms.Padding(0);
  851. this.panelOrderType.Name = "panelOrderType";
  852. this.panelOrderType.Size = new System.Drawing.Size(175, 27);
  853. this.panelOrderType.TabIndex = 212;
  854. //
  855. // cmbtreevOrderType
  856. //
  857. this.cmbtreevOrderType.AfterSelectLevelFirstNode = true;
  858. this.cmbtreevOrderType.DropDownHeight = 220;
  859. this.cmbtreevOrderType.DropDownShow = false;
  860. this.cmbtreevOrderType.FormattingEnabled = true;
  861. this.cmbtreevOrderType.IntegralHeight = false;
  862. this.cmbtreevOrderType.IsNodeMouseClick = true;
  863. this.cmbtreevOrderType.IsSelectParentNode = false;
  864. this.cmbtreevOrderType.Location = new System.Drawing.Point(67, 3);
  865. this.cmbtreevOrderType.Name = "cmbtreevOrderType";
  866. this.cmbtreevOrderType.ReadOnly = true;
  867. this.cmbtreevOrderType.SelectedNode = null;
  868. this.cmbtreevOrderType.Size = new System.Drawing.Size(100, 20);
  869. this.cmbtreevOrderType.StrGetName = "";
  870. this.cmbtreevOrderType.StrGetTagName = "";
  871. this.cmbtreevOrderType.StrKey = null;
  872. this.cmbtreevOrderType.TabIndex = 274;
  873. //
  874. // labelEx4
  875. //
  876. this.labelEx4.AutoSize = true;
  877. this.labelEx4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(134)));
  878. this.labelEx4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(113)))), ((int)(((byte)(113)))));
  879. this.labelEx4.Location = new System.Drawing.Point(4, 5);
  880. this.labelEx4.Name = "labelEx4";
  881. this.labelEx4.Size = new System.Drawing.Size(68, 17);
  882. this.labelEx4.TabIndex = 275;
  883. this.labelEx4.Text = "订单类型:";
  884. //
  885. // FinanceYearReportSmallForm
  886. //
  887. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  888. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  889. this.BottomBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.BottomBgImage")));
  890. this.ClientSize = new System.Drawing.Size(910, 610);
  891. this.CustomBorderStyles.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(63)))), ((int)(((byte)(109)))), ((int)(((byte)(139)))));
  892. this.ImeMode = System.Windows.Forms.ImeMode.On;
  893. this.IsShowUcNavigationTool = true;
  894. this.IsUserControlsSize = false;
  895. this.Name = "FinanceYearReportSmallForm";
  896. this.Text = "年财务报表";
  897. this.TitleBgImage = ((System.Drawing.Bitmap)(resources.GetObject("$this.TitleBgImage")));
  898. this.plExMainContainer.ResumeLayout(false);
  899. this.plFormMainContent.ResumeLayout(false);
  900. this.plFormMainContent.PerformLayout();
  901. this.panelEx1.ResumeLayout(false);
  902. ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
  903. this.panelEx2.ResumeLayout(false);
  904. this.panelEx14.ResumeLayout(false);
  905. this.panelEx14.PerformLayout();
  906. this.flowLayoutPanel1.ResumeLayout(false);
  907. this.panelTotalIncome.ResumeLayout(false);
  908. this.panelTotalIncome.PerformLayout();
  909. this.panelOperatingIncome.ResumeLayout(false);
  910. this.panelOperatingIncome.PerformLayout();
  911. this.panelTotalOutlay.ResumeLayout(false);
  912. this.panelTotalOutlay.PerformLayout();
  913. this.panelNetIncome.ResumeLayout(false);
  914. this.panelNetIncome.PerformLayout();
  915. this.panelOrderEarly.ResumeLayout(false);
  916. this.panelOrderEarly.PerformLayout();
  917. this.panelOrderLate.ResumeLayout(false);
  918. this.panelOrderLate.PerformLayout();
  919. this.panelVoucher.ResumeLayout(false);
  920. this.panelVoucher.PerformLayout();
  921. this.panelPaymentMethod.ResumeLayout(false);
  922. this.panelPaymentMethod.PerformLayout();
  923. this.panelQueryItem.ResumeLayout(false);
  924. this.panelQueryItem.PerformLayout();
  925. this.panelStoreName.ResumeLayout(false);
  926. this.panelStoreName.PerformLayout();
  927. ((System.ComponentModel.ISupportInitialize)(this.numYear)).EndInit();
  928. this.panelOrderType.ResumeLayout(false);
  929. this.panelOrderType.PerformLayout();
  930. this.ResumeLayout(false);
  931. }
  932. #endregion
  933. protected internal ComponentLibrary.PanelEx panelEx1;
  934. protected internal ComponentLibrary.DataGridViewEc dgvData;
  935. protected internal ComponentLibrary.PanelEx panelEx2;
  936. protected internal ComponentLibrary.PanelEx panelEx14;
  937. protected ComponentLibrary.LabelEx lblCount;
  938. protected internal ComponentLibrary.PanelEx panelEx13;
  939. protected internal System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
  940. private ComponentLibrary.PanelEx panelTotalIncome;
  941. protected internal ComponentLibrary.TextBoxEx txtTotalIncome;
  942. protected internal ComponentLibrary.LabelEx lblTotalIncome;
  943. private ComponentLibrary.PanelEx panelOperatingIncome;
  944. protected internal ComponentLibrary.TextBoxEx txtOperatingIncome;
  945. protected internal ComponentLibrary.LabelEx lblOperatingIncome;
  946. private ComponentLibrary.PanelEx panelTotalOutlay;
  947. protected internal ComponentLibrary.TextBoxEx txtTotalOutlay;
  948. private ComponentLibrary.LabelEx lblTotalOutlay;
  949. protected internal ComponentLibrary.PanelEx panelNetIncome;
  950. protected internal ComponentLibrary.TextBoxEx txtNetIncome;
  951. private ComponentLibrary.LabelEx lblNetIncome;
  952. private ComponentLibrary.PanelEx panelOrderEarly;
  953. protected internal ComponentLibrary.TextBoxEx txtOrderEarly;
  954. private ComponentLibrary.LabelEx lblOrderEarly;
  955. private ComponentLibrary.PanelEx panelOrderLate;
  956. protected internal ComponentLibrary.TextBoxEx txtOrderLate;
  957. private ComponentLibrary.LabelEx lblOrderLate;
  958. protected internal ComponentLibrary.PanelEx panelVoucher;
  959. protected internal ComponentLibrary.TextBoxEx txtVoucher;
  960. private ComponentLibrary.LabelEx lblVoucher;
  961. private ComponentLibrary.PanelEx panelPaymentMethod;
  962. protected ComponentLibrary.ComboBoxTreeViewEx cmbtreevPaymentMethod;
  963. private ComponentLibrary.LabelEx lblPaymentMethod;
  964. protected ComponentLibrary.ComboBoxTreeViewEx cmbtreevQueryItem;
  965. protected ComponentLibrary.ComboBoxTreeViewEx cmbtreevSecondOption;
  966. private ComponentLibrary.LabelEx lblQueryItem;
  967. protected ComponentLibrary.NumericUpDownEx numYear;
  968. private ComponentLibrary.LabelEx labelEx6;
  969. protected internal ComponentLibrary.ButtonEx btnExport;
  970. protected internal ComponentLibrary.ButtonEx btnPrint;
  971. protected internal ComponentLibrary.ButtonEx btnClose;
  972. protected internal ComponentLibrary.PanelEx panelStoreName;
  973. protected internal ComponentLibrary.ComboBoxTreeViewEx cmbtreevStoreName;
  974. protected internal ComponentLibrary.LabelEx labelEx3;
  975. protected internal ComponentLibrary.PanelEx panelQueryItem;
  976. protected internal ComponentLibrary.PanelEx panelOrderType;
  977. protected internal ComponentLibrary.ComboBoxTreeViewEx cmbtreevOrderType;
  978. protected internal ComponentLibrary.LabelEx labelEx4;
  979. }
  980. }