namespace PersonalLaundry
{
partial class PriceIncreaseForm
{
///
/// 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.CustomerPricingPercentageGrid = new System.Windows.Forms.DataGridView();
this.CustomerSource = new System.Windows.Forms.BindingSource(this.components);
this.ApplyButton = new System.Windows.Forms.Button();
this.Customer = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.StainExpressPercentage = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PriceIncreasePercentage = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.CustomerPricingPercentageGrid)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.CustomerSource)).BeginInit();
this.SuspendLayout();
//
// CustomerPricingPercentageGrid
//
this.CustomerPricingPercentageGrid.AllowUserToAddRows = false;
this.CustomerPricingPercentageGrid.AllowUserToDeleteRows = false;
this.CustomerPricingPercentageGrid.AllowUserToOrderColumns = true;
this.CustomerPricingPercentageGrid.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.CustomerPricingPercentageGrid.AutoGenerateColumns = false;
this.CustomerPricingPercentageGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.CustomerPricingPercentageGrid.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.CustomerPricingPercentageGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.CustomerPricingPercentageGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.CustomerPricingPercentageGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Customer,
this.StainExpressPercentage,
this.PriceIncreasePercentage});
this.CustomerPricingPercentageGrid.DataSource = this.CustomerSource;
this.CustomerPricingPercentageGrid.Location = new System.Drawing.Point(12, 61);
this.CustomerPricingPercentageGrid.MultiSelect = false;
this.CustomerPricingPercentageGrid.Name = "CustomerPricingPercentageGrid";
this.CustomerPricingPercentageGrid.ReadOnly = true;
this.CustomerPricingPercentageGrid.RowHeadersVisible = false;
this.CustomerPricingPercentageGrid.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.CustomerPricingPercentageGrid.Size = new System.Drawing.Size(860, 489);
this.CustomerPricingPercentageGrid.TabIndex = 19;
//
// CustomerSource
//
this.CustomerSource.DataSource = typeof(Common.Customer);
//
// ApplyButton
//
this.ApplyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ApplyButton.Location = new System.Drawing.Point(797, 22);
this.ApplyButton.Name = "ApplyButton";
this.ApplyButton.Size = new System.Drawing.Size(75, 23);
this.ApplyButton.TabIndex = 21;
this.ApplyButton.Text = "Apply";
this.ApplyButton.UseVisualStyleBackColor = true;
this.ApplyButton.Click += new System.EventHandler(this.ApplyButton_Click);
//
// Customer
//
this.Customer.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.Customer.DataPropertyName = "Name";
this.Customer.HeaderText = "Customer";
this.Customer.Name = "Customer";
this.Customer.ReadOnly = true;
this.Customer.Width = 76;
//
// StainExpressPercentage
//
this.StainExpressPercentage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
this.StainExpressPercentage.DataPropertyName = "StainExpressPercentage";
this.StainExpressPercentage.HeaderText = "Stain/Express %";
this.StainExpressPercentage.Name = "StainExpressPercentage";
this.StainExpressPercentage.ReadOnly = true;
this.StainExpressPercentage.Width = 110;
//
// PriceIncreasePercentage
//
this.PriceIncreasePercentage.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
this.PriceIncreasePercentage.DataPropertyName = "PriceIncreasePercentage";
this.PriceIncreasePercentage.HeaderText = "Price Increase %";
this.PriceIncreasePercentage.Name = "PriceIncreasePercentage";
this.PriceIncreasePercentage.ReadOnly = true;
this.PriceIncreasePercentage.Width = 110;
//
// PriceIncreaseForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(884, 562);
this.Controls.Add(this.ApplyButton);
this.Controls.Add(this.CustomerPricingPercentageGrid);
this.Name = "PriceIncreaseForm";
this.Text = "Price Increase Facility";
this.Load += new System.EventHandler(this.PriceIncreaseForm_Load);
((System.ComponentModel.ISupportInitialize)(this.CustomerPricingPercentageGrid)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.CustomerSource)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView CustomerPricingPercentageGrid;
private System.Windows.Forms.Button ApplyButton;
private System.Windows.Forms.BindingSource CustomerSource;
private System.Windows.Forms.DataGridViewTextBoxColumn Customer;
private System.Windows.Forms.DataGridViewTextBoxColumn StainExpressPercentage;
private System.Windows.Forms.DataGridViewTextBoxColumn PriceIncreasePercentage;
}
}