SellForm.Designer.cs
资源名称:BookStore.rar [点击查看]
上传用户:xyl529207
上传日期:2022-08-03
资源大小:935k
文件大小:19k
源码类别:
行业应用
开发平台:
SQL
- namespace BookStoreMan
- {
- partial class SellForm
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SellForm));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- this.panel1 = new System.Windows.Forms.Panel();
- this.nudNumber = new System.Windows.Forms.NumericUpDown();
- this.label3 = new System.Windows.Forms.Label();
- this.nudDiscount = new System.Windows.Forms.NumericUpDown();
- this.cmbCustomerID = new System.Windows.Forms.ComboBox();
- this.btnSel = new System.Windows.Forms.Button();
- this.btnOK = new System.Windows.Forms.Button();
- this.btnReset = new System.Windows.Forms.Button();
- this.btnAdd = new System.Windows.Forms.Button();
- this.label2 = new System.Windows.Forms.Label();
- this.cmbBookBarcode = new System.Windows.Forms.ComboBox();
- this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.label1 = new System.Windows.Forms.Label();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.printDocument1 = new System.Drawing.Printing.PrintDocument();
- this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
- this.dgvSellDetail = new System.Windows.Forms.DataGridView();
- this.bookStoreDataSet1 = new BookStoreMan.BookStoreDataSet();
- this.iSBNDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.priceDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.numberDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.discountDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.sumDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.panel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.nudNumber)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.nudDiscount)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dgvSellDetail)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.bookStoreDataSet1)).BeginInit();
- this.SuspendLayout();
- //
- // panel1
- //
- this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel1.Controls.Add(this.nudNumber);
- this.panel1.Controls.Add(this.label3);
- this.panel1.Controls.Add(this.nudDiscount);
- this.panel1.Controls.Add(this.cmbCustomerID);
- this.panel1.Controls.Add(this.btnSel);
- this.panel1.Controls.Add(this.btnOK);
- this.panel1.Controls.Add(this.btnReset);
- this.panel1.Controls.Add(this.btnAdd);
- this.panel1.Controls.Add(this.label2);
- this.panel1.Controls.Add(this.cmbBookBarcode);
- this.panel1.Controls.Add(this.checkBox1);
- this.panel1.Controls.Add(this.label1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(472, 75);
- this.panel1.TabIndex = 0;
- //
- // nudNumber
- //
- this.nudNumber.Location = new System.Drawing.Point(220, 39);
- this.nudNumber.Maximum = new decimal(new int[] {
- 9999,
- 0,
- 0,
- 0});
- this.nudNumber.Minimum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.nudNumber.Name = "nudNumber";
- this.nudNumber.Size = new System.Drawing.Size(45, 21);
- this.nudNumber.TabIndex = 13;
- this.nudNumber.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(275, 42);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(35, 12);
- this.label3.TabIndex = 12;
- this.label3.Text = "折扣:";
- //
- // nudDiscount
- //
- this.nudDiscount.DecimalPlaces = 2;
- this.nudDiscount.Increment = new decimal(new int[] {
- 1,
- 0,
- 0,
- 131072});
- this.nudDiscount.Location = new System.Drawing.Point(315, 39);
- this.nudDiscount.Maximum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.nudDiscount.Name = "nudDiscount";
- this.nudDiscount.Size = new System.Drawing.Size(53, 21);
- this.nudDiscount.TabIndex = 11;
- this.nudDiscount.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- //
- // cmbCustomerID
- //
- this.cmbCustomerID.Enabled = false;
- this.cmbCustomerID.FormattingEnabled = true;
- this.cmbCustomerID.Location = new System.Drawing.Point(80, 9);
- this.cmbCustomerID.Name = "cmbCustomerID";
- this.cmbCustomerID.Size = new System.Drawing.Size(90, 20);
- this.cmbCustomerID.TabIndex = 10;
- //
- // btnSel
- //
- this.btnSel.Enabled = false;
- this.btnSel.Location = new System.Drawing.Point(182, 7);
- this.btnSel.Name = "btnSel";
- this.btnSel.Size = new System.Drawing.Size(45, 23);
- this.btnSel.TabIndex = 9;
- this.btnSel.Text = "确认";
- this.btnSel.UseVisualStyleBackColor = true;
- this.btnSel.Click += new System.EventHandler(this.btnSel_Click);
- //
- // btnOK
- //
- this.btnOK.Image = ((System.Drawing.Image)(resources.GetObject("btnOK.Image")));
- this.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.btnOK.Location = new System.Drawing.Point(392, 7);
- this.btnOK.Name = "btnOK";
- this.btnOK.Size = new System.Drawing.Size(75, 23);
- this.btnOK.TabIndex = 8;
- this.btnOK.Text = "完成";
- this.btnOK.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.btnOK.UseVisualStyleBackColor = true;
- this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
- //
- // btnReset
- //
- this.btnReset.Location = new System.Drawing.Point(422, 37);
- this.btnReset.Name = "btnReset";
- this.btnReset.Size = new System.Drawing.Size(45, 23);
- this.btnReset.TabIndex = 7;
- this.btnReset.Text = "重置";
- this.btnReset.UseVisualStyleBackColor = true;
- this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
- //
- // btnAdd
- //
- this.btnAdd.Location = new System.Drawing.Point(372, 37);
- this.btnAdd.Name = "btnAdd";
- this.btnAdd.Size = new System.Drawing.Size(45, 23);
- this.btnAdd.TabIndex = 6;
- this.btnAdd.Text = "加入";
- this.btnAdd.UseVisualStyleBackColor = true;
- this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(180, 42);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(35, 12);
- this.label2.TabIndex = 4;
- this.label2.Text = "数量:";
- //
- // cmbBookBarcode
- //
- this.cmbBookBarcode.FormattingEnabled = true;
- this.cmbBookBarcode.Location = new System.Drawing.Point(70, 39);
- this.cmbBookBarcode.MaxLength = 13;
- this.cmbBookBarcode.Name = "cmbBookBarcode";
- this.cmbBookBarcode.Size = new System.Drawing.Size(100, 20);
- this.cmbBookBarcode.TabIndex = 3;
- //
- // checkBox1
- //
- this.checkBox1.AutoSize = true;
- this.checkBox1.Location = new System.Drawing.Point(10, 11);
- this.checkBox1.Name = "checkBox1";
- this.checkBox1.Size = new System.Drawing.Size(66, 16);
- this.checkBox1.TabIndex = 2;
- this.checkBox1.Text = "会员号:";
- this.checkBox1.UseVisualStyleBackColor = true;
- this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(10, 42);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(59, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "图书条码:";
- //
- // statusStrip1
- //
- this.statusStrip1.Location = new System.Drawing.Point(0, 311);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(472, 22);
- this.statusStrip1.TabIndex = 1;
- this.statusStrip1.Text = "statusStrip1";
- //
- // printDocument1
- //
- this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
- //
- // printPreviewDialog1
- //
- this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
- this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
- this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
- this.printPreviewDialog1.Document = this.printDocument1;
- this.printPreviewDialog1.Enabled = true;
- this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
- this.printPreviewDialog1.Name = "printPreviewDialog1";
- this.printPreviewDialog1.Visible = false;
- //
- // dgvSellDetail
- //
- this.dgvSellDetail.AutoGenerateColumns = false;
- this.dgvSellDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.iSBNDataGridViewTextBoxColumn,
- this.nameDataGridViewTextBoxColumn,
- this.priceDataGridViewTextBoxColumn,
- this.numberDataGridViewTextBoxColumn,
- this.discountDataGridViewTextBoxColumn,
- this.sumDataGridViewTextBoxColumn});
- this.dgvSellDetail.DataMember = "P_GetSellDetail";
- this.dgvSellDetail.DataSource = this.bookStoreDataSet1;
- this.dgvSellDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvSellDetail.Location = new System.Drawing.Point(0, 75);
- this.dgvSellDetail.Name = "dgvSellDetail";
- this.dgvSellDetail.ReadOnly = true;
- this.dgvSellDetail.RowHeadersWidth = 30;
- this.dgvSellDetail.RowTemplate.Height = 23;
- this.dgvSellDetail.Size = new System.Drawing.Size(472, 236);
- this.dgvSellDetail.TabIndex = 2;
- //
- // bookStoreDataSet1
- //
- this.bookStoreDataSet1.DataSetName = "BookStoreDataSet";
- this.bookStoreDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
- //
- // iSBNDataGridViewTextBoxColumn
- //
- this.iSBNDataGridViewTextBoxColumn.DataPropertyName = "ISBN";
- this.iSBNDataGridViewTextBoxColumn.HeaderText = "ISBN";
- this.iSBNDataGridViewTextBoxColumn.Name = "iSBNDataGridViewTextBoxColumn";
- this.iSBNDataGridViewTextBoxColumn.ReadOnly = true;
- this.iSBNDataGridViewTextBoxColumn.Width = 75;
- //
- // nameDataGridViewTextBoxColumn
- //
- this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name";
- this.nameDataGridViewTextBoxColumn.HeaderText = "书名";
- this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
- this.nameDataGridViewTextBoxColumn.ReadOnly = true;
- this.nameDataGridViewTextBoxColumn.Width = 150;
- //
- // priceDataGridViewTextBoxColumn
- //
- this.priceDataGridViewTextBoxColumn.DataPropertyName = "Price";
- dataGridViewCellStyle1.Format = "N2";
- dataGridViewCellStyle1.NullValue = null;
- this.priceDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
- this.priceDataGridViewTextBoxColumn.HeaderText = "定价";
- this.priceDataGridViewTextBoxColumn.Name = "priceDataGridViewTextBoxColumn";
- this.priceDataGridViewTextBoxColumn.ReadOnly = true;
- this.priceDataGridViewTextBoxColumn.Width = 50;
- //
- // numberDataGridViewTextBoxColumn
- //
- this.numberDataGridViewTextBoxColumn.DataPropertyName = "Number";
- this.numberDataGridViewTextBoxColumn.HeaderText = "数量";
- this.numberDataGridViewTextBoxColumn.Name = "numberDataGridViewTextBoxColumn";
- this.numberDataGridViewTextBoxColumn.ReadOnly = true;
- this.numberDataGridViewTextBoxColumn.Width = 45;
- //
- // discountDataGridViewTextBoxColumn
- //
- this.discountDataGridViewTextBoxColumn.DataPropertyName = "Discount";
- this.discountDataGridViewTextBoxColumn.HeaderText = "折扣";
- this.discountDataGridViewTextBoxColumn.Name = "discountDataGridViewTextBoxColumn";
- this.discountDataGridViewTextBoxColumn.ReadOnly = true;
- this.discountDataGridViewTextBoxColumn.Width = 45;
- //
- // sumDataGridViewTextBoxColumn
- //
- this.sumDataGridViewTextBoxColumn.DataPropertyName = "Sum";
- dataGridViewCellStyle2.Format = "C2";
- dataGridViewCellStyle2.NullValue = null;
- this.sumDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle2;
- this.sumDataGridViewTextBoxColumn.HeaderText = "金额";
- this.sumDataGridViewTextBoxColumn.Name = "sumDataGridViewTextBoxColumn";
- this.sumDataGridViewTextBoxColumn.ReadOnly = true;
- this.sumDataGridViewTextBoxColumn.Width = 75;
- //
- // SellForm
- //
- this.AcceptButton = this.btnAdd;
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(472, 333);
- this.Controls.Add(this.dgvSellDetail);
- this.Controls.Add(this.statusStrip1);
- this.Controls.Add(this.panel1);
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Name = "SellForm";
- this.Text = "收银台";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SellForm_FormClosing);
- this.Load += new System.EventHandler(this.SellForm_Load);
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.nudNumber)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.nudDiscount)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dgvSellDetail)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.bookStoreDataSet1)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.CheckBox checkBox1;
- private System.Windows.Forms.ComboBox cmbCustomerID;
- private System.Windows.Forms.ComboBox cmbBookBarcode;
- private System.Windows.Forms.Button btnAdd;
- private System.Windows.Forms.Button btnOK;
- private System.Windows.Forms.Button btnReset;
- private System.Windows.Forms.StatusStrip statusStrip1;
- private System.Windows.Forms.DataGridView dgvSellDetail;
- private BookStoreDataSet bookStoreDataSet1;
- private System.Windows.Forms.Button btnSel;
- private System.Windows.Forms.NumericUpDown nudDiscount;
- private System.Windows.Forms.NumericUpDown nudNumber;
- private System.Windows.Forms.Label label3;
- private System.Drawing.Printing.PrintDocument printDocument1;
- private System.Windows.Forms.PrintPreviewDialog printPreviewDialog1;
- private System.Windows.Forms.DataGridViewTextBoxColumn iSBNDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn priceDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn numberDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn discountDataGridViewTextBoxColumn;
- private System.Windows.Forms.DataGridViewTextBoxColumn sumDataGridViewTextBoxColumn;
- }
- }