namespace Tanshu.Accounts.PointOfSale { partial class ProductGroupListForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); this.btnAdd = new System.Windows.Forms.Button(); this.btnEdit = new System.Windows.Forms.Button(); this.btnExit = new System.Windows.Forms.Button(); this.dgvProductTypes = new System.Windows.Forms.DataGridView(); this.bsList = new System.Windows.Forms.BindingSource(this.components); this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.discountLimitDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.groupTypeDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.SortOrder = new System.Windows.Forms.DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)(this.dgvProductTypes)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.bsList)).BeginInit(); this.SuspendLayout(); // // btnAdd // this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnAdd.Location = new System.Drawing.Point(12, 255); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 75); this.btnAdd.TabIndex = 68; this.btnAdd.Text = "&Add"; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // btnEdit // this.btnEdit.AccessibleName = "Done"; this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnEdit.Location = new System.Drawing.Point(93, 255); this.btnEdit.Name = "btnEdit"; this.btnEdit.Size = new System.Drawing.Size(75, 75); this.btnEdit.TabIndex = 62; this.btnEdit.Text = "&Edit"; this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click); // // btnExit // this.btnExit.AccessibleName = "Done"; this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnExit.Location = new System.Drawing.Point(286, 255); this.btnExit.Name = "btnExit"; this.btnExit.Size = new System.Drawing.Size(75, 75); this.btnExit.TabIndex = 61; this.btnExit.Text = "E&xit"; this.btnExit.Click += new System.EventHandler(this.btnExit_Click); // // dgvProductTypes // this.dgvProductTypes.AllowUserToAddRows = false; this.dgvProductTypes.AllowUserToDeleteRows = false; this.dgvProductTypes.AllowUserToResizeRows = false; this.dgvProductTypes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dgvProductTypes.AutoGenerateColumns = false; this.dgvProductTypes.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells; this.dgvProductTypes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvProductTypes.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.nameDataGridViewTextBoxColumn, this.discountLimitDataGridViewTextBoxColumn, this.groupTypeDataGridViewTextBoxColumn, this.SortOrder}); this.dgvProductTypes.DataSource = this.bsList; this.dgvProductTypes.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically; this.dgvProductTypes.Location = new System.Drawing.Point(12, 12); this.dgvProductTypes.MultiSelect = false; this.dgvProductTypes.Name = "dgvProductTypes"; this.dgvProductTypes.ReadOnly = true; this.dgvProductTypes.RowHeadersVisible = false; this.dgvProductTypes.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.dgvProductTypes.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; this.dgvProductTypes.Size = new System.Drawing.Size(349, 237); this.dgvProductTypes.TabIndex = 74; // // bsList // this.bsList.DataSource = typeof(Tanshu.Accounts.Entities.ProductGroup); // // nameDataGridViewTextBoxColumn // this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name"; this.nameDataGridViewTextBoxColumn.HeaderText = "Name"; this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn"; this.nameDataGridViewTextBoxColumn.ReadOnly = true; this.nameDataGridViewTextBoxColumn.Width = 60; // // discountLimitDataGridViewTextBoxColumn // this.discountLimitDataGridViewTextBoxColumn.DataPropertyName = "DiscountLimit"; dataGridViewCellStyle1.Format = "P0"; dataGridViewCellStyle1.NullValue = null; this.discountLimitDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1; this.discountLimitDataGridViewTextBoxColumn.HeaderText = "Discount"; this.discountLimitDataGridViewTextBoxColumn.Name = "discountLimitDataGridViewTextBoxColumn"; this.discountLimitDataGridViewTextBoxColumn.ReadOnly = true; this.discountLimitDataGridViewTextBoxColumn.Width = 74; // // groupTypeDataGridViewTextBoxColumn // this.groupTypeDataGridViewTextBoxColumn.DataPropertyName = "GroupType"; this.groupTypeDataGridViewTextBoxColumn.HeaderText = "Type"; this.groupTypeDataGridViewTextBoxColumn.Name = "groupTypeDataGridViewTextBoxColumn"; this.groupTypeDataGridViewTextBoxColumn.ReadOnly = true; this.groupTypeDataGridViewTextBoxColumn.Width = 56; // // SortOrder // this.SortOrder.DataPropertyName = "SortOrder"; this.SortOrder.HeaderText = "SortOrder"; this.SortOrder.Name = "SortOrder"; this.SortOrder.ReadOnly = true; this.SortOrder.Width = 77; // // ProductGroupListForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(373, 342); this.Controls.Add(this.dgvProductTypes); this.Controls.Add(this.btnAdd); this.Controls.Add(this.btnEdit); this.Controls.Add(this.btnExit); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ProductGroupListForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Product Types"; this.Load += new System.EventHandler(this.ProductGroupListForm_Load); ((System.ComponentModel.ISupportInitialize)(this.dgvProductTypes)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.bsList)).EndInit(); this.ResumeLayout(false); } #endregion internal System.Windows.Forms.Button btnAdd; internal System.Windows.Forms.Button btnEdit; internal System.Windows.Forms.Button btnExit; private System.Windows.Forms.DataGridView dgvProductTypes; private System.Windows.Forms.BindingSource bsList; private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn discountLimitDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn groupTypeDataGridViewTextBoxColumn; private System.Windows.Forms.DataGridViewTextBoxColumn SortOrder; } }