Exemplo n.º 1
0
        /// <summary>
        /// Append a boolean column to a DataGrid table style
        /// </summary>
        /// <param name="tableStyle"></param>
        /// <param name="mappingName"></param>
        /// <param name="headerText">User-friendly column name</param>
        /// <param name="columnWidth"></param>
        /// <param name="isReadOnly"></param>
        /// <param name="sourceIsTrueFalse">
        /// True if the source data represents true and false using a bool.
        /// False if the source data represents true and false using 1 and 0.
        /// </param>
        public static void AppendBoolColumnToTableStyle(
            System.Windows.Forms.DataGridTableStyle tableStyle,
            string mappingName,
            string headerText,
            int columnWidth        = 75,
            bool isReadOnly        = false,
            bool sourceIsTrueFalse = true)
        {
            var newColumn = new System.Windows.Forms.DataGridBoolColumn
            {
                MappingName = mappingName,
                HeaderText  = headerText,
                Width       = columnWidth,
                ReadOnly    = isReadOnly
            };

            if (sourceIsTrueFalse)
            {
                newColumn.FalseValue = false;
                newColumn.TrueValue  = true;
            }
            else
            {
                newColumn.FalseValue = 0;
                newColumn.TrueValue  = 1;
            }

            newColumn.AllowNull = false;
            newColumn.NullValue = Convert.DBNull;

            tableStyle.GridColumnStyles.Add(newColumn);
        }
Exemplo n.º 2
0
        internal System.Windows.Forms.DataGridColumnStyle dtgdcsColuna(clsColuna cls_col_Coluna)
        {
            System.Windows.Forms.DataGridColumnStyle dtgdcsRetorno = null;

            // Column Style
            if (cls_col_Coluna != null)
            {
                switch (cls_col_Coluna.ColumnStyle)
                {
                case clsManipuladorColunas.DataGridColumnStyle.TextColumn:
                    dtgdcsRetorno = new System.Windows.Forms.DataGridTextBoxColumn();
                    switch (cls_col_Coluna.Alinhamento)
                    {
                    case mdlProdutosLancamento.AlinhamentoHorizontal.esquerda:
                        dtgdcsRetorno.Alignment = System.Windows.Forms.HorizontalAlignment.Left;
                        ((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
                        break;

                    case mdlProdutosLancamento.AlinhamentoHorizontal.direita:
                        dtgdcsRetorno.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
                        ((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).TextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
                        if (cls_col_Coluna.IsNumeric)
                        {
                            //									System.Globalization.CultureInfo ciBrasil = new System.Globalization.CultureInfo("pt-BR");
                            //									//((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).FormatInfo = ciBrasil;
                            //									((System.Windows.Forms.DataGridTextBoxColumn)dtgdcsRetorno).Format = "{0:#,##0.00}";
                        }
                        break;
                    }
                    break;

                case clsManipuladorColunas.DataGridColumnStyle.BoolColumn:
                    dtgdcsRetorno = new System.Windows.Forms.DataGridBoolColumn();
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).AllowNull  = false;
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).TrueValue  = true;
                    ((System.Windows.Forms.DataGridBoolColumn)dtgdcsRetorno).FalseValue = false;
                    break;
                }
                dtgdcsRetorno.HeaderText  = cls_col_Coluna.Nome;
                dtgdcsRetorno.MappingName = cls_col_Coluna.Nome;
                dtgdcsRetorno.NullText    = "";
                dtgdcsRetorno.ReadOnly    = cls_col_Coluna.ReadOnly;
                dtgdcsRetorno.Width       = cls_col_Coluna.Tamanho;
                if (cls_col_Coluna.Inutilizada || cls_col_Coluna.Sistema)
                {
                    dtgdcsRetorno.Width = 0;
                }
            }
            return(dtgdcsRetorno);
        }
Exemplo n.º 3
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     base.Load += new System.EventHandler(Form1_Load);
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.TabControl1 = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.Button13 = new System.Windows.Forms.Button();
     this.Button13.Click += new System.EventHandler(this.Button13_Click);
     this.ImageList1 = new System.Windows.Forms.ImageList(this.components);
     this.Button14 = new System.Windows.Forms.Button();
     this.Button14.Click += new System.EventHandler(this.Button14_Click);
     this.Panel10 = new System.Windows.Forms.Panel();
     this.Button2 = new System.Windows.Forms.Button();
     this.Button2.Click += new System.EventHandler(this.Button2_Click);
     this.Button1 = new System.Windows.Forms.Button();
     this.Button1.Click += new System.EventHandler(this.Button1_Click);
     this.Panel4 = new System.Windows.Forms.Panel();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.Button12 = new System.Windows.Forms.Button();
     this.Button12.Click += new System.EventHandler(this.Button12_Click);
     this.Button11 = new System.Windows.Forms.Button();
     this.Button11.Click += new System.EventHandler(this.Button11_Click);
     this.Panel9 = new System.Windows.Forms.Panel();
     this.Button10 = new System.Windows.Forms.Button();
     this.Button10.Click += new System.EventHandler(this.Button10_Click);
     this.Button9 = new System.Windows.Forms.Button();
     this.Button9.Click += new System.EventHandler(this.Button9_Click);
     this.Panel8 = new System.Windows.Forms.Panel();
     this.Button8 = new System.Windows.Forms.Button();
     this.Button8.Click += new System.EventHandler(this.Button8_Click);
     this.Button7 = new System.Windows.Forms.Button();
     this.Button7.Click += new System.EventHandler(this.Button7_Click);
     this.Panel7 = new System.Windows.Forms.Panel();
     this.Button6 = new System.Windows.Forms.Button();
     this.Button6.Click += new System.EventHandler(this.Button6_Click);
     this.Button5 = new System.Windows.Forms.Button();
     this.Button5.Click += new System.EventHandler(this.Button5_Click);
     this.Button4 = new System.Windows.Forms.Button();
     this.Button4.Click += new System.EventHandler(this.Button4_Click);
     this.Button3 = new System.Windows.Forms.Button();
     this.Button3.Click += new System.EventHandler(this.Button3_Click);
     this.Panel6 = new System.Windows.Forms.Panel();
     this.Panel5 = new System.Windows.Forms.Panel();
     this.Panel1 = new System.Windows.Forms.Panel();
     this.Panel2 = new System.Windows.Forms.Panel();
     this.Button15 = new System.Windows.Forms.Button();
     this.Button15.Click += new System.EventHandler(this.Button15_Click);
     this.numOpenPsn = new System.Windows.Forms.TextBox();
     this.numOpenPsn.TextChanged += new System.EventHandler(this.numOpenPsn_TextChanged);
     this.numOpenPsn.Enter += new System.EventHandler(this.numOpenPsn_Enter);
     this.numOpenPsn.Click += new System.EventHandler(this.numOpenPsn_Click);
     this.numOpenPsn.Leave += new System.EventHandler(this.numOpenPsn_Leave);
     this.Label2 = new System.Windows.Forms.Label();
     this.Panel3 = new System.Windows.Forms.Panel();
     this.Label1 = new System.Windows.Forms.Label();
     this.lblBillno = new System.Windows.Forms.Label();
     this.lblOpenpsn = new System.Windows.Forms.Label();
     this.lblTableno = new System.Windows.Forms.Label();
     this.lblOpenDate = new System.Windows.Forms.Label();
     this.btnNext = new System.Windows.Forms.Button();
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     this.btnPrior = new System.Windows.Forms.Button();
     this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
     this.lblBillTypeName = new System.Windows.Forms.Label();
     this.dgSaleFoods = new System.Windows.Forms.DataGrid();
     this.DataGridTableStyle4 = new System.Windows.Forms.DataGridTableStyle();
     this.DataGridTextBoxColumn13 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn14 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn15 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn16 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn17 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridBoolColumn2 = new System.Windows.Forms.DataGridBoolColumn();
     this.DataGridTextBoxColumn18 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn19 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.DataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn();
     this.LinkLabel1 = new System.Windows.Forms.LinkLabel();
     this.LinkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel1_LinkClicked);
     this.ToolBar1 = new System.Windows.Forms.ToolBar();
     this.ToolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.ToolBar1_ButtonClick);
     this.ToolBarButton1 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton2 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton13 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton4 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton15 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton20 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton6 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton7 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton3 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton8 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton12 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton18 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton9 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton10 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton11 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton21 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton5 = new System.Windows.Forms.ToolBarButton();
     this.ToolBarButton22 = new System.Windows.Forms.ToolBarButton();
     this.ImageList2 = new System.Windows.Forms.ImageList(this.components);
     this.txtFoodCode = new System.Windows.Forms.TextBox();
     this.txtFoodCode.TextChanged += new System.EventHandler(this.txtFoodCode_TextChanged);
     this.txtFoodCode.Leave += new System.EventHandler(this.txtFoodCode_Leave);
     this.txtFoodCode.Enter += new System.EventHandler(this.txtFoodCode_Enter);
     this.txtFoodCode.Click += new System.EventHandler(this.txtFoodCode_Click);
     this.pnlInput = new System.Windows.Forms.Panel();
     this.bHide = new System.Windows.Forms.Button();
     this.bHide.Click += new System.EventHandler(this.bHide_Click);
     this.bDot = new System.Windows.Forms.Button();
     this.bDot.Click += new System.EventHandler(this.bDot_Click);
     this.bCaps = new System.Windows.Forms.Button();
     this.bCaps.Click += new System.EventHandler(this.bCaps_Click);
     this.bSpc = new System.Windows.Forms.Button();
     this.bSpc.Click += new System.EventHandler(this.bSpc_Click);
     this.bM = new System.Windows.Forms.Button();
     this.bM.Click += new System.EventHandler(this.bM_Click);
     this.bN = new System.Windows.Forms.Button();
     this.bN.Click += new System.EventHandler(this.bN_Click);
     this.bB = new System.Windows.Forms.Button();
     this.bB.Click += new System.EventHandler(this.bB_Click);
     this.bV = new System.Windows.Forms.Button();
     this.bV.Click += new System.EventHandler(this.bV_Click);
     this.bC = new System.Windows.Forms.Button();
     this.bC.Click += new System.EventHandler(this.bC_Click);
     this.bX = new System.Windows.Forms.Button();
     this.bX.Click += new System.EventHandler(this.bX_Click);
     this.bZ = new System.Windows.Forms.Button();
     this.bZ.Click += new System.EventHandler(this.bZ_Click);
     this.bL = new System.Windows.Forms.Button();
     this.bL.Click += new System.EventHandler(this.bL_Click);
     this.bK = new System.Windows.Forms.Button();
     this.bK.Click += new System.EventHandler(this.bK_Click);
     this.bJ = new System.Windows.Forms.Button();
     this.bJ.Click += new System.EventHandler(this.bJ_Click);
     this.bH = new System.Windows.Forms.Button();
     this.bH.Click += new System.EventHandler(this.bH_Click);
     this.bG = new System.Windows.Forms.Button();
     this.bG.Click += new System.EventHandler(this.bG_Click);
     this.bF = new System.Windows.Forms.Button();
     this.bF.Click += new System.EventHandler(this.bF_Click);
     this.bD = new System.Windows.Forms.Button();
     this.bD.Click += new System.EventHandler(this.bD_Click);
     this.bS = new System.Windows.Forms.Button();
     this.bS.Click += new System.EventHandler(this.bS_Click);
     this.bA = new System.Windows.Forms.Button();
     this.bA.Click += new System.EventHandler(this.bA_Click);
     this.bBack = new System.Windows.Forms.Button();
     this.bBack.Click += new System.EventHandler(this.bBack_Click);
     this.bP = new System.Windows.Forms.Button();
     this.bP.Click += new System.EventHandler(this.bP_Click);
     this.bO = new System.Windows.Forms.Button();
     this.bO.Click += new System.EventHandler(this.bO_Click);
     this.bI = new System.Windows.Forms.Button();
     this.bI.Click += new System.EventHandler(this.bI_Click);
     this.bU = new System.Windows.Forms.Button();
     this.bU.Click += new System.EventHandler(this.bU_Click);
     this.bY = new System.Windows.Forms.Button();
     this.bY.Click += new System.EventHandler(this.bY_Click);
     this.bT = new System.Windows.Forms.Button();
     this.bT.Click += new System.EventHandler(this.bT_Click);
     this.bR = new System.Windows.Forms.Button();
     this.bR.Click += new System.EventHandler(this.bR_Click);
     this.bE = new System.Windows.Forms.Button();
     this.bE.Click += new System.EventHandler(this.bE_Click);
     this.bW = new System.Windows.Forms.Button();
     this.bW.Click += new System.EventHandler(this.bW_Click);
     this.bQ = new System.Windows.Forms.Button();
     this.bQ.Click += new System.EventHandler(this.bQ_Click);
     this.b0 = new System.Windows.Forms.Button();
     this.b0.Click += new System.EventHandler(this.b0_Click);
     this.b9 = new System.Windows.Forms.Button();
     this.b9.Click += new System.EventHandler(this.b9_Click);
     this.b8 = new System.Windows.Forms.Button();
     this.b8.Click += new System.EventHandler(this.b8_Click);
     this.b7 = new System.Windows.Forms.Button();
     this.b7.Click += new System.EventHandler(this.b7_Click);
     this.b6 = new System.Windows.Forms.Button();
     this.b6.Click += new System.EventHandler(this.b6_Click);
     this.b5 = new System.Windows.Forms.Button();
     this.b5.Click += new System.EventHandler(this.b5_Click);
     this.b4 = new System.Windows.Forms.Button();
     this.b4.Click += new System.EventHandler(this.b4_Click);
     this.b3 = new System.Windows.Forms.Button();
     this.b3.Click += new System.EventHandler(this.b3_Click);
     this.b2 = new System.Windows.Forms.Button();
     this.b2.Click += new System.EventHandler(this.b2_Click);
     this.b1 = new System.Windows.Forms.Button();
     this.b1.Click += new System.EventHandler(this.b1_Click);
     this.Timer1 = new System.Timers.Timer();
     this.Timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.Timer1_Elapsed);
     this.TabControl1.SuspendLayout();
     this.TabPage1.SuspendLayout();
     this.TabPage2.SuspendLayout();
     this.Panel1.SuspendLayout();
     this.Panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.dgSaleFoods).BeginInit();
     this.pnlInput.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.Timer1).BeginInit();
     this.SuspendLayout();
     //
     //TabControl1
     //
     this.TabControl1.Alignment = System.Windows.Forms.TabAlignment.Bottom;
     this.TabControl1.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.TabControl1.Controls.Add(this.TabPage1);
     this.TabControl1.Controls.Add(this.TabPage2);
     this.TabControl1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.TabControl1.ItemSize = new System.Drawing.Size(0, 40);
     this.TabControl1.Location = new System.Drawing.Point(8, 7);
     this.TabControl1.Name = "TabControl1";
     this.TabControl1.SelectedIndex = 0;
     this.TabControl1.Size = new System.Drawing.Size(904, 585);
     this.TabControl1.TabIndex = 2;
     //
     //TabPage1
     //
     this.TabPage1.Controls.Add(this.Button13);
     this.TabPage1.Controls.Add(this.Button14);
     this.TabPage1.Controls.Add(this.Panel10);
     this.TabPage1.Controls.Add(this.Button2);
     this.TabPage1.Controls.Add(this.Button1);
     this.TabPage1.Controls.Add(this.Panel4);
     this.TabPage1.Location = new System.Drawing.Point(4, 4);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Size = new System.Drawing.Size(896, 537);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = " 桌台状态 ";
     //
     //Button13
     //
     this.Button13.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button13.BackColor = System.Drawing.Color.Lavender;
     this.Button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button13.ImageIndex = 5;
     this.Button13.ImageList = this.ImageList1;
     this.Button13.Location = new System.Drawing.Point(772, 480);
     this.Button13.Name = "Button13";
     this.Button13.Size = new System.Drawing.Size(116, 40);
     this.Button13.TabIndex = 9;
     //
     //ImageList1
     //
     this.ImageList1.ImageSize = new System.Drawing.Size(32, 32);
     this.ImageList1.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("ImageList1.ImageStream"));
     this.ImageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     //Button14
     //
     this.Button14.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button14.BackColor = System.Drawing.Color.Lavender;
     this.Button14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button14.ImageIndex = 4;
     this.Button14.ImageList = this.ImageList1;
     this.Button14.Location = new System.Drawing.Point(656, 480);
     this.Button14.Name = "Button14";
     this.Button14.Size = new System.Drawing.Size(116, 40);
     this.Button14.TabIndex = 8;
     //
     //Panel10
     //
     this.Panel10.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.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel10.Location = new System.Drawing.Point(248, 8);
     this.Panel10.Name = "Panel10";
     this.Panel10.Size = new System.Drawing.Size(640, 472);
     this.Panel10.TabIndex = 7;
     //
     //Button2
     //
     this.Button2.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button2.BackColor = System.Drawing.Color.Lavender;
     this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button2.ImageIndex = 5;
     this.Button2.ImageList = this.ImageList1;
     this.Button2.Location = new System.Drawing.Point(124, 481);
     this.Button2.Name = "Button2";
     this.Button2.Size = new System.Drawing.Size(116, 40);
     this.Button2.TabIndex = 6;
     //
     //Button1
     //
     this.Button1.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button1.BackColor = System.Drawing.Color.Lavender;
     this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button1.ImageIndex = 4;
     this.Button1.ImageList = this.ImageList1;
     this.Button1.Location = new System.Drawing.Point(8, 481);
     this.Button1.Name = "Button1";
     this.Button1.Size = new System.Drawing.Size(116, 40);
     this.Button1.TabIndex = 5;
     //
     //Panel4
     //
     this.Panel4.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left);
     this.Panel4.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel4.Location = new System.Drawing.Point(8, 8);
     this.Panel4.Name = "Panel4";
     this.Panel4.Size = new System.Drawing.Size(232, 473);
     this.Panel4.TabIndex = 4;
     //
     //TabPage2
     //
     this.TabPage2.Controls.Add(this.Button12);
     this.TabPage2.Controls.Add(this.Button11);
     this.TabPage2.Controls.Add(this.Panel9);
     this.TabPage2.Controls.Add(this.Button10);
     this.TabPage2.Controls.Add(this.Button9);
     this.TabPage2.Controls.Add(this.Panel8);
     this.TabPage2.Controls.Add(this.Button8);
     this.TabPage2.Controls.Add(this.Button7);
     this.TabPage2.Controls.Add(this.Panel7);
     this.TabPage2.Controls.Add(this.Button6);
     this.TabPage2.Controls.Add(this.Button5);
     this.TabPage2.Controls.Add(this.Button4);
     this.TabPage2.Controls.Add(this.Button3);
     this.TabPage2.Controls.Add(this.Panel6);
     this.TabPage2.Controls.Add(this.Panel5);
     this.TabPage2.Controls.Add(this.Panel1);
     this.TabPage2.Controls.Add(this.LinkLabel1);
     this.TabPage2.Controls.Add(this.ToolBar1);
     this.TabPage2.Controls.Add(this.txtFoodCode);
     this.TabPage2.Location = new System.Drawing.Point(4, 4);
     this.TabPage2.Name = "TabPage2";
     this.TabPage2.Size = new System.Drawing.Size(896, 537);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = " 单据输入 ";
     this.TabPage2.Visible = false;
     //
     //Button12
     //
     this.Button12.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button12.BackColor = System.Drawing.Color.Lavender;
     this.Button12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button12.ImageIndex = 5;
     this.Button12.ImageList = this.ImageList1;
     this.Button12.Location = new System.Drawing.Point(768, 200);
     this.Button12.Name = "Button12";
     this.Button12.Size = new System.Drawing.Size(120, 40);
     this.Button12.TabIndex = 47;
     //
     //Button11
     //
     this.Button11.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button11.BackColor = System.Drawing.Color.Lavender;
     this.Button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button11.ImageIndex = 4;
     this.Button11.ImageList = this.ImageList1;
     this.Button11.Location = new System.Drawing.Point(648, 200);
     this.Button11.Name = "Button11";
     this.Button11.Size = new System.Drawing.Size(120, 40);
     this.Button11.TabIndex = 46;
     //
     //Panel9
     //
     this.Panel9.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Panel9.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel9.Location = new System.Drawing.Point(648, 96);
     this.Panel9.Name = "Panel9";
     this.Panel9.Size = new System.Drawing.Size(240, 104);
     this.Panel9.TabIndex = 45;
     //
     //Button10
     //
     this.Button10.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button10.BackColor = System.Drawing.Color.Lavender;
     this.Button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button10.ImageIndex = 5;
     this.Button10.ImageList = this.ImageList1;
     this.Button10.Location = new System.Drawing.Point(768, 489);
     this.Button10.Name = "Button10";
     this.Button10.Size = new System.Drawing.Size(120, 40);
     this.Button10.TabIndex = 44;
     //
     //Button9
     //
     this.Button9.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.Button9.BackColor = System.Drawing.Color.Lavender;
     this.Button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button9.ImageIndex = 4;
     this.Button9.ImageList = this.ImageList1;
     this.Button9.Location = new System.Drawing.Point(648, 489);
     this.Button9.Name = "Button9";
     this.Button9.Size = new System.Drawing.Size(120, 40);
     this.Button9.TabIndex = 43;
     //
     //Panel8
     //
     this.Panel8.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel8.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel8.Location = new System.Drawing.Point(648, 416);
     this.Panel8.Name = "Panel8";
     this.Panel8.Size = new System.Drawing.Size(240, 73);
     this.Panel8.TabIndex = 42;
     //
     //Button8
     //
     this.Button8.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button8.BackColor = System.Drawing.Color.Lavender;
     this.Button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button8.ImageIndex = 5;
     this.Button8.ImageList = this.ImageList1;
     this.Button8.Location = new System.Drawing.Point(768, 376);
     this.Button8.Name = "Button8";
     this.Button8.Size = new System.Drawing.Size(120, 40);
     this.Button8.TabIndex = 40;
     //
     //Button7
     //
     this.Button7.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button7.BackColor = System.Drawing.Color.Lavender;
     this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button7.ImageIndex = 4;
     this.Button7.ImageList = this.ImageList1;
     this.Button7.Location = new System.Drawing.Point(648, 376);
     this.Button7.Name = "Button7";
     this.Button7.Size = new System.Drawing.Size(120, 40);
     this.Button7.TabIndex = 39;
     //
     //Panel7
     //
     this.Panel7.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Panel7.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel7.Location = new System.Drawing.Point(648, 240);
     this.Panel7.Name = "Panel7";
     this.Panel7.Size = new System.Drawing.Size(240, 136);
     this.Panel7.TabIndex = 38;
     //
     //Button6
     //
     this.Button6.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button6.BackColor = System.Drawing.Color.Lavender;
     this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button6.ImageIndex = 5;
     this.Button6.ImageList = this.ImageList1;
     this.Button6.Location = new System.Drawing.Point(116, 489);
     this.Button6.Name = "Button6";
     this.Button6.Size = new System.Drawing.Size(108, 40);
     this.Button6.TabIndex = 36;
     //
     //Button5
     //
     this.Button5.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
     this.Button5.BackColor = System.Drawing.Color.Lavender;
     this.Button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button5.ImageIndex = 4;
     this.Button5.ImageList = this.ImageList1;
     this.Button5.Location = new System.Drawing.Point(8, 489);
     this.Button5.Name = "Button5";
     this.Button5.Size = new System.Drawing.Size(108, 40);
     this.Button5.TabIndex = 35;
     //
     //Button4
     //
     this.Button4.BackColor = System.Drawing.Color.Lavender;
     this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button4.ImageIndex = 5;
     this.Button4.ImageList = this.ImageList1;
     this.Button4.Location = new System.Drawing.Point(116, 232);
     this.Button4.Name = "Button4";
     this.Button4.Size = new System.Drawing.Size(108, 40);
     this.Button4.TabIndex = 34;
     //
     //Button3
     //
     this.Button3.BackColor = System.Drawing.Color.Lavender;
     this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.Button3.ImageIndex = 4;
     this.Button3.ImageList = this.ImageList1;
     this.Button3.Location = new System.Drawing.Point(8, 232);
     this.Button3.Name = "Button3";
     this.Button3.Size = new System.Drawing.Size(108, 40);
     this.Button3.TabIndex = 33;
     //
     //Panel6
     //
     this.Panel6.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left);
     this.Panel6.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel6.Location = new System.Drawing.Point(8, 280);
     this.Panel6.Name = "Panel6";
     this.Panel6.Size = new System.Drawing.Size(216, 209);
     this.Panel6.TabIndex = 32;
     //
     //Panel5
     //
     this.Panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel5.Location = new System.Drawing.Point(8, 72);
     this.Panel5.Name = "Panel5";
     this.Panel5.Size = new System.Drawing.Size(216, 160);
     this.Panel5.TabIndex = 31;
     //
     //Panel1
     //
     this.Panel1.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.Panel1.Controls.Add(this.Panel2);
     this.Panel1.Controls.Add(this.btnNext);
     this.Panel1.Controls.Add(this.btnPrior);
     this.Panel1.Controls.Add(this.lblBillTypeName);
     this.Panel1.Controls.Add(this.dgSaleFoods);
     this.Panel1.Location = new System.Drawing.Point(224, 72);
     this.Panel1.Name = "Panel1";
     this.Panel1.Size = new System.Drawing.Size(424, 465);
     this.Panel1.TabIndex = 25;
     //
     //Panel2
     //
     this.Panel2.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Panel2.Controls.Add(this.Button15);
     this.Panel2.Controls.Add(this.numOpenPsn);
     this.Panel2.Controls.Add(this.Label2);
     this.Panel2.Controls.Add(this.Panel3);
     this.Panel2.Controls.Add(this.Label1);
     this.Panel2.Controls.Add(this.lblBillno);
     this.Panel2.Controls.Add(this.lblOpenpsn);
     this.Panel2.Controls.Add(this.lblTableno);
     this.Panel2.Controls.Add(this.lblOpenDate);
     this.Panel2.Location = new System.Drawing.Point(8, 72);
     this.Panel2.Name = "Panel2";
     this.Panel2.Size = new System.Drawing.Size(408, 128);
     this.Panel2.TabIndex = 15;
     //
     //Button15
     //
     this.Button15.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.Button15.Location = new System.Drawing.Point(328, 27);
     this.Button15.Name = "Button15";
     this.Button15.Size = new System.Drawing.Size(64, 23);
     this.Button15.TabIndex = 15;
     this.Button15.Text = "更新";
     this.Button15.Visible = false;
     //
     //numOpenPsn
     //
     this.numOpenPsn.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.numOpenPsn.BackColor = System.Drawing.Color.FromArgb((byte) (224), (byte) (224), (byte) (224));
     this.numOpenPsn.Location = new System.Drawing.Point(224, 27);
     this.numOpenPsn.Name = "numOpenPsn";
     this.numOpenPsn.TabIndex = 16;
     this.numOpenPsn.Text = "TextBox1";
     this.numOpenPsn.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numOpenPsn.Visible = false;
     //
     //Label2
     //
     this.Label2.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.Label2.ForeColor = System.Drawing.Color.Red;
     this.Label2.Location = new System.Drawing.Point(224, 64);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(176, 56);
     this.Label2.TabIndex = 14;
     this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //Panel3
     //
     this.Panel3.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Panel3.BackColor = System.Drawing.Color.Black;
     this.Panel3.Location = new System.Drawing.Point(8, 56);
     this.Panel3.Name = "Panel3";
     this.Panel3.Size = new System.Drawing.Size(390, 3);
     this.Panel3.TabIndex = 13;
     //
     //Label1
     //
     this.Label1.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.Label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.Label1.Location = new System.Drawing.Point(8, 64);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(168, 56);
     this.Label1.TabIndex = 12;
     this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     //lblBillno
     //
     this.lblBillno.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblBillno.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblBillno.Location = new System.Drawing.Point(152, 8);
     this.lblBillno.Name = "lblBillno";
     this.lblBillno.Size = new System.Drawing.Size(240, 23);
     this.lblBillno.TabIndex = 11;
     this.lblBillno.Text = "单据号:";
     //
     //lblOpenpsn
     //
     this.lblOpenpsn.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.lblOpenpsn.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblOpenpsn.Location = new System.Drawing.Point(152, 32);
     this.lblOpenpsn.Name = "lblOpenpsn";
     this.lblOpenpsn.Size = new System.Drawing.Size(240, 23);
     this.lblOpenpsn.TabIndex = 10;
     this.lblOpenpsn.Text = "开台人数:";
     //
     //lblTableno
     //
     this.lblTableno.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblTableno.Location = new System.Drawing.Point(8, 32);
     this.lblTableno.Name = "lblTableno";
     this.lblTableno.Size = new System.Drawing.Size(256, 23);
     this.lblTableno.TabIndex = 9;
     this.lblTableno.Text = "桌台号:";
     //
     //lblOpenDate
     //
     this.lblOpenDate.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblOpenDate.Location = new System.Drawing.Point(8, 8);
     this.lblOpenDate.Name = "lblOpenDate";
     this.lblOpenDate.Size = new System.Drawing.Size(256, 23);
     this.lblOpenDate.TabIndex = 8;
     this.lblOpenDate.Text = "日期:";
     //
     //btnNext
     //
     this.btnNext.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.btnNext.Enabled = false;
     this.btnNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnNext.Location = new System.Drawing.Point(360, 16);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(56, 48);
     this.btnNext.TabIndex = 14;
     this.btnNext.Text = ">>";
     //
     //btnPrior
     //
     this.btnPrior.Enabled = false;
     this.btnPrior.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnPrior.Location = new System.Drawing.Point(8, 16);
     this.btnPrior.Name = "btnPrior";
     this.btnPrior.Size = new System.Drawing.Size(56, 48);
     this.btnPrior.TabIndex = 13;
     this.btnPrior.Text = "<<";
     //
     //lblBillTypeName
     //
     this.lblBillTypeName.Anchor = (System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.lblBillTypeName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblBillTypeName.Font = new System.Drawing.Font("宋体", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.lblBillTypeName.ForeColor = System.Drawing.Color.Navy;
     this.lblBillTypeName.Location = new System.Drawing.Point(72, 16);
     this.lblBillTypeName.Name = "lblBillTypeName";
     this.lblBillTypeName.Size = new System.Drawing.Size(280, 48);
     this.lblBillTypeName.TabIndex = 7;
     this.lblBillTypeName.Text = "点菜单";
     this.lblBillTypeName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     //dgSaleFoods
     //
     this.dgSaleFoods.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.dgSaleFoods.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.dgSaleFoods.CaptionVisible = false;
     this.dgSaleFoods.DataMember = "";
     this.dgSaleFoods.FlatMode = true;
     this.dgSaleFoods.Font = new System.Drawing.Font("宋体", 12.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.dgSaleFoods.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgSaleFoods.Location = new System.Drawing.Point(8, 208);
     this.dgSaleFoods.Name = "dgSaleFoods";
     this.dgSaleFoods.ReadOnly = true;
     this.dgSaleFoods.Size = new System.Drawing.Size(408, 248);
     this.dgSaleFoods.TabIndex = 6;
     this.dgSaleFoods.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {this.DataGridTableStyle4});
     //
     //DataGridTableStyle4
     //
     this.DataGridTableStyle4.ColumnHeadersVisible = false;
     this.DataGridTableStyle4.DataGrid = this.dgSaleFoods;
     this.DataGridTableStyle4.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {this.DataGridTextBoxColumn13, this.DataGridTextBoxColumn14, this.DataGridTextBoxColumn15, this.DataGridTextBoxColumn16, this.DataGridTextBoxColumn17, this.DataGridBoolColumn2, this.DataGridTextBoxColumn18, this.DataGridTextBoxColumn19, this.DataGridTextBoxColumn1});
     this.DataGridTableStyle4.HeaderFont = new System.Drawing.Font("宋体", 12.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.DataGridTableStyle4.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.DataGridTableStyle4.MappingName = "salefoods";
     //
     //DataGridTextBoxColumn13
     //
     this.DataGridTextBoxColumn13.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn13.Format = "";
     this.DataGridTextBoxColumn13.FormatInfo = null;
     this.DataGridTextBoxColumn13.HeaderText = "菜品编码";
     this.DataGridTextBoxColumn13.MappingName = "foodcode";
     this.DataGridTextBoxColumn13.Width = 90;
     //
     //DataGridTextBoxColumn14
     //
     this.DataGridTextBoxColumn14.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn14.Format = "";
     this.DataGridTextBoxColumn14.FormatInfo = null;
     this.DataGridTextBoxColumn14.HeaderText = "菜品名称";
     this.DataGridTextBoxColumn14.MappingName = "foodname";
     this.DataGridTextBoxColumn14.Width = 120;
     //
     //DataGridTextBoxColumn15
     //
     this.DataGridTextBoxColumn15.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn15.Format = "";
     this.DataGridTextBoxColumn15.FormatInfo = null;
     this.DataGridTextBoxColumn15.HeaderText = "单位";
     this.DataGridTextBoxColumn15.MappingName = "unit";
     this.DataGridTextBoxColumn15.Width = 50;
     //
     //DataGridTextBoxColumn16
     //
     this.DataGridTextBoxColumn16.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn16.Format = "";
     this.DataGridTextBoxColumn16.FormatInfo = null;
     this.DataGridTextBoxColumn16.HeaderText = "数量";
     this.DataGridTextBoxColumn16.MappingName = "addquantity";
     this.DataGridTextBoxColumn16.Width = 50;
     //
     //DataGridTextBoxColumn17
     //
     this.DataGridTextBoxColumn17.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn17.Format = "";
     this.DataGridTextBoxColumn17.FormatInfo = null;
     this.DataGridTextBoxColumn17.HeaderText = "价格";
     this.DataGridTextBoxColumn17.MappingName = "price";
     this.DataGridTextBoxColumn17.Width = 65;
     //
     //DataGridBoolColumn2
     //
     this.DataGridBoolColumn2.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridBoolColumn2.FalseValue = "0";
     this.DataGridBoolColumn2.HeaderText = "已上菜";
     this.DataGridBoolColumn2.MappingName = "transfered";
     this.DataGridBoolColumn2.NullText = "";
     this.DataGridBoolColumn2.NullValue = "1";
     this.DataGridBoolColumn2.TrueValue = "2";
     this.DataGridBoolColumn2.Width = 55;
     //
     //DataGridTextBoxColumn18
     //
     this.DataGridTextBoxColumn18.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn18.Format = "";
     this.DataGridTextBoxColumn18.FormatInfo = null;
     this.DataGridTextBoxColumn18.HeaderText = "做法";
     this.DataGridTextBoxColumn18.MappingName = "operandi";
     this.DataGridTextBoxColumn18.Width = 120;
     //
     //DataGridTextBoxColumn19
     //
     this.DataGridTextBoxColumn19.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
     this.DataGridTextBoxColumn19.Format = "";
     this.DataGridTextBoxColumn19.FormatInfo = null;
     this.DataGridTextBoxColumn19.HeaderText = "口味";
     this.DataGridTextBoxColumn19.MappingName = "taste";
     this.DataGridTextBoxColumn19.Width = 120;
     //
     //DataGridTextBoxColumn1
     //
     this.DataGridTextBoxColumn1.Format = "";
     this.DataGridTextBoxColumn1.FormatInfo = null;
     this.DataGridTextBoxColumn1.MappingName = "barcode";
     this.DataGridTextBoxColumn1.Width = 0;
     //
     //LinkLabel1
     //
     this.LinkLabel1.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.LinkLabel1.Location = new System.Drawing.Point(648, 72);
     this.LinkLabel1.Name = "LinkLabel1";
     this.LinkLabel1.Size = new System.Drawing.Size(80, 23);
     this.LinkLabel1.TabIndex = 24;
     this.LinkLabel1.TabStop = true;
     this.LinkLabel1.Text = "菜品类别:";
     this.LinkLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     //ToolBar1
     //
     this.ToolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ToolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {this.ToolBarButton1, this.ToolBarButton2, this.ToolBarButton13, this.ToolBarButton4, this.ToolBarButton15, this.ToolBarButton20, this.ToolBarButton6, this.ToolBarButton7, this.ToolBarButton3, this.ToolBarButton8, this.ToolBarButton12, this.ToolBarButton18, this.ToolBarButton9, this.ToolBarButton10, this.ToolBarButton11, this.ToolBarButton21, this.ToolBarButton5, this.ToolBarButton22});
     this.ToolBar1.ButtonSize = new System.Drawing.Size(60, 56);
     this.ToolBar1.DropDownArrows = true;
     this.ToolBar1.ImageList = this.ImageList2;
     this.ToolBar1.Location = new System.Drawing.Point(0, 0);
     this.ToolBar1.Name = "ToolBar1";
     this.ToolBar1.ShowToolTips = true;
     this.ToolBar1.Size = new System.Drawing.Size(896, 63);
     this.ToolBar1.TabIndex = 21;
     this.ToolBar1.Wrappable = false;
     //
     //ToolBarButton1
     //
     this.ToolBarButton1.ImageIndex = 0;
     this.ToolBarButton1.Text = "开台";
     this.ToolBarButton1.ToolTipText = "对选中桌台进行开台操作";
     //
     //ToolBarButton2
     //
     this.ToolBarButton2.ImageIndex = 1;
     this.ToolBarButton2.Text = "加单";
     this.ToolBarButton2.ToolTipText = "向选中桌台进行加单操作";
     //
     //ToolBarButton13
     //
     this.ToolBarButton13.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton4
     //
     this.ToolBarButton4.ImageIndex = 3;
     this.ToolBarButton4.Text = "传菜";
     this.ToolBarButton4.ToolTipText = "对选中菜品进行传菜操作";
     //
     //ToolBarButton15
     //
     this.ToolBarButton15.ImageIndex = 4;
     this.ToolBarButton15.Text = "催菜";
     this.ToolBarButton15.ToolTipText = "对选中菜品进行催菜操作";
     //
     //ToolBarButton20
     //
     this.ToolBarButton20.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton6
     //
     this.ToolBarButton6.ImageIndex = 5;
     this.ToolBarButton6.Text = "转台";
     this.ToolBarButton6.ToolTipText = "对选中桌台进行转台操作";
     //
     //ToolBarButton7
     //
     this.ToolBarButton7.ImageIndex = 6;
     this.ToolBarButton7.Text = "并台";
     this.ToolBarButton7.ToolTipText = "对选中桌台进行并台操作";
     //
     //ToolBarButton3
     //
     this.ToolBarButton3.ImageIndex = 5;
     this.ToolBarButton3.Text = "转并台";
     //
     //ToolBarButton8
     //
     this.ToolBarButton8.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton12
     //
     this.ToolBarButton12.ImageIndex = 7;
     this.ToolBarButton12.Text = "套餐";
     this.ToolBarButton12.ToolTipText = "向选中桌台及当前单据添加套餐";
     //
     //ToolBarButton18
     //
     this.ToolBarButton18.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton9
     //
     this.ToolBarButton9.ImageIndex = 10;
     this.ToolBarButton9.Text = "删单据";
     this.ToolBarButton9.ToolTipText = "删除当前单据";
     //
     //ToolBarButton10
     //
     this.ToolBarButton10.ImageIndex = 11;
     this.ToolBarButton10.Text = "删菜品";
     this.ToolBarButton10.ToolTipText = "删除当前选中的菜品";
     //
     //ToolBarButton11
     //
     this.ToolBarButton11.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     //
     //ToolBarButton21
     //
     this.ToolBarButton21.ImageIndex = 12;
     this.ToolBarButton21.Text = "注销";
     //
     //ToolBarButton5
     //
     this.ToolBarButton5.ImageIndex = 13;
     this.ToolBarButton5.Text = "关于";
     //
     //ToolBarButton22
     //
     this.ToolBarButton22.ImageIndex = 14;
     this.ToolBarButton22.Text = "退出";
     //
     //ImageList2
     //
     this.ImageList2.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.ImageList2.ImageSize = new System.Drawing.Size(28, 28);
     this.ImageList2.ImageStream = (System.Windows.Forms.ImageListStreamer) (resources.GetObject("ImageList2.ImageStream"));
     this.ImageList2.TransparentColor = System.Drawing.Color.Transparent;
     //
     //txtFoodCode
     //
     this.txtFoodCode.Anchor = (System.Windows.Forms.AnchorStyles) (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.txtFoodCode.Location = new System.Drawing.Point(728, 72);
     this.txtFoodCode.Name = "txtFoodCode";
     this.txtFoodCode.Size = new System.Drawing.Size(160, 23);
     this.txtFoodCode.TabIndex = 23;
     this.txtFoodCode.Text = "";
     this.txtFoodCode.Visible = false;
     //
     //pnlInput
     //
     this.pnlInput.BackColor = System.Drawing.Color.FromArgb((byte) (192), (byte) (192), (byte) (255));
     this.pnlInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlInput.Controls.Add(this.bHide);
     this.pnlInput.Controls.Add(this.bDot);
     this.pnlInput.Controls.Add(this.bCaps);
     this.pnlInput.Controls.Add(this.bSpc);
     this.pnlInput.Controls.Add(this.bM);
     this.pnlInput.Controls.Add(this.bN);
     this.pnlInput.Controls.Add(this.bB);
     this.pnlInput.Controls.Add(this.bV);
     this.pnlInput.Controls.Add(this.bC);
     this.pnlInput.Controls.Add(this.bX);
     this.pnlInput.Controls.Add(this.bZ);
     this.pnlInput.Controls.Add(this.bL);
     this.pnlInput.Controls.Add(this.bK);
     this.pnlInput.Controls.Add(this.bJ);
     this.pnlInput.Controls.Add(this.bH);
     this.pnlInput.Controls.Add(this.bG);
     this.pnlInput.Controls.Add(this.bF);
     this.pnlInput.Controls.Add(this.bD);
     this.pnlInput.Controls.Add(this.bS);
     this.pnlInput.Controls.Add(this.bA);
     this.pnlInput.Controls.Add(this.bBack);
     this.pnlInput.Controls.Add(this.bP);
     this.pnlInput.Controls.Add(this.bO);
     this.pnlInput.Controls.Add(this.bI);
     this.pnlInput.Controls.Add(this.bU);
     this.pnlInput.Controls.Add(this.bY);
     this.pnlInput.Controls.Add(this.bT);
     this.pnlInput.Controls.Add(this.bR);
     this.pnlInput.Controls.Add(this.bE);
     this.pnlInput.Controls.Add(this.bW);
     this.pnlInput.Controls.Add(this.bQ);
     this.pnlInput.Controls.Add(this.b0);
     this.pnlInput.Controls.Add(this.b9);
     this.pnlInput.Controls.Add(this.b8);
     this.pnlInput.Controls.Add(this.b7);
     this.pnlInput.Controls.Add(this.b6);
     this.pnlInput.Controls.Add(this.b5);
     this.pnlInput.Controls.Add(this.b4);
     this.pnlInput.Controls.Add(this.b3);
     this.pnlInput.Controls.Add(this.b2);
     this.pnlInput.Controls.Add(this.b1);
     this.pnlInput.Location = new System.Drawing.Point(224, 199);
     this.pnlInput.Name = "pnlInput";
     this.pnlInput.Size = new System.Drawing.Size(496, 216);
     this.pnlInput.TabIndex = 3;
     this.pnlInput.TabStop = true;
     this.pnlInput.Visible = false;
     //
     //bHide
     //
     this.bHide.BackColor = System.Drawing.SystemColors.Control;
     this.bHide.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bHide.Location = new System.Drawing.Point(400, 168);
     this.bHide.Name = "bHide";
     this.bHide.Size = new System.Drawing.Size(88, 40);
     this.bHide.TabIndex = 40;
     this.bHide.Text = "隐藏";
     //
     //bDot
     //
     this.bDot.BackColor = System.Drawing.SystemColors.Control;
     this.bDot.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bDot.Location = new System.Drawing.Point(392, 128);
     this.bDot.Name = "bDot";
     this.bDot.Size = new System.Drawing.Size(48, 40);
     this.bDot.TabIndex = 39;
     this.bDot.Tag = ".";
     this.bDot.Text = ".";
     //
     //bCaps
     //
     this.bCaps.BackColor = System.Drawing.SystemColors.Control;
     this.bCaps.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bCaps.Location = new System.Drawing.Point(8, 168);
     this.bCaps.Name = "bCaps";
     this.bCaps.Size = new System.Drawing.Size(88, 40);
     this.bCaps.TabIndex = 38;
     this.bCaps.Text = "Caps/小写";
     //
     //bSpc
     //
     this.bSpc.BackColor = System.Drawing.SystemColors.Control;
     this.bSpc.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bSpc.Location = new System.Drawing.Point(104, 168);
     this.bSpc.Name = "bSpc";
     this.bSpc.Size = new System.Drawing.Size(288, 40);
     this.bSpc.TabIndex = 37;
     this.bSpc.Tag = "";
     this.bSpc.Text = "SPACE/空格";
     //
     //bM
     //
     this.bM.BackColor = System.Drawing.SystemColors.Control;
     this.bM.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bM.Location = new System.Drawing.Point(344, 128);
     this.bM.Name = "bM";
     this.bM.Size = new System.Drawing.Size(48, 40);
     this.bM.TabIndex = 36;
     this.bM.Tag = "M";
     this.bM.Text = "M";
     //
     //bN
     //
     this.bN.BackColor = System.Drawing.SystemColors.Control;
     this.bN.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bN.Location = new System.Drawing.Point(296, 128);
     this.bN.Name = "bN";
     this.bN.Size = new System.Drawing.Size(48, 40);
     this.bN.TabIndex = 35;
     this.bN.Tag = "N";
     this.bN.Text = "N";
     //
     //bB
     //
     this.bB.BackColor = System.Drawing.SystemColors.Control;
     this.bB.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bB.Location = new System.Drawing.Point(248, 128);
     this.bB.Name = "bB";
     this.bB.Size = new System.Drawing.Size(48, 40);
     this.bB.TabIndex = 34;
     this.bB.Tag = "B";
     this.bB.Text = "B";
     //
     //bV
     //
     this.bV.BackColor = System.Drawing.SystemColors.Control;
     this.bV.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bV.Location = new System.Drawing.Point(200, 128);
     this.bV.Name = "bV";
     this.bV.Size = new System.Drawing.Size(48, 40);
     this.bV.TabIndex = 33;
     this.bV.Tag = "V";
     this.bV.Text = "V";
     //
     //bC
     //
     this.bC.BackColor = System.Drawing.SystemColors.Control;
     this.bC.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bC.Location = new System.Drawing.Point(152, 128);
     this.bC.Name = "bC";
     this.bC.Size = new System.Drawing.Size(48, 40);
     this.bC.TabIndex = 32;
     this.bC.Tag = "C";
     this.bC.Text = "C";
     //
     //bX
     //
     this.bX.BackColor = System.Drawing.SystemColors.Control;
     this.bX.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bX.Location = new System.Drawing.Point(104, 128);
     this.bX.Name = "bX";
     this.bX.Size = new System.Drawing.Size(48, 40);
     this.bX.TabIndex = 31;
     this.bX.Tag = "X";
     this.bX.Text = "X";
     //
     //bZ
     //
     this.bZ.BackColor = System.Drawing.SystemColors.Control;
     this.bZ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bZ.Location = new System.Drawing.Point(56, 128);
     this.bZ.Name = "bZ";
     this.bZ.Size = new System.Drawing.Size(48, 40);
     this.bZ.TabIndex = 30;
     this.bZ.Tag = "Z";
     this.bZ.Text = "Z";
     //
     //bL
     //
     this.bL.BackColor = System.Drawing.SystemColors.Control;
     this.bL.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bL.Location = new System.Drawing.Point(416, 88);
     this.bL.Name = "bL";
     this.bL.Size = new System.Drawing.Size(48, 40);
     this.bL.TabIndex = 29;
     this.bL.Tag = "L";
     this.bL.Text = "L";
     //
     //bK
     //
     this.bK.BackColor = System.Drawing.SystemColors.Control;
     this.bK.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bK.Location = new System.Drawing.Point(368, 88);
     this.bK.Name = "bK";
     this.bK.Size = new System.Drawing.Size(48, 40);
     this.bK.TabIndex = 28;
     this.bK.Tag = "K";
     this.bK.Text = "K";
     //
     //bJ
     //
     this.bJ.BackColor = System.Drawing.SystemColors.Control;
     this.bJ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bJ.Location = new System.Drawing.Point(320, 88);
     this.bJ.Name = "bJ";
     this.bJ.Size = new System.Drawing.Size(48, 40);
     this.bJ.TabIndex = 27;
     this.bJ.Tag = "J";
     this.bJ.Text = "J";
     //
     //bH
     //
     this.bH.BackColor = System.Drawing.SystemColors.Control;
     this.bH.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bH.Location = new System.Drawing.Point(272, 88);
     this.bH.Name = "bH";
     this.bH.Size = new System.Drawing.Size(48, 40);
     this.bH.TabIndex = 26;
     this.bH.Tag = "H";
     this.bH.Text = "H";
     //
     //bG
     //
     this.bG.BackColor = System.Drawing.SystemColors.Control;
     this.bG.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bG.Location = new System.Drawing.Point(224, 88);
     this.bG.Name = "bG";
     this.bG.Size = new System.Drawing.Size(48, 40);
     this.bG.TabIndex = 25;
     this.bG.Tag = "G";
     this.bG.Text = "G";
     //
     //bF
     //
     this.bF.BackColor = System.Drawing.SystemColors.Control;
     this.bF.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bF.Location = new System.Drawing.Point(176, 88);
     this.bF.Name = "bF";
     this.bF.Size = new System.Drawing.Size(48, 40);
     this.bF.TabIndex = 24;
     this.bF.Tag = "F";
     this.bF.Text = "F";
     //
     //bD
     //
     this.bD.BackColor = System.Drawing.SystemColors.Control;
     this.bD.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bD.Location = new System.Drawing.Point(128, 88);
     this.bD.Name = "bD";
     this.bD.Size = new System.Drawing.Size(48, 40);
     this.bD.TabIndex = 23;
     this.bD.Tag = "D";
     this.bD.Text = "D";
     //
     //bS
     //
     this.bS.BackColor = System.Drawing.SystemColors.Control;
     this.bS.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bS.Location = new System.Drawing.Point(80, 88);
     this.bS.Name = "bS";
     this.bS.Size = new System.Drawing.Size(48, 40);
     this.bS.TabIndex = 22;
     this.bS.Tag = "S";
     this.bS.Text = "S";
     //
     //bA
     //
     this.bA.BackColor = System.Drawing.SystemColors.Control;
     this.bA.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bA.Location = new System.Drawing.Point(32, 88);
     this.bA.Name = "bA";
     this.bA.Size = new System.Drawing.Size(48, 40);
     this.bA.TabIndex = 21;
     this.bA.Tag = "A";
     this.bA.Text = "A";
     //
     //bBack
     //
     this.bBack.BackColor = System.Drawing.SystemColors.Control;
     this.bBack.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bBack.Location = new System.Drawing.Point(416, 8);
     this.bBack.Name = "bBack";
     this.bBack.Size = new System.Drawing.Size(72, 32);
     this.bBack.TabIndex = 20;
     this.bBack.Text = "BACK Space";
     //
     //bP
     //
     this.bP.BackColor = System.Drawing.SystemColors.Control;
     this.bP.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bP.Location = new System.Drawing.Point(440, 48);
     this.bP.Name = "bP";
     this.bP.Size = new System.Drawing.Size(48, 40);
     this.bP.TabIndex = 19;
     this.bP.Tag = "P";
     this.bP.Text = "P";
     //
     //bO
     //
     this.bO.BackColor = System.Drawing.SystemColors.Control;
     this.bO.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bO.Location = new System.Drawing.Point(392, 48);
     this.bO.Name = "bO";
     this.bO.Size = new System.Drawing.Size(48, 40);
     this.bO.TabIndex = 18;
     this.bO.Tag = "O";
     this.bO.Text = "O";
     //
     //bI
     //
     this.bI.BackColor = System.Drawing.SystemColors.Control;
     this.bI.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bI.Location = new System.Drawing.Point(344, 48);
     this.bI.Name = "bI";
     this.bI.Size = new System.Drawing.Size(48, 40);
     this.bI.TabIndex = 17;
     this.bI.Tag = "I";
     this.bI.Text = "I";
     //
     //bU
     //
     this.bU.BackColor = System.Drawing.SystemColors.Control;
     this.bU.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bU.Location = new System.Drawing.Point(296, 48);
     this.bU.Name = "bU";
     this.bU.Size = new System.Drawing.Size(48, 40);
     this.bU.TabIndex = 16;
     this.bU.Tag = "U";
     this.bU.Text = "U";
     //
     //bY
     //
     this.bY.BackColor = System.Drawing.SystemColors.Control;
     this.bY.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bY.Location = new System.Drawing.Point(248, 48);
     this.bY.Name = "bY";
     this.bY.Size = new System.Drawing.Size(48, 40);
     this.bY.TabIndex = 15;
     this.bY.Tag = "Y";
     this.bY.Text = "Y";
     //
     //bT
     //
     this.bT.BackColor = System.Drawing.SystemColors.Control;
     this.bT.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bT.Location = new System.Drawing.Point(200, 48);
     this.bT.Name = "bT";
     this.bT.Size = new System.Drawing.Size(48, 40);
     this.bT.TabIndex = 14;
     this.bT.Tag = "T";
     this.bT.Text = "T";
     //
     //bR
     //
     this.bR.BackColor = System.Drawing.SystemColors.Control;
     this.bR.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bR.Location = new System.Drawing.Point(152, 48);
     this.bR.Name = "bR";
     this.bR.Size = new System.Drawing.Size(48, 40);
     this.bR.TabIndex = 13;
     this.bR.Tag = "R";
     this.bR.Text = "R";
     //
     //bE
     //
     this.bE.BackColor = System.Drawing.SystemColors.Control;
     this.bE.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bE.Location = new System.Drawing.Point(104, 48);
     this.bE.Name = "bE";
     this.bE.Size = new System.Drawing.Size(48, 40);
     this.bE.TabIndex = 12;
     this.bE.Tag = "E";
     this.bE.Text = "E";
     //
     //bW
     //
     this.bW.BackColor = System.Drawing.SystemColors.Control;
     this.bW.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bW.Location = new System.Drawing.Point(56, 48);
     this.bW.Name = "bW";
     this.bW.Size = new System.Drawing.Size(48, 40);
     this.bW.TabIndex = 11;
     this.bW.Tag = "W";
     this.bW.Text = "W";
     //
     //bQ
     //
     this.bQ.BackColor = System.Drawing.SystemColors.Control;
     this.bQ.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.bQ.Location = new System.Drawing.Point(8, 48);
     this.bQ.Name = "bQ";
     this.bQ.Size = new System.Drawing.Size(48, 40);
     this.bQ.TabIndex = 10;
     this.bQ.Tag = "Q";
     this.bQ.Text = "Q";
     //
     //b0
     //
     this.b0.BackColor = System.Drawing.SystemColors.Control;
     this.b0.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b0.Location = new System.Drawing.Point(368, 8);
     this.b0.Name = "b0";
     this.b0.Size = new System.Drawing.Size(40, 32);
     this.b0.TabIndex = 9;
     this.b0.Tag = "0";
     this.b0.Text = "0";
     //
     //b9
     //
     this.b9.BackColor = System.Drawing.SystemColors.Control;
     this.b9.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b9.Location = new System.Drawing.Point(328, 8);
     this.b9.Name = "b9";
     this.b9.Size = new System.Drawing.Size(40, 32);
     this.b9.TabIndex = 8;
     this.b9.Tag = "9";
     this.b9.Text = "9";
     //
     //b8
     //
     this.b8.BackColor = System.Drawing.SystemColors.Control;
     this.b8.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b8.Location = new System.Drawing.Point(288, 8);
     this.b8.Name = "b8";
     this.b8.Size = new System.Drawing.Size(40, 32);
     this.b8.TabIndex = 7;
     this.b8.Tag = "8";
     this.b8.Text = "8";
     //
     //b7
     //
     this.b7.BackColor = System.Drawing.SystemColors.Control;
     this.b7.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b7.Location = new System.Drawing.Point(248, 8);
     this.b7.Name = "b7";
     this.b7.Size = new System.Drawing.Size(40, 32);
     this.b7.TabIndex = 6;
     this.b7.Tag = "7";
     this.b7.Text = "7";
     //
     //b6
     //
     this.b6.BackColor = System.Drawing.SystemColors.Control;
     this.b6.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b6.Location = new System.Drawing.Point(208, 8);
     this.b6.Name = "b6";
     this.b6.Size = new System.Drawing.Size(40, 32);
     this.b6.TabIndex = 5;
     this.b6.Tag = "6";
     this.b6.Text = "6";
     //
     //b5
     //
     this.b5.BackColor = System.Drawing.SystemColors.Control;
     this.b5.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b5.Location = new System.Drawing.Point(168, 8);
     this.b5.Name = "b5";
     this.b5.Size = new System.Drawing.Size(40, 32);
     this.b5.TabIndex = 4;
     this.b5.Tag = "5";
     this.b5.Text = "5";
     //
     //b4
     //
     this.b4.BackColor = System.Drawing.SystemColors.Control;
     this.b4.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b4.Location = new System.Drawing.Point(128, 8);
     this.b4.Name = "b4";
     this.b4.Size = new System.Drawing.Size(40, 32);
     this.b4.TabIndex = 3;
     this.b4.Tag = "4";
     this.b4.Text = "4";
     //
     //b3
     //
     this.b3.BackColor = System.Drawing.SystemColors.Control;
     this.b3.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b3.Location = new System.Drawing.Point(88, 8);
     this.b3.Name = "b3";
     this.b3.Size = new System.Drawing.Size(40, 32);
     this.b3.TabIndex = 2;
     this.b3.Tag = "3";
     this.b3.Text = "3";
     //
     //b2
     //
     this.b2.BackColor = System.Drawing.SystemColors.Control;
     this.b2.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b2.Location = new System.Drawing.Point(48, 8);
     this.b2.Name = "b2";
     this.b2.Size = new System.Drawing.Size(40, 32);
     this.b2.TabIndex = 1;
     this.b2.Tag = "2";
     this.b2.Text = "2";
     //
     //b1
     //
     this.b1.BackColor = System.Drawing.SystemColors.Control;
     this.b1.Font = new System.Drawing.Font("宋体", 9.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte) (134)));
     this.b1.Location = new System.Drawing.Point(8, 8);
     this.b1.Name = "b1";
     this.b1.Size = new System.Drawing.Size(40, 32);
     this.b1.TabIndex = 0;
     this.b1.Tag = "1";
     this.b1.Text = "1";
     //
     //Timer1
     //
     this.Timer1.Enabled = true;
     this.Timer1.Interval = 480000;
     this.Timer1.SynchronizingObject = this;
     //
     //Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize = new System.Drawing.Size(920, 598);
     this.ControlBox = false;
     this.Controls.Add(this.TabControl1);
     this.Controls.Add(this.pnlInput);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Form1";
     this.Text = "餐厅管家 - 触摸屏客户端";
     this.TopMost = true;
     this.TabControl1.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage2.ResumeLayout(false);
     this.Panel1.ResumeLayout(false);
     this.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.dgSaleFoods).EndInit();
     this.pnlInput.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.Timer1).EndInit();
     this.ResumeLayout(false);
 }