PageRenderTime 53ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/WhistlingPalms/Forms/ViewStockChangeInformation.Designer.cs

#
C# | 241 lines | 175 code | 10 blank | 56 comment | 3 complexity | ee5c35fa6083863ef8facef1711dbf32 MD5 | raw file
  1. namespace WhistlingPalms
  2. {
  3. partial class ViewStockChangeInformation
  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(ViewStockChangeInformation));
  29. this.dgvStockInfo = new System.Windows.Forms.DataGridView();
  30. this.Cost = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.TransactQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.OldQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.NewQuantity = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.btnCancel = new System.Windows.Forms.Button();
  35. this.btnOK = new System.Windows.Forms.Button();
  36. this.label1 = new System.Windows.Forms.Label();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.lblProduct = new System.Windows.Forms.Label();
  39. this.lblWareHouse = new System.Windows.Forms.Label();
  40. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  41. this.panel1 = new System.Windows.Forms.Panel();
  42. this.panel2 = new System.Windows.Forms.Panel();
  43. ((System.ComponentModel.ISupportInitialize)(this.dgvStockInfo)).BeginInit();
  44. this.tableLayoutPanel1.SuspendLayout();
  45. this.panel1.SuspendLayout();
  46. this.panel2.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // dgvStockInfo
  50. //
  51. this.dgvStockInfo.AllowUserToAddRows = false;
  52. this.dgvStockInfo.AllowUserToDeleteRows = false;
  53. this.dgvStockInfo.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  54. this.dgvStockInfo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  55. this.Cost,
  56. this.TransactQuantity,
  57. this.OldQuantity,
  58. this.NewQuantity});
  59. this.dgvStockInfo.Dock = System.Windows.Forms.DockStyle.Fill;
  60. this.dgvStockInfo.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
  61. this.dgvStockInfo.Location = new System.Drawing.Point(3, 73);
  62. this.dgvStockInfo.Name = "dgvStockInfo";
  63. this.dgvStockInfo.RowHeadersVisible = false;
  64. this.dgvStockInfo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  65. this.dgvStockInfo.Size = new System.Drawing.Size(502, 114);
  66. this.dgvStockInfo.TabIndex = 0;
  67. this.dgvStockInfo.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStockInfo_CellEndEdit);
  68. this.dgvStockInfo.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStockInfo_CellValidated);
  69. this.dgvStockInfo.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dgvStockInfo_CellValidating);
  70. this.dgvStockInfo.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvStockInfo_EditingControlShowing);
  71. //
  72. // Cost
  73. //
  74. this.Cost.DataPropertyName = "Cost";
  75. this.Cost.HeaderText = "Cost";
  76. this.Cost.Name = "Cost";
  77. this.Cost.ReadOnly = true;
  78. //
  79. // TransactQuantity
  80. //
  81. this.TransactQuantity.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  82. this.TransactQuantity.DataPropertyName = "TransactQuantity";
  83. this.TransactQuantity.HeaderText = "Transact Qty";
  84. this.TransactQuantity.Name = "TransactQuantity";
  85. //
  86. // OldQuantity
  87. //
  88. this.OldQuantity.DataPropertyName = "OldQuantity";
  89. this.OldQuantity.HeaderText = "Old Qty";
  90. this.OldQuantity.Name = "OldQuantity";
  91. this.OldQuantity.ReadOnly = true;
  92. //
  93. // NewQuantity
  94. //
  95. this.NewQuantity.DataPropertyName = "NewQuantity";
  96. this.NewQuantity.HeaderText = "New Qty";
  97. this.NewQuantity.Name = "NewQuantity";
  98. this.NewQuantity.ReadOnly = true;
  99. //
  100. // btnCancel
  101. //
  102. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  103. this.btnCancel.Location = new System.Drawing.Point(418, 6);
  104. this.btnCancel.Name = "btnCancel";
  105. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  106. this.btnCancel.TabIndex = 1;
  107. this.btnCancel.Text = "&Cancel";
  108. this.btnCancel.UseVisualStyleBackColor = true;
  109. //
  110. // btnOK
  111. //
  112. this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  113. this.btnOK.Location = new System.Drawing.Point(322, 6);
  114. this.btnOK.Name = "btnOK";
  115. this.btnOK.Size = new System.Drawing.Size(75, 23);
  116. this.btnOK.TabIndex = 1;
  117. this.btnOK.Text = "&OK";
  118. this.btnOK.UseVisualStyleBackColor = true;
  119. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  120. //
  121. // label1
  122. //
  123. this.label1.AutoSize = true;
  124. this.label1.Location = new System.Drawing.Point(12, 15);
  125. this.label1.Name = "label1";
  126. this.label1.Size = new System.Drawing.Size(53, 13);
  127. this.label1.TabIndex = 2;
  128. this.label1.Text = "Product : ";
  129. //
  130. // label2
  131. //
  132. this.label2.AutoSize = true;
  133. this.label2.Location = new System.Drawing.Point(12, 37);
  134. this.label2.Name = "label2";
  135. this.label2.Size = new System.Drawing.Size(73, 13);
  136. this.label2.TabIndex = 2;
  137. this.label2.Text = "WareHouse : ";
  138. //
  139. // lblProduct
  140. //
  141. this.lblProduct.AutoSize = true;
  142. this.lblProduct.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  143. this.lblProduct.Location = new System.Drawing.Point(71, 15);
  144. this.lblProduct.Name = "lblProduct";
  145. this.lblProduct.Size = new System.Drawing.Size(11, 13);
  146. this.lblProduct.TabIndex = 2;
  147. this.lblProduct.Text = " ";
  148. //
  149. // lblWareHouse
  150. //
  151. this.lblWareHouse.AutoSize = true;
  152. this.lblWareHouse.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  153. this.lblWareHouse.Location = new System.Drawing.Point(91, 37);
  154. this.lblWareHouse.Name = "lblWareHouse";
  155. this.lblWareHouse.Size = new System.Drawing.Size(11, 13);
  156. this.lblWareHouse.TabIndex = 2;
  157. this.lblWareHouse.Text = " ";
  158. //
  159. // tableLayoutPanel1
  160. //
  161. this.tableLayoutPanel1.ColumnCount = 1;
  162. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  163. this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
  164. this.tableLayoutPanel1.Controls.Add(this.dgvStockInfo, 0, 1);
  165. this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 2);
  166. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  167. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  168. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  169. this.tableLayoutPanel1.RowCount = 3;
  170. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 70F));
  171. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 120F));
  172. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
  173. this.tableLayoutPanel1.Size = new System.Drawing.Size(508, 231);
  174. this.tableLayoutPanel1.TabIndex = 3;
  175. //
  176. // panel1
  177. //
  178. this.panel1.Controls.Add(this.label1);
  179. this.panel1.Controls.Add(this.label2);
  180. this.panel1.Controls.Add(this.lblProduct);
  181. this.panel1.Controls.Add(this.lblWareHouse);
  182. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  183. this.panel1.Location = new System.Drawing.Point(3, 3);
  184. this.panel1.Name = "panel1";
  185. this.panel1.Size = new System.Drawing.Size(502, 64);
  186. this.panel1.TabIndex = 0;
  187. //
  188. // panel2
  189. //
  190. this.panel2.Controls.Add(this.btnOK);
  191. this.panel2.Controls.Add(this.btnCancel);
  192. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  193. this.panel2.Location = new System.Drawing.Point(3, 193);
  194. this.panel2.Name = "panel2";
  195. this.panel2.Size = new System.Drawing.Size(502, 35);
  196. this.panel2.TabIndex = 1;
  197. //
  198. // ViewStockChangeInformation
  199. //
  200. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  201. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  202. this.ClientSize = new System.Drawing.Size(508, 231);
  203. this.Controls.Add(this.tableLayoutPanel1);
  204. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  205. this.Name = "ViewStockChangeInformation";
  206. this.Text = "View Stock Change Information";
  207. this.Load += new System.EventHandler(this.ViewStockChangeInformation_Load);
  208. ((System.ComponentModel.ISupportInitialize)(this.dgvStockInfo)).EndInit();
  209. this.tableLayoutPanel1.ResumeLayout(false);
  210. this.panel1.ResumeLayout(false);
  211. this.panel1.PerformLayout();
  212. this.panel2.ResumeLayout(false);
  213. this.ResumeLayout(false);
  214. }
  215. #endregion
  216. private System.Windows.Forms.DataGridView dgvStockInfo;
  217. private System.Windows.Forms.Button btnCancel;
  218. private System.Windows.Forms.Button btnOK;
  219. private System.Windows.Forms.DataGridViewTextBoxColumn Cost;
  220. private System.Windows.Forms.DataGridViewTextBoxColumn TransactQuantity;
  221. private System.Windows.Forms.DataGridViewTextBoxColumn OldQuantity;
  222. private System.Windows.Forms.DataGridViewTextBoxColumn NewQuantity;
  223. private System.Windows.Forms.Label label1;
  224. private System.Windows.Forms.Label label2;
  225. private System.Windows.Forms.Label lblProduct;
  226. private System.Windows.Forms.Label lblWareHouse;
  227. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  228. private System.Windows.Forms.Panel panel1;
  229. private System.Windows.Forms.Panel panel2;
  230. }
  231. }