private void FillList()
        {
            tableDialogs.TableModel.Rows.Clear();

            CategoryTableAdapter kategorieTableAdapter = new CategoryTableAdapter(dataBase);
            CategoryDataSet      ds = new CategoryDataSet();

            kategorieTableAdapter.Fill(ds.Category);

            // Zuerst der Standard-Dialog
            string[] newRow = new string[2];
            newRow[0] = "<" + StringTable.Default + ">";
            newRow[1] = HasDialog(0) ? StringTable.Yes : StringTable.No;
            XPTable.Models.Row newTableRow = new XPTable.Models.Row(newRow);
            newTableRow.Tag = null;
            tableDialogs.TableModel.Rows.Add(newTableRow);

            foreach (CategoryDataSet.CategoryRow row in ds.Category.Rows)
            {
                newRow[0]       = row.Name;
                newRow[1]       = HasDialog(row.CategoryID) ? StringTable.Yes : StringTable.No;
                newTableRow     = new XPTable.Models.Row(newRow);
                newTableRow.Tag = row;
                tableDialogs.TableModel.Rows.Add(newTableRow);
            }
        }
        public void addURLToTable(String filename, String url)
        {
            // Create new cell variables
            XPTable.Models.Cell[] cells = new XPTable.Models.Cell[10];

            for (int i = 0; i < 10; ++i)
            {
                cells[i] = new XPTable.Models.Cell();
            }

            // Put the cell data together
            Uri uri = new Uri(url);
            cells[0].Data = table.RowCount + 1;
            cells[1].Text = cells[1].ToolTipText = System.IO.Path.GetFileName(filename);
            cells[2].Text = "size";
            cells[3].Data = 0;
            cells[4].Text = "status";
            cells[5].Text = "speed";
            cells[6].Text = "eta";
            cells[7].Text = cells[7].ToolTipText = url;
            cells[8].Text = cells[8].ToolTipText = filename;

            // Put the cells together into a row
            XPTable.Models.Row row = new XPTable.Models.Row(
                cells
            );
            row.Height = 18;

            // Add the row to the table
            tableModel.Rows.Add(row);
        }
        private void iTable_CellCheckChanged(object sender, XPTable.Events.CellCheckBoxEventArgs e)
        {
            XPTable.Models.Row     row         = iTableModel.Rows[e.Row];
            XPTable.Models.Cell    cellEnabled = e.Cell;
            XPTable.Models.Cell    cellColor   = row.Cells[1];
            TripletDictionaryEntry entry       = (TripletDictionaryEntry)row.Tag;

            //
            if (e.Column == 0)   // iCol_Enabled
            {
                entry.iTriplet.Enabled = (cellEnabled.Checked);
                //
                if (cellEnabled.Checked)
                {
                    row.ForeColor  = iTable.ForeColor;
                    cellColor.Data = entry.iTriplet.Color;
                }
                else
                {
                    row.ForeColor  = Color.DarkGray;
                    cellColor.Data = HeapCellFilterTriplet.KDisabledColour;
                }
            }
            else if (e.Column == 1)   // iCol_Colour
            {
                if (cellEnabled.Checked)
                {
                    entry.iTriplet.Color = (Color)cellColor.Data;
                }
            }
        }
Exemple #4
0
        private void UpdateMainTable()
        {
            iTable_SymbolMemory.BeginUpdate();
            iTable_SymbolMemory.TableModel.Rows.Clear();

            iReconstructor.Statistics.StatsAllocated.TrackerSymbols.SortByAllocatedMemory();
            //
            foreach (TrackingInfo item in iReconstructor.Statistics.StatsAllocated.TrackerSymbols)
            {
                XPTable.Models.Row row = new XPTable.Models.Row();
                row.Tag = item;

                // SYMBOL
                System.Diagnostics.Debug.Assert(item.Symbol != null);
                row.Cells.Add(new XPTable.Models.Cell(item.Symbol.NameWithoutVTablePrefix));

                // ALLOC COUNT
                row.Cells.Add(new XPTable.Models.Cell(item.Count.ToString()));

                // MEMORY-PER-INSTANCE
                row.Cells.Add(new XPTable.Models.Cell(item.PayloadLength.ToString()));

                // TOTAL ALLOCATED MEMORY
                row.Cells.Add(new XPTable.Models.Cell(item.AssociatedMemory.ToString()));

                // Add row
                iTable_SymbolMemory.TableModel.Rows.Add(row);
            }

            iTable_SymbolMemory.EndUpdate();
        }
        private void FillList()
        {
            LoanedCDTableAdapter ta = new LoanedCDTableAdapter(dataBase);

            LoanedCDDataSet.LoanedCDDataTable dt = ta.GetData();

            CDTableAdapter          cdta          = new CDTableAdapter(dataBase);
            PersonGroupTableAdapter personGroupta = new PersonGroupTableAdapter(dataBase);

            tableLoanedCDs.TableModel.Rows.Clear();

            foreach (LoanedCDDataSet.LoanedCDRow loanedCDRow in dt)
            {
                string artist;
                string title;

                CDDataSet.CDDataTable cd = cdta.GetDataById(loanedCDRow.CDID);
                if (cd.Count == 0)      // CD wurde wohl gelöscht
                {
                    artist = "<" + StringTable.Deleted + ">";
                    title  = "<" + StringTable.Deleted + ">";
                }
                else
                {
                    PersonGroupDataSet.PersonGroupDataTable personGroup = personGroupta.GetDataById(cd[0].ArtistID);

                    artist = personGroup[0].Name;
                    title  = cd[0].Title;
                }

                XPTable.Models.Row newRow = new XPTable.Models.Row();
                newRow.Cells.Add(new XPTable.Models.Cell(artist));
                newRow.Cells.Add(new XPTable.Models.Cell(title));
                newRow.Cells.Add(new XPTable.Models.Cell(loanedCDRow.LoanedTo));
                newRow.Cells.Add(new XPTable.Models.Cell(loanedCDRow.LoanedDate.ToShortDateString()));
                if (!loanedCDRow.IsReturnDateNull())
                {
                    if (loanedCDRow.ReturnDate <= DateTime.Now)
                    {
                        newRow.ForeColor = Color.Red;
                    }

                    newRow.Cells.Add(new XPTable.Models.Cell(loanedCDRow.ReturnDate.ToShortDateString()));
                }
                else
                {
                    newRow.Cells.Add(new XPTable.Models.Cell(""));
                }
                newRow.Cells.Add(new XPTable.Models.Cell(loanedCDRow.Comment));

                newRow.Tag = loanedCDRow;

                tableLoanedCDs.TableModel.Rows.Add(newRow);
            }

            UpdateWindowState();
        }
Exemple #6
0
 private void iTable_SelectionChanged(object sender, XPTable.Events.SelectionEventArgs e)
 {
     if (e.NewSelectedIndicies.Length > 0)
     {
         int rowIndex            = e.NewSelectedIndicies[0];
         XPTable.Models.Row row  = e.TableModel.Rows[rowIndex];
         HeapCell           cell = (HeapCell)row.Tag;
         UpdateReferenceInfoList(cell);
     }
 }
        /// <summary>
        /// Loads the style.
        /// </summary>
        /// <remarks>Documented by Dev05, 2007-10-31</remarks>
        private void LoadStyle()
        {
            if (style == null)
            {
                return;
            }

            actualizing = true;

            comboBoxColorPickerBack.Color = style.BackgroundColor != Color.Empty ? style.BackgroundColor : Color.White;
            comboBoxColorPickerFore.Color = style.ForeColor != Color.Empty ? style.ForeColor : Color.White;

            if (style.FontFamily != null)
            {
                comboBoxFontFamily.SelectedItem = families[style.FontFamily];
            }
            else
            {
                comboBoxFontFamily.SelectedIndex = 0;
            }

            checkBoxFontStyleNone.Checked      = style.FontStyle == CSSFontStyle.None;
            checkBoxFontStyleRegular.Checked   = (style.FontStyle & CSSFontStyle.Regular) == CSSFontStyle.Regular;
            checkBoxFontStyleBold.Checked      = (style.FontStyle & CSSFontStyle.Bold) == CSSFontStyle.Bold;
            checkBoxFontStyleItalic.Checked    = (style.FontStyle & CSSFontStyle.Italic) == CSSFontStyle.Italic;
            checkBoxFontStyleStrikeout.Checked = (style.FontStyle & CSSFontStyle.Strikeout) == CSSFontStyle.Strikeout;
            checkBoxFontStyleUnderline.Checked = (style.FontStyle & CSSFontStyle.Underline) == CSSFontStyle.Underline;

            EnumLocalizer.SelectItem(comboBoxFontSizeUnit, style.FontSizeUnit);
            numericUpDownFontSize.Value = (style.FontSize == 0) ? 12 : style.FontSize;
            EnumLocalizer.SelectItem(comboBoxHAlign, style.HorizontalAlign);
            EnumLocalizer.SelectItem(comboBoxVAlign, style.VerticalAlign);

            checkBoxBackColor.Checked  = style.BackgroundColor.Name != "Empty" && style.BackgroundColor.Name != "0";
            checkBoxFontFamily.Checked = style.FontFamily != null;
            checkBoxFontSize.Checked   = style.FontSize > 0;
            checkBoxForeColor.Checked  = style.ForeColor.Name != "Empty" && style.ForeColor.Name != "0";
            checkBoxHAlign.Checked     = style.HorizontalAlign != MLifter.DAL.Interfaces.HorizontalAlignment.None;
            checkBoxVAlign.Checked     = style.VerticalAlign != VerticalAlignment.None;

            foreach (KeyValuePair <string, string> pair in style.OtherElements)
            {
                XPTable.Models.Row row = new XPTable.Models.Row();
                tableOtherElements.TableModel.Rows.Add(row);
                row.Cells.Add(new XPTable.Models.Cell("x"));
                row.Cells.Add(new XPTable.Models.Cell(pair.Key));
                row.Cells.Add(new XPTable.Models.Cell(pair.Value));
            }

            AddEmtyRow();

            EnableControls();
            actualizing = false;
        }
Exemple #8
0
        private void DeleteRow(XPTable.Models.Row row)
        {
            DialogResult res = MessageBox.Show(String.Format("Do you really want to remove folder {0}?", row.Cells[0].Text), "Delete item", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);

            if (res != DialogResult.OK)
            {
                return;
            }
            ((Model.FoldersRow)row.Tag).Delete();
            int index = row.Index;

            table.TableModel.Rows.RemoveAt(index);
            if (table.TableModel.Rows.Count <= index && index > 0)
            {
                index--;
            }
            table.TableModel.Selections.SelectCells(index, 0, index, 2);
        }
        private void FillCDSetList()
        {
            Cursor.Current = Cursors.WaitCursor;

            cdSetDataset.Clear();
            cdSetAdapter.Fill(cdSetDataset.Set);

            cdSetTable.TableModel.Rows.Clear();

            foreach (SetDataSet.SetRow row in cdSetDataset.Set)
            {
                XPTable.Models.Row newRow = new XPTable.Models.Row();
                newRow.Cells.Add(new XPTable.Models.Cell(row.Name));

                newRow.Tag = row;

                cdSetTable.TableModel.Rows.Add(newRow);
            }

            Cursor.Current = Cursors.Default;
        }
        /// <summary>
        /// Adds the emty row.
        /// </summary>
        /// <remarks>Documented by Dev05, 2007-11-02</remarks>
        private void AddEmtyRow()
        {
            List <XPTable.Models.Row> rowsToDelete = new List <XPTable.Models.Row>();

            foreach (XPTable.Models.Row rowToCheck in tableOtherElements.TableModel.Rows)
            {
                if (rowToCheck.Cells[1].Text.Length == 0 && rowToCheck.Cells[2].Text.Length == 0)
                {
                    rowsToDelete.Add(rowToCheck);
                }
            }

            foreach (XPTable.Models.Row rowToDelete in rowsToDelete)
            {
                tableOtherElements.TableModel.Rows.Remove(rowToDelete);
            }

            XPTable.Models.Row row = new XPTable.Models.Row();
            tableOtherElements.TableModel.Rows.Add(row);
            row.Cells.Add(new XPTable.Models.Cell("x"));
            row.Cells.Add(new XPTable.Models.Cell(""));
            row.Cells.Add(new XPTable.Models.Cell(""));
        }
 private void UpdateFilters()
 {
     iTable.BeginUpdate();
     iTable.TableModel.Rows.Clear();
     //
     foreach (KeyValuePair <string, HeapCellFilterTriplet> entry in iDictionary)
     {
         XPTable.Models.Row row = new XPTable.Models.Row();
         row.Tag = new TripletDictionaryEntry(entry.Key, entry.Value);
         //
         XPTable.Models.Cell cellEnabled = new XPTable.Models.Cell(string.Empty, entry.Value.Enabled);
         XPTable.Models.Cell cellColour  = new XPTable.Models.Cell(string.Empty, entry.Value.Color);
         XPTable.Models.Cell cellText    = new XPTable.Models.Cell(entry.Value.Entity);
         //
         row.Cells.Add(cellEnabled);
         row.Cells.Add(cellColour);
         row.Cells.Add(cellText);
         //
         if (cellEnabled.Checked)
         {
             row.ForeColor   = iTable.ForeColor;
             cellColour.Data = entry.Value.Color;
         }
         else
         {
             row.ForeColor   = Color.DarkGray;
             cellColour.Data = HeapCellFilterTriplet.KDisabledColour;
         }
         //
         if (!entry.Value.TrackingInfo.IsUnknownSymbolMatchItem)
         {
             iTableModel.Rows.Add(row);
         }
     }
     //
     iTable.EndUpdate();
 }
Exemple #12
0
        private void VisualizeFolder(Model.FoldersRow folder)
        {
            XPTable.Models.Row row = new XPTable.Models.Row();

            XPTable.Models.Cell      cell1      = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle1 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell      cell2      = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle2 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell      cell3      = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle3 = new XPTable.Models.CellStyle();

            cell1.Text    = folder.Name;
            cell1.Checked = folder.Enabled;
            cell1.Data    = Detector.Current.GetIcon(folder.Type);
            cell2.Text    = folder.Path;
            cell2.Checked = Directory.Exists(folder.Path);
            cell3.Text    = folder.Type;

            cellStyle1.Font = new System.Drawing.Font("Arial", 8.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell1.CellStyle = cellStyle1;

            cellStyle2.Font = new System.Drawing.Font("Courier", 8.0F, 0, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell2.CellStyle = cellStyle2;

            cellStyle3.Font = new System.Drawing.Font("Arial", 8.0F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell3.CellStyle = cellStyle3;

            row.Cells.AddRange(new XPTable.Models.Cell[] { cell1, cell2, cell3 });
            row.ChildIndex = 0;
            row.Editable   = true;
            row.Tag        = folder;

            StrikeRow(row, !folder.Enabled);

            tableModel.Rows.Add(row);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.Row  row1   = new XPTable.Models.Row();
     XPTable.Models.Cell cell1  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell2  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell3  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell4  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell5  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell6  = new XPTable.Models.Cell();
     XPTable.Models.Row  row2   = new XPTable.Models.Row();
     XPTable.Models.Cell cell7  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell8  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell9  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell10 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell11 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell12 = new XPTable.Models.Cell();
     XPTable.Models.Row  row3   = new XPTable.Models.Row();
     XPTable.Models.Cell cell13 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell14 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell15 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell16 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell17 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell18 = new XPTable.Models.Cell();
     XPTable.Models.Row  row4   = new XPTable.Models.Row();
     XPTable.Models.Cell cell19 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell20 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell21 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell22 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell23 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell24 = new XPTable.Models.Cell();
     XPTable.Models.Row  row5   = new XPTable.Models.Row();
     XPTable.Models.Cell cell25 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell26 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell27 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell28 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell29 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell30 = new XPTable.Models.Cell();
     XPTable.Models.Row  row6   = new XPTable.Models.Row();
     XPTable.Models.Cell cell31 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell32 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell33 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell34 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell35 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell36 = new XPTable.Models.Cell();
     this.groupBox1      = new System.Windows.Forms.GroupBox();
     this.tblP1          = new XPTable.Models.Table();
     this.tblcolP1       = new XPTable.Models.ColumnModel();
     this.textColumn3    = new XPTable.Models.TextColumn();
     this.textColumn4    = new XPTable.Models.TextColumn();
     this.textColumn5    = new XPTable.Models.TextColumn();
     this.numberColumn1  = new XPTable.Models.NumberColumn();
     this.numberColumn6  = new XPTable.Models.NumberColumn();
     this.numberColumn7  = new XPTable.Models.NumberColumn();
     this.numberColumn8  = new XPTable.Models.NumberColumn();
     this.numberColumn9  = new XPTable.Models.NumberColumn();
     this.numberColumn10 = new XPTable.Models.NumberColumn();
     this.textColumn6    = new XPTable.Models.TextColumn();
     this.textColumn7    = new XPTable.Models.TextColumn();
     this.textColumn8    = new XPTable.Models.TextColumn();
     this.numberColumn11 = new XPTable.Models.NumberColumn();
     this.numberColumn12 = new XPTable.Models.NumberColumn();
     this.textColumn9    = new XPTable.Models.TextColumn();
     this.tblmdlP1       = new XPTable.Models.TableModel();
     this.btnClose       = new System.Windows.Forms.Button();
     this.btnEdit        = new System.Windows.Forms.Button();
     this.btnDelete      = new System.Windows.Forms.Button();
     this.btnAdd         = new System.Windows.Forms.Button();
     this.groupBox2      = new System.Windows.Forms.GroupBox();
     this.tblP2          = new XPTable.Models.Table();
     this.tblcolP2       = new XPTable.Models.ColumnModel();
     this.textColumn2    = new XPTable.Models.TextColumn();
     this.textColumn1    = new XPTable.Models.TextColumn();
     this.numberColumn2  = new XPTable.Models.NumberColumn();
     this.numberColumn3  = new XPTable.Models.NumberColumn();
     this.numberColumn4  = new XPTable.Models.NumberColumn();
     this.numberColumn5  = new XPTable.Models.NumberColumn();
     this.tblmdlP2       = new XPTable.Models.TableModel();
     this.button1        = new System.Windows.Forms.Button();
     this.dtIDate        = new System.Windows.Forms.DateTimePicker();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tblP1)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tblP2)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.Controls.Add(this.tblP1);
     this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.groupBox1.Location  = new System.Drawing.Point(12, 12);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(718, 276);
     this.groupBox1.TabIndex  = 24;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "Phần I : Danh sách lao động có thay đổi so với tháng trước";
     //
     // tblP1
     //
     this.tblP1.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
     this.tblP1.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
     this.tblP1.ColumnModel         = this.tblcolP1;
     this.tblP1.Dock                        = System.Windows.Forms.DockStyle.Fill;
     this.tblP1.EditStartAction             = XPTable.Editors.EditStartAction.SingleClick;
     this.tblP1.EnableToolTips              = true;
     this.tblP1.ForeColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblP1.FullRowSelect               = true;
     this.tblP1.GridColor                   = System.Drawing.SystemColors.ControlDark;
     this.tblP1.GridLines                   = XPTable.Models.GridLines.Both;
     this.tblP1.GridLineStyle               = XPTable.Models.GridLineStyle.Dot;
     this.tblP1.HeaderFont                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.tblP1.Location                    = new System.Drawing.Point(3, 16);
     this.tblP1.MultiSelect                 = true;
     this.tblP1.Name                        = "tblP1";
     this.tblP1.NoItemsText                 = "Không tìm thấy thông tin";
     this.tblP1.SelectionBackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
     this.tblP1.SelectionForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblP1.SelectionStyle              = XPTable.Models.SelectionStyle.Grid;
     this.tblP1.Size                        = new System.Drawing.Size(712, 257);
     this.tblP1.SortedColumnBackColor       = System.Drawing.Color.Transparent;
     this.tblP1.TabIndex                    = 79;
     this.tblP1.TableModel                  = this.tblmdlP1;
     this.tblP1.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
     this.tblP1.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblP1.EditingStopped             += new XPTable.Events.CellEditEventHandler(this.tblP1_EditingStopped);
     //
     // tblcolP1
     //
     this.tblcolP1.Columns.AddRange(new XPTable.Models.Column[] {
         this.textColumn3,
         this.textColumn4,
         this.textColumn5,
         this.numberColumn1,
         this.numberColumn6,
         this.numberColumn7,
         this.numberColumn8,
         this.numberColumn9,
         this.numberColumn10,
         this.textColumn6,
         this.textColumn7,
         this.textColumn8,
         this.numberColumn11,
         this.numberColumn12,
         this.textColumn9
     });
     //
     // textColumn3
     //
     this.textColumn3.Format = "(#,###);";
     this.textColumn3.Text   = "STT";
     this.textColumn3.Width  = 30;
     //
     // textColumn4
     //
     this.textColumn4.Text = "Họ và tên(2)";
     //
     // textColumn5
     //
     this.textColumn5.Text = "Số sổ BHXH(3)";
     //
     // numberColumn1
     //
     this.numberColumn1.Format    = "#,###;(#,###);";
     this.numberColumn1.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn1.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn1.Text = "LươngCB cũ(4)";
     //
     // numberColumn6
     //
     this.numberColumn6.Format    = "#,###;(#,###);";
     this.numberColumn6.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn6.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn6.Text = "Phụ cấp cũ(5)";
     //
     // numberColumn7
     //
     this.numberColumn7.Format    = "#,###;(#,###);";
     this.numberColumn7.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn7.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn7.Text = "LươngCB mới(6)";
     //
     // numberColumn8
     //
     this.numberColumn8.Format    = "#,###;(#,###);";
     this.numberColumn8.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn8.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn8.Text = "Phụ cấp mới(7)";
     //
     // numberColumn9
     //
     this.numberColumn9.Format    = "#,###;(#,###);";
     this.numberColumn9.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn9.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn9.Text = "Tăng(8)";
     //
     // numberColumn10
     //
     this.numberColumn10.Format    = "#,###;(#,###);";
     this.numberColumn10.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn10.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn10.Text = "Giảm(9)";
     //
     // textColumn6
     //
     this.textColumn6.Text = "Từ tháng(10)";
     //
     // textColumn7
     //
     this.textColumn7.Text = "Từ tháng(11)";
     //
     // textColumn8
     //
     this.textColumn8.Text = "Từ tháng(12)";
     //
     // numberColumn11
     //
     this.numberColumn11.Format    = "#,###;(#,###);";
     this.numberColumn11.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn11.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn11.Text = "Số tăng(13)";
     //
     // numberColumn12
     //
     this.numberColumn12.Format    = "#,###;(#,###);";
     this.numberColumn12.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn12.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn12.Text = "Số giảm(14)";
     //
     // textColumn9
     //
     this.textColumn9.Text = "Ghi chú(15)";
     //
     // btnClose
     //
     this.btnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnClose.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.btnClose.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.btnClose.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.btnClose.Location     = new System.Drawing.Point(655, 481);
     this.btnClose.Name         = "btnClose";
     this.btnClose.Size         = new System.Drawing.Size(75, 23);
     this.btnClose.TabIndex     = 23;
     this.btnClose.Text         = "Đóng";
     this.btnClose.Click       += new System.EventHandler(this.btnClose_Click);
     //
     // btnEdit
     //
     this.btnEdit.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnEdit.Font      = new System.Drawing.Font("Tahoma", 8.25F);
     this.btnEdit.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnEdit.Location  = new System.Drawing.Point(575, 294);
     this.btnEdit.Name      = "btnEdit";
     this.btnEdit.Size      = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex  = 21;
     this.btnEdit.Text      = "Sửa";
     //
     // btnDelete
     //
     this.btnDelete.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnDelete.Font      = new System.Drawing.Font("Tahoma", 8.25F);
     this.btnDelete.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnDelete.Location  = new System.Drawing.Point(655, 294);
     this.btnDelete.Name      = "btnDelete";
     this.btnDelete.Size      = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex  = 22;
     this.btnDelete.Text      = "Xóa";
     this.btnDelete.Click    += new System.EventHandler(this.btnDelete_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnAdd.Font      = new System.Drawing.Font("Tahoma", 8.25F);
     this.btnAdd.ImeMode   = System.Windows.Forms.ImeMode.NoControl;
     this.btnAdd.Location  = new System.Drawing.Point(495, 294);
     this.btnAdd.Name      = "btnAdd";
     this.btnAdd.Size      = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex  = 20;
     this.btnAdd.Text      = "Thêm";
     this.btnAdd.Click    += new System.EventHandler(this.btnAdd_Click);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.tblP2);
     this.groupBox2.Location = new System.Drawing.Point(12, 323);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(717, 152);
     this.groupBox2.TabIndex = 25;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Phần II : Tổng hợp tình hình lao động, Quỹ lương, Số phải nộp BHXH";
     //
     // tblP2
     //
     this.tblP2.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
     this.tblP2.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
     this.tblP2.ColumnModel         = this.tblcolP2;
     this.tblP2.Dock                        = System.Windows.Forms.DockStyle.Fill;
     this.tblP2.EnableToolTips              = true;
     this.tblP2.ForeColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblP2.FullRowSelect               = true;
     this.tblP2.GridColor                   = System.Drawing.SystemColors.ControlDark;
     this.tblP2.GridLines                   = XPTable.Models.GridLines.Both;
     this.tblP2.GridLineStyle               = XPTable.Models.GridLineStyle.Dot;
     this.tblP2.HeaderFont                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.tblP2.Location                    = new System.Drawing.Point(3, 16);
     this.tblP2.Name                        = "tblP2";
     this.tblP2.SelectionBackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
     this.tblP2.SelectionForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblP2.SelectionStyle              = XPTable.Models.SelectionStyle.Grid;
     this.tblP2.Size                        = new System.Drawing.Size(711, 133);
     this.tblP2.SortedColumnBackColor       = System.Drawing.Color.Transparent;
     this.tblP2.TabIndex                    = 80;
     this.tblP2.TableModel                  = this.tblmdlP2;
     this.tblP2.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
     this.tblP2.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     //
     // tblcolP2
     //
     this.tblcolP2.Columns.AddRange(new XPTable.Models.Column[] {
         this.textColumn2,
         this.textColumn1,
         this.numberColumn2,
         this.numberColumn3,
         this.numberColumn4,
         this.numberColumn5
     });
     //
     // textColumn2
     //
     this.textColumn2.Editable = false;
     this.textColumn2.Sortable = false;
     this.textColumn2.Text     = "STT";
     this.textColumn2.Width    = 30;
     //
     // textColumn1
     //
     this.textColumn1.Editable = false;
     this.textColumn1.Sortable = false;
     this.textColumn1.Text     = "Chỉ tiêu";
     this.textColumn1.Width    = 270;
     //
     // numberColumn2
     //
     this.numberColumn2.Format    = "#,###;(#,###);";
     this.numberColumn2.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn2.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn2.Sortable = false;
     this.numberColumn2.Text     = "Tháng trước";
     this.numberColumn2.Width    = 100;
     //
     // numberColumn3
     //
     this.numberColumn3.Format    = "#,###;(#,###);";
     this.numberColumn3.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn3.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn3.Sortable = false;
     this.numberColumn3.Text     = "Tháng này tăng";
     this.numberColumn3.Width    = 100;
     //
     // numberColumn4
     //
     this.numberColumn4.Format    = "#,###;(#,###);";
     this.numberColumn4.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn4.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn4.Sortable = false;
     this.numberColumn4.Text     = "Tháng này giảm";
     this.numberColumn4.Width    = 100;
     //
     // numberColumn5
     //
     this.numberColumn5.Format    = "#,###;(#,###);";
     this.numberColumn5.Increment = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.numberColumn5.Maximum = new decimal(new int[] {
         1000000000,
         0,
         0,
         0
     });
     this.numberColumn5.Sortable = false;
     this.numberColumn5.Text     = "Tổng số";
     this.numberColumn5.Width    = 100;
     //
     // tblmdlP2
     //
     cell1.Data = "";
     cell1.Text = "1";
     cell2.Text = "Tổng số lao động tham gia BHXH";
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2,
         cell3,
         cell4,
         cell5,
         cell6
     });
     cell7.Data = "";
     cell7.Text = "2";
     cell8.Text = "Tổng số phiếu KCB";
     row2.Cells.AddRange(new XPTable.Models.Cell[] {
         cell7,
         cell8,
         cell9,
         cell10,
         cell11,
         cell12
     });
     cell13.Data = "";
     cell13.Text = "3";
     cell14.Text = "Tổng quỹ tiền lương";
     row3.Cells.AddRange(new XPTable.Models.Cell[] {
         cell13,
         cell14,
         cell15,
         cell16,
         cell17,
         cell18
     });
     cell19.Data = "";
     cell19.Text = "4";
     cell20.Text = "Số phải nộp tính theo quỹ lương hàng tháng";
     row4.Cells.AddRange(new XPTable.Models.Cell[] {
         cell19,
         cell20,
         cell21,
         cell22,
         cell23,
         cell24
     });
     cell25.Data = "";
     cell25.Text = "5";
     cell26.Text = "Số điều chỉnh tháng này (cột 13-14)";
     row5.Cells.AddRange(new XPTable.Models.Cell[] {
         cell25,
         cell26,
         cell27,
         cell28,
         cell29,
         cell30
     });
     cell31.Data = "";
     cell31.Text = "6";
     cell32.Text = "Tổng số phải nộp BHXH tháng này (VI = IV + V)";
     row6.Cells.AddRange(new XPTable.Models.Cell[] {
         cell31,
         cell32,
         cell33,
         cell34,
         cell35,
         cell36
     });
     this.tblmdlP2.Rows.AddRange(new XPTable.Models.Row[] {
         row1,
         row2,
         row3,
         row4,
         row5,
         row6
     });
     //
     // button1
     //
     this.button1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.button1.FlatStyle    = System.Windows.Forms.FlatStyle.System;
     this.button1.Font         = new System.Drawing.Font("Tahoma", 8.25F);
     this.button1.ImeMode      = System.Windows.Forms.ImeMode.NoControl;
     this.button1.Location     = new System.Drawing.Point(574, 481);
     this.button1.Name         = "button1";
     this.button1.Size         = new System.Drawing.Size(75, 23);
     this.button1.TabIndex     = 26;
     this.button1.Text         = "Báo cáo";
     this.button1.Click       += new System.EventHandler(this.btnPrint_Click);
     //
     // dtIDate
     //
     this.dtIDate.Anchor        = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.dtIDate.CustomFormat  = "dd/MM/yyyy";
     this.dtIDate.Format        = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtIDate.Location      = new System.Drawing.Point(12, 482);
     this.dtIDate.Name          = "dtIDate";
     this.dtIDate.Size          = new System.Drawing.Size(107, 20);
     this.dtIDate.TabIndex      = 27;
     this.dtIDate.ValueChanged += new System.EventHandler(this.dtIDate_ValueChanged);
     //
     // frmInsuranceC47
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(742, 516);
     this.Controls.Add(this.dtIDate);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnAdd);
     this.Name  = "frmInsuranceC47";
     this.Text  = "Danh sách lao động điều chỉnh mức lương, phụ cấp nộp BHXH";
     this.Load += new System.EventHandler(this.frmInsuranceC47_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tblP1)).EndInit();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tblP2)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AnimatedSpriteEditor));
     XPTable.Models.DataSourceColumnBinder          dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
     XPTable.Models.Row       row1       = new XPTable.Models.Row();
     XPTable.Models.Cell      cell1      = new XPTable.Models.Cell();
     XPTable.Models.CellStyle cellStyle1 = new XPTable.Models.CellStyle();
     XPTable.Models.Cell      cell2      = new XPTable.Models.Cell();
     XPTable.Models.CellStyle cellStyle2 = new XPTable.Models.CellStyle();
     this.defaultControlPanel           = new DefaultControlPanel();
     this.toolStripAnims                = new System.Windows.Forms.ToolStrip();
     this.toolStripSeparator6           = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonZoomOut        = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonZoomNormal     = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonZoomIn         = new System.Windows.Forms.ToolStripButton();
     this.groupBoxAnimations            = new System.Windows.Forms.GroupBox();
     this.propertyGridAnimation         = new System.Windows.Forms.PropertyGrid();
     this.toolStripAnimations           = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonAddAnimation   = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonCopyAnimation  = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonDelAnimation   = new System.Windows.Forms.ToolStripButton();
     this.listViewAnimations            = new System.Windows.Forms.ListView();
     this.groupBoxKeyFrames             = new System.Windows.Forms.GroupBox();
     this.toolStripFrames               = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonAddKeyFrame    = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonDeleteKeyFrame = new System.Windows.Forms.ToolStripButton();
     this.tableFrames            = new XPTable.Models.Table();
     this.columnModelFrames      = new XPTable.Models.ColumnModel();
     this.comboBoxColumnArea     = new XPTable.Models.ComboBoxColumn();
     this.numberColumnDuration   = new XPTable.Models.NumberColumn();
     this.tableModelframes       = new XPTable.Models.TableModel();
     this.groupBoxTexture        = new System.Windows.Forms.GroupBox();
     this.buttonSelectTexture    = new System.Windows.Forms.Button();
     this.labelTextureName       = new System.Windows.Forms.Label();
     this.groupBox5              = new System.Windows.Forms.GroupBox();
     this.comboBoxBlendingType   = new System.Windows.Forms.ComboBox();
     this.groupBoxTint           = new System.Windows.Forms.GroupBox();
     this.textBoxColorHTML       = new System.Windows.Forms.TextBox();
     this.numericUpDownTintBlue  = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownTintGreen = new System.Windows.Forms.NumericUpDown();
     this.numericUpDownTintRed   = new System.Windows.Forms.NumericUpDown();
     this.pictureBoxTint         = new System.Windows.Forms.PictureBox();
     this.label5                            = new System.Windows.Forms.Label();
     this.label3                            = new System.Windows.Forms.Label();
     this.label4                            = new System.Windows.Forms.Label();
     this.panelLeft                         = new System.Windows.Forms.Panel();
     this.tabControl                        = new System.Windows.Forms.TabControl();
     this.tabPageAnims                      = new System.Windows.Forms.TabPage();
     this.tabPageProperties                 = new System.Windows.Forms.TabPage();
     this.toolStripButtonAddAllFrames       = new System.Windows.Forms.ToolStripButton();
     this.sceneItemPreviewControl           = new SquidEditor.GraphicsDeviceControls.SceneItemPreviewControl();
     this.toolStripButtonChangeAllDurations = new System.Windows.Forms.ToolStripButton();
     this.toolStripAnims.SuspendLayout();
     this.groupBoxAnimations.SuspendLayout();
     this.toolStripAnimations.SuspendLayout();
     this.groupBoxKeyFrames.SuspendLayout();
     this.toolStripFrames.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tableFrames)).BeginInit();
     this.groupBoxTexture.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBoxTint.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintBlue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintGreen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintRed)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTint)).BeginInit();
     this.panelLeft.SuspendLayout();
     this.tabControl.SuspendLayout();
     this.tabPageAnims.SuspendLayout();
     this.tabPageProperties.SuspendLayout();
     this.SuspendLayout();
     //
     // defaultControlPanel
     //
     this.defaultControlPanel.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.defaultControlPanel.Location = new System.Drawing.Point(620, 518);
     this.defaultControlPanel.Name     = "defaultControlPanel";
     this.defaultControlPanel.Size     = new System.Drawing.Size(200, 24);
     this.defaultControlPanel.TabIndex = 0;
     //
     // toolStripAnims
     //
     this.toolStripAnims.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripAnims.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripSeparator6,
         this.toolStripButtonZoomOut,
         this.toolStripButtonZoomNormal,
         this.toolStripButtonZoomIn
     });
     this.toolStripAnims.Location = new System.Drawing.Point(0, 0);
     this.toolStripAnims.Name     = "toolStripAnims";
     this.toolStripAnims.Size     = new System.Drawing.Size(832, 25);
     this.toolStripAnims.TabIndex = 6;
     this.toolStripAnims.Text     = "toolStrip1";
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonZoomOut
     //
     this.toolStripButtonZoomOut.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonZoomOut.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomOut.Image")));
     this.toolStripButtonZoomOut.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonZoomOut.Name = "toolStripButtonZoomOut";
     this.toolStripButtonZoomOut.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonZoomOut.Text = "Zoom Out";
     //
     // toolStripButtonZoomNormal
     //
     this.toolStripButtonZoomNormal.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonZoomNormal.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomNormal.Image")));
     this.toolStripButtonZoomNormal.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonZoomNormal.Name = "toolStripButtonZoomNormal";
     this.toolStripButtonZoomNormal.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonZoomNormal.Text = "Normal Zoom";
     //
     // toolStripButtonZoomIn
     //
     this.toolStripButtonZoomIn.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonZoomIn.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomIn.Image")));
     this.toolStripButtonZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonZoomIn.Name = "toolStripButtonZoomIn";
     this.toolStripButtonZoomIn.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonZoomIn.Text = "Zoom In";
     //
     // groupBoxAnimations
     //
     this.groupBoxAnimations.Controls.Add(this.propertyGridAnimation);
     this.groupBoxAnimations.Controls.Add(this.toolStripAnimations);
     this.groupBoxAnimations.Controls.Add(this.listViewAnimations);
     this.groupBoxAnimations.Location = new System.Drawing.Point(0, 0);
     this.groupBoxAnimations.Name     = "groupBoxAnimations";
     this.groupBoxAnimations.Size     = new System.Drawing.Size(206, 263);
     this.groupBoxAnimations.TabIndex = 11;
     this.groupBoxAnimations.TabStop  = false;
     this.groupBoxAnimations.Text     = "Animations";
     //
     // propertyGridAnimation
     //
     this.propertyGridAnimation.Anchor         = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.propertyGridAnimation.Location       = new System.Drawing.Point(3, 126);
     this.propertyGridAnimation.Name           = "propertyGridAnimation";
     this.propertyGridAnimation.PropertySort   = System.Windows.Forms.PropertySort.Alphabetical;
     this.propertyGridAnimation.Size           = new System.Drawing.Size(200, 131);
     this.propertyGridAnimation.TabIndex       = 8;
     this.propertyGridAnimation.ToolbarVisible = false;
     //
     // toolStripAnimations
     //
     this.toolStripAnimations.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripAnimations.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButtonAddAnimation,
         this.toolStripButtonCopyAnimation,
         this.toolStripButtonDelAnimation
     });
     this.toolStripAnimations.Location   = new System.Drawing.Point(3, 16);
     this.toolStripAnimations.Name       = "toolStripAnimations";
     this.toolStripAnimations.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.toolStripAnimations.Size       = new System.Drawing.Size(200, 25);
     this.toolStripAnimations.TabIndex   = 7;
     this.toolStripAnimations.Text       = "toolStrip1";
     //
     // toolStripButtonAddAnimation
     //
     this.toolStripButtonAddAnimation.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAddAnimation.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddAnimation.Image")));
     this.toolStripButtonAddAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAddAnimation.Name        = "toolStripButtonAddAnimation";
     this.toolStripButtonAddAnimation.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonAddAnimation.Text        = "toolStripButton4";
     this.toolStripButtonAddAnimation.ToolTipText = "Add New Animation";
     this.toolStripButtonAddAnimation.Click      += new System.EventHandler(this.toolStripButtonAddAnimation_Click);
     //
     // toolStripButtonCopyAnimation
     //
     this.toolStripButtonCopyAnimation.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCopyAnimation.Enabled               = false;
     this.toolStripButtonCopyAnimation.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonCopyAnimation.Image")));
     this.toolStripButtonCopyAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonCopyAnimation.Name        = "toolStripButtonCopyAnimation";
     this.toolStripButtonCopyAnimation.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonCopyAnimation.Text        = "toolStripButton3";
     this.toolStripButtonCopyAnimation.ToolTipText = "Copy Animation";
     this.toolStripButtonCopyAnimation.Click      += new System.EventHandler(this.toolStripButtonCopyAnimation_Click);
     //
     // toolStripButtonDelAnimation
     //
     this.toolStripButtonDelAnimation.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonDelAnimation.Enabled               = false;
     this.toolStripButtonDelAnimation.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDelAnimation.Image")));
     this.toolStripButtonDelAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonDelAnimation.Name        = "toolStripButtonDelAnimation";
     this.toolStripButtonDelAnimation.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonDelAnimation.Text        = "toolStripButton1";
     this.toolStripButtonDelAnimation.ToolTipText = "Delete Animation";
     this.toolStripButtonDelAnimation.Click      += new System.EventHandler(this.toolStripButtonDelAnimation_Click);
     //
     // listViewAnimations
     //
     this.listViewAnimations.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                            | System.Windows.Forms.AnchorStyles.Left)));
     this.listViewAnimations.FullRowSelect = true;
     this.listViewAnimations.HeaderStyle   = System.Windows.Forms.ColumnHeaderStyle.None;
     this.listViewAnimations.HideSelection = false;
     this.listViewAnimations.LabelEdit     = true;
     this.listViewAnimations.Location      = new System.Drawing.Point(3, 44);
     this.listViewAnimations.Name          = "listViewAnimations";
     this.listViewAnimations.Size          = new System.Drawing.Size(200, 76);
     this.listViewAnimations.TabIndex      = 2;
     this.listViewAnimations.UseCompatibleStateImageBehavior = false;
     this.listViewAnimations.View                  = System.Windows.Forms.View.List;
     this.listViewAnimations.AfterLabelEdit       += new System.Windows.Forms.LabelEditEventHandler(this.listViewAnimations_AfterLabelEdit);
     this.listViewAnimations.SelectedIndexChanged += new System.EventHandler(this.listViewAnimations_SelectedIndexChanged);
     //
     // groupBoxKeyFrames
     //
     this.groupBoxKeyFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                           | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBoxKeyFrames.Controls.Add(this.toolStripFrames);
     this.groupBoxKeyFrames.Controls.Add(this.tableFrames);
     this.groupBoxKeyFrames.Location = new System.Drawing.Point(0, 269);
     this.groupBoxKeyFrames.Name     = "groupBoxKeyFrames";
     this.groupBoxKeyFrames.Size     = new System.Drawing.Size(206, 216);
     this.groupBoxKeyFrames.TabIndex = 31;
     this.groupBoxKeyFrames.TabStop  = false;
     this.groupBoxKeyFrames.Text     = "KeyFrames";
     //
     // toolStripFrames
     //
     this.toolStripFrames.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStripFrames.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripButtonAddKeyFrame,
         this.toolStripButtonDeleteKeyFrame,
         this.toolStripButtonAddAllFrames,
         this.toolStripButtonChangeAllDurations
     });
     this.toolStripFrames.Location   = new System.Drawing.Point(3, 16);
     this.toolStripFrames.Name       = "toolStripFrames";
     this.toolStripFrames.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
     this.toolStripFrames.Size       = new System.Drawing.Size(200, 25);
     this.toolStripFrames.TabIndex   = 30;
     this.toolStripFrames.Text       = "toolStrip3";
     //
     // toolStripButtonAddKeyFrame
     //
     this.toolStripButtonAddKeyFrame.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAddKeyFrame.Enabled               = false;
     this.toolStripButtonAddKeyFrame.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddKeyFrame.Image")));
     this.toolStripButtonAddKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAddKeyFrame.Name        = "toolStripButtonAddKeyFrame";
     this.toolStripButtonAddKeyFrame.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonAddKeyFrame.Text        = "toolStripButton4";
     this.toolStripButtonAddKeyFrame.ToolTipText = "Add New KeyFrame";
     this.toolStripButtonAddKeyFrame.Click      += new System.EventHandler(this.toolStripButtonAddKeyFrame_Click);
     //
     // toolStripButtonDeleteKeyFrame
     //
     this.toolStripButtonDeleteKeyFrame.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonDeleteKeyFrame.Enabled               = false;
     this.toolStripButtonDeleteKeyFrame.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDeleteKeyFrame.Image")));
     this.toolStripButtonDeleteKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonDeleteKeyFrame.Name        = "toolStripButtonDeleteKeyFrame";
     this.toolStripButtonDeleteKeyFrame.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonDeleteKeyFrame.Text        = "toolStripButton1";
     this.toolStripButtonDeleteKeyFrame.ToolTipText = "Delete KeyFrame";
     this.toolStripButtonDeleteKeyFrame.Click      += new System.EventHandler(this.toolStripButtonDeleteKeyFrame_Click);
     //
     // tableFrames
     //
     this.tableFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.tableFrames.ColumnModel            = this.columnModelFrames;
     this.tableFrames.DataMember             = null;
     this.tableFrames.DataSourceColumnBinder = dataSourceColumnBinder1;
     this.tableFrames.EnableToolTips         = true;
     this.tableFrames.FullRowSelect          = true;
     this.tableFrames.HeaderFont             = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tableFrames.HeaderStyle            = System.Windows.Forms.ColumnHeaderStyle.None;
     this.tableFrames.Location    = new System.Drawing.Point(3, 44);
     this.tableFrames.Name        = "tableFrames";
     this.tableFrames.NoItemsText = "There are no keyframes yet";
     this.tableFrames.Size        = new System.Drawing.Size(200, 166);
     this.tableFrames.TabIndex    = 29;
     this.tableFrames.TableModel  = this.tableModelframes;
     this.tableFrames.Text        = "tableKeyframes";
     this.tableFrames.UnfocusedSelectionBackColor = System.Drawing.SystemColors.Highlight;
     this.tableFrames.UnfocusedSelectionForeColor = System.Drawing.SystemColors.HighlightText;
     this.tableFrames.CellPropertyChanged        += new XPTable.Events.CellEventHandler(this.tableFrames_CellPropertyChanged);
     this.tableFrames.SelectionChanged           += new XPTable.Events.SelectionEventHandler(this.tableFrames_SelectionChanged);
     //
     // columnModelFrames
     //
     this.columnModelFrames.Columns.AddRange(new XPTable.Models.Column[] {
         this.comboBoxColumnArea,
         this.numberColumnDuration
     });
     this.columnModelFrames.HeaderHeight = 16;
     //
     // comboBoxColumnArea
     //
     this.comboBoxColumnArea.Resizable = false;
     this.comboBoxColumnArea.Text      = "Area";
     this.comboBoxColumnArea.Width     = 146;
     //
     // numberColumnDuration
     //
     this.numberColumnDuration.Maximum = new decimal(new int[] {
         100000,
         0,
         0,
         0
     });
     this.numberColumnDuration.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.numberColumnDuration.Resizable         = false;
     this.numberColumnDuration.ShowUpDownButtons = true;
     this.numberColumnDuration.Width             = 50;
     //
     // tableModelframes
     //
     this.tableModelframes.RowHeight = 16;
     cellStyle1.BackColor            = System.Drawing.Color.Empty;
     cellStyle1.Font      = null;
     cellStyle1.ForeColor = System.Drawing.Color.Empty;
     cellStyle1.Padding   = new XPTable.Models.CellPadding(0, 0, 0, 0);
     cellStyle1.WordWrap  = false;
     cell1.CellStyle      = cellStyle1;
     cell1.Data           = "Test";
     cell1.Text           = "Test";
     cell1.WordWrap       = false;
     cellStyle2.BackColor = System.Drawing.Color.Empty;
     cellStyle2.Font      = null;
     cellStyle2.ForeColor = System.Drawing.Color.Empty;
     cellStyle2.Padding   = new XPTable.Models.CellPadding(0, 0, 0, 0);
     cellStyle2.WordWrap  = false;
     cell2.CellStyle      = cellStyle2;
     cell2.Data           = "1";
     cell2.Text           = "1";
     cell2.WordWrap       = false;
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2
     });
     row1.ChildIndex    = 0;
     row1.ExpandSubRows = true;
     row1.Height        = 27;
     this.tableModelframes.Rows.AddRange(new XPTable.Models.Row[] {
         row1
     });
     //
     // groupBoxTexture
     //
     this.groupBoxTexture.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBoxTexture.Controls.Add(this.buttonSelectTexture);
     this.groupBoxTexture.Controls.Add(this.labelTextureName);
     this.groupBoxTexture.Location = new System.Drawing.Point(6, 6);
     this.groupBoxTexture.Name     = "groupBoxTexture";
     this.groupBoxTexture.Size     = new System.Drawing.Size(197, 70);
     this.groupBoxTexture.TabIndex = 0;
     this.groupBoxTexture.TabStop  = false;
     this.groupBoxTexture.Text     = "Texture";
     //
     // buttonSelectTexture
     //
     this.buttonSelectTexture.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSelectTexture.Location = new System.Drawing.Point(56, 40);
     this.buttonSelectTexture.Name     = "buttonSelectTexture";
     this.buttonSelectTexture.Size     = new System.Drawing.Size(85, 23);
     this.buttonSelectTexture.TabIndex = 1;
     this.buttonSelectTexture.Text     = "Select Texture";
     this.buttonSelectTexture.UseVisualStyleBackColor = true;
     this.buttonSelectTexture.Click += new System.EventHandler(this.buttonSelectTexture_Click);
     //
     // labelTextureName
     //
     this.labelTextureName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTextureName.AutoEllipsis = true;
     this.labelTextureName.Font         = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelTextureName.Location     = new System.Drawing.Point(4, 16);
     this.labelTextureName.MaximumSize  = new System.Drawing.Size(188, 21);
     this.labelTextureName.Name         = "labelTextureName";
     this.labelTextureName.Size         = new System.Drawing.Size(188, 21);
     this.labelTextureName.TabIndex     = 0;
     this.labelTextureName.Text         = "LG | Big Texture ";
     this.labelTextureName.TextAlign    = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.comboBoxBlendingType);
     this.groupBox5.Location = new System.Drawing.Point(6, 82);
     this.groupBox5.Name     = "groupBox5";
     this.groupBox5.Size     = new System.Drawing.Size(197, 49);
     this.groupBox5.TabIndex = 14;
     this.groupBox5.TabStop  = false;
     this.groupBox5.Text     = "Blending Type";
     //
     // comboBoxBlendingType
     //
     this.comboBoxBlendingType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxBlendingType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxBlendingType.FormattingEnabled = true;
     this.comboBoxBlendingType.Location          = new System.Drawing.Point(6, 19);
     this.comboBoxBlendingType.Name                  = "comboBoxBlendingType";
     this.comboBoxBlendingType.Size                  = new System.Drawing.Size(185, 21);
     this.comboBoxBlendingType.TabIndex              = 0;
     this.comboBoxBlendingType.SelectedIndexChanged += new System.EventHandler(this.comboBoxBlendingType_SelectedIndexChanged);
     //
     // groupBoxTint
     //
     this.groupBoxTint.Controls.Add(this.textBoxColorHTML);
     this.groupBoxTint.Controls.Add(this.numericUpDownTintBlue);
     this.groupBoxTint.Controls.Add(this.numericUpDownTintGreen);
     this.groupBoxTint.Controls.Add(this.numericUpDownTintRed);
     this.groupBoxTint.Controls.Add(this.pictureBoxTint);
     this.groupBoxTint.Controls.Add(this.label5);
     this.groupBoxTint.Controls.Add(this.label3);
     this.groupBoxTint.Controls.Add(this.label4);
     this.groupBoxTint.Location = new System.Drawing.Point(6, 137);
     this.groupBoxTint.Name     = "groupBoxTint";
     this.groupBoxTint.Size     = new System.Drawing.Size(197, 105);
     this.groupBoxTint.TabIndex = 4;
     this.groupBoxTint.TabStop  = false;
     this.groupBoxTint.Text     = "Tint Color";
     //
     // textBoxColorHTML
     //
     this.textBoxColorHTML.Location   = new System.Drawing.Point(16, 79);
     this.textBoxColorHTML.Name       = "textBoxColorHTML";
     this.textBoxColorHTML.Size       = new System.Drawing.Size(72, 20);
     this.textBoxColorHTML.TabIndex   = 4;
     this.textBoxColorHTML.Text       = "#FFFFFF";
     this.textBoxColorHTML.TextAlign  = System.Windows.Forms.HorizontalAlignment.Center;
     this.textBoxColorHTML.Validated += new System.EventHandler(this.textBoxColorHTML_Validated);
     this.textBoxColorHTML.Click     += new System.EventHandler(this.textBoxColorHTML_Click);
     this.textBoxColorHTML.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.textBoxColorHTML_KeyDown);
     this.textBoxColorHTML.Enter     += new System.EventHandler(this.textBoxColorHTML_Enter);
     //
     // numericUpDownTintBlue
     //
     this.numericUpDownTintBlue.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.numericUpDownTintBlue.Location = new System.Drawing.Point(153, 79);
     this.numericUpDownTintBlue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintBlue.Name      = "numericUpDownTintBlue";
     this.numericUpDownTintBlue.Size      = new System.Drawing.Size(41, 20);
     this.numericUpDownTintBlue.TabIndex  = 12;
     this.numericUpDownTintBlue.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numericUpDownTintBlue.Value     = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintBlue.ValueChanged += new System.EventHandler(this.numericUpDownTintBlue_ValueChanged);
     //
     // numericUpDownTintGreen
     //
     this.numericUpDownTintGreen.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.numericUpDownTintGreen.Location = new System.Drawing.Point(153, 53);
     this.numericUpDownTintGreen.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintGreen.Name      = "numericUpDownTintGreen";
     this.numericUpDownTintGreen.Size      = new System.Drawing.Size(41, 20);
     this.numericUpDownTintGreen.TabIndex  = 11;
     this.numericUpDownTintGreen.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numericUpDownTintGreen.Value     = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintGreen.ValueChanged += new System.EventHandler(this.numericUpDownTintGreen_ValueChanged);
     //
     // numericUpDownTintRed
     //
     this.numericUpDownTintRed.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.numericUpDownTintRed.Location = new System.Drawing.Point(153, 26);
     this.numericUpDownTintRed.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintRed.Name      = "numericUpDownTintRed";
     this.numericUpDownTintRed.Size      = new System.Drawing.Size(41, 20);
     this.numericUpDownTintRed.TabIndex  = 10;
     this.numericUpDownTintRed.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.numericUpDownTintRed.Value     = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.numericUpDownTintRed.ValueChanged += new System.EventHandler(this.numericUpDownTintRed_ValueChanged);
     //
     // pictureBoxTint
     //
     this.pictureBoxTint.BackColor   = System.Drawing.Color.White;
     this.pictureBoxTint.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBoxTint.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxTint.Location    = new System.Drawing.Point(28, 26);
     this.pictureBoxTint.Name        = "pictureBoxTint";
     this.pictureBoxTint.Size        = new System.Drawing.Size(48, 48);
     this.pictureBoxTint.TabIndex    = 9;
     this.pictureBoxTint.TabStop     = false;
     this.pictureBoxTint.Click      += new System.EventHandler(this.pictureBoxTint_Click);
     //
     // label5
     //
     this.label5.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(119, 81);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(28, 13);
     this.label5.TabIndex = 6;
     this.label5.Text     = "Blue";
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(111, 55);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(36, 13);
     this.label3.TabIndex = 1;
     this.label3.Text     = "Green";
     //
     // label4
     //
     this.label4.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(120, 29);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(27, 13);
     this.label4.TabIndex = 0;
     this.label4.Text     = "Red";
     //
     // panelLeft
     //
     this.panelLeft.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.panelLeft.Controls.Add(this.tabControl);
     this.panelLeft.Location = new System.Drawing.Point(12, 28);
     this.panelLeft.Name     = "panelLeft";
     this.panelLeft.Size     = new System.Drawing.Size(217, 514);
     this.panelLeft.TabIndex = 33;
     //
     // tabControl
     //
     this.tabControl.Controls.Add(this.tabPageAnims);
     this.tabControl.Controls.Add(this.tabPageProperties);
     this.tabControl.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.tabControl.Location      = new System.Drawing.Point(0, 0);
     this.tabControl.Name          = "tabControl";
     this.tabControl.SelectedIndex = 0;
     this.tabControl.Size          = new System.Drawing.Size(217, 514);
     this.tabControl.TabIndex      = 0;
     //
     // tabPageAnims
     //
     this.tabPageAnims.Controls.Add(this.groupBoxAnimations);
     this.tabPageAnims.Controls.Add(this.groupBoxKeyFrames);
     this.tabPageAnims.Location = new System.Drawing.Point(4, 22);
     this.tabPageAnims.Name     = "tabPageAnims";
     this.tabPageAnims.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageAnims.Size     = new System.Drawing.Size(209, 488);
     this.tabPageAnims.TabIndex = 0;
     this.tabPageAnims.Text     = "Animation";
     this.tabPageAnims.UseVisualStyleBackColor = true;
     //
     // tabPageProperties
     //
     this.tabPageProperties.Controls.Add(this.groupBoxTexture);
     this.tabPageProperties.Controls.Add(this.groupBox5);
     this.tabPageProperties.Controls.Add(this.groupBoxTint);
     this.tabPageProperties.Location = new System.Drawing.Point(4, 22);
     this.tabPageProperties.Name     = "tabPageProperties";
     this.tabPageProperties.Padding  = new System.Windows.Forms.Padding(3);
     this.tabPageProperties.Size     = new System.Drawing.Size(209, 488);
     this.tabPageProperties.TabIndex = 1;
     this.tabPageProperties.Text     = "Properties";
     this.tabPageProperties.UseVisualStyleBackColor = true;
     //
     // toolStripButtonAddAllFrames
     //
     this.toolStripButtonAddAllFrames.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAddAllFrames.Enabled               = false;
     this.toolStripButtonAddAllFrames.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddAllFrames.Image")));
     this.toolStripButtonAddAllFrames.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAddAllFrames.Name        = "toolStripButtonAddAllFrames";
     this.toolStripButtonAddAllFrames.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonAddAllFrames.Text        = "AddAllFrames";
     this.toolStripButtonAddAllFrames.ToolTipText = "Add All Frames";
     this.toolStripButtonAddAllFrames.Click      += new System.EventHandler(this.toolStripButtonAddAllFrames_Click);
     //
     // sceneItemPreviewControl
     //
     this.sceneItemPreviewControl.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.sceneItemPreviewControl.Location = new System.Drawing.Point(235, 28);
     this.sceneItemPreviewControl.Name     = "sceneItemPreviewControl";
     this.sceneItemPreviewControl.Size     = new System.Drawing.Size(585, 484);
     this.sceneItemPreviewControl.TabIndex = 34;
     this.sceneItemPreviewControl.Text     = "sceneItemPreviewControl1";
     //
     // toolStripButtonChangeAllDurations
     //
     this.toolStripButtonChangeAllDurations.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonChangeAllDurations.Enabled               = false;
     this.toolStripButtonChangeAllDurations.Image                 = ((System.Drawing.Image)(resources.GetObject("toolStripButtonChangeAllDurations.Image")));
     this.toolStripButtonChangeAllDurations.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonChangeAllDurations.Name        = "toolStripButtonChangeAllDurations";
     this.toolStripButtonChangeAllDurations.Size        = new System.Drawing.Size(23, 22);
     this.toolStripButtonChangeAllDurations.Text        = "toolStripButton1";
     this.toolStripButtonChangeAllDurations.ToolTipText = "Copy all frame durations from #1";
     this.toolStripButtonChangeAllDurations.Click      += new System.EventHandler(this.toolStripButtonChangeAllDurations_Click);
     //
     // AnimatedSpriteEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(832, 554);
     this.Controls.Add(this.sceneItemPreviewControl);
     this.Controls.Add(this.panelLeft);
     this.Controls.Add(this.toolStripAnims);
     this.Controls.Add(this.defaultControlPanel);
     this.Icon        = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(245, 450);
     this.Name        = "AnimatedSpriteEditor";
     this.Text        = "AnimatedSprite Editor";
     this.Load       += new System.EventHandler(this.AnimatedSpriteEditor_Load);
     this.toolStripAnims.ResumeLayout(false);
     this.toolStripAnims.PerformLayout();
     this.groupBoxAnimations.ResumeLayout(false);
     this.groupBoxAnimations.PerformLayout();
     this.toolStripAnimations.ResumeLayout(false);
     this.toolStripAnimations.PerformLayout();
     this.groupBoxKeyFrames.ResumeLayout(false);
     this.groupBoxKeyFrames.PerformLayout();
     this.toolStripFrames.ResumeLayout(false);
     this.toolStripFrames.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tableFrames)).EndInit();
     this.groupBoxTexture.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBoxTint.ResumeLayout(false);
     this.groupBoxTint.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintBlue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintGreen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintRed)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTint)).EndInit();
     this.panelLeft.ResumeLayout(false);
     this.tabControl.ResumeLayout(false);
     this.tabPageAnims.ResumeLayout(false);
     this.tabPageProperties.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void FillArtistList()
        {
            Cursor.Current = Cursors.WaitCursor;

            personGroup.PersonGroup.Clear();
            personGroupAdapter.Fill(personGroup.PersonGroup);

            personGroupListBox.Items.Clear();
            personGroupTable.TableModel.Rows.Clear();

            foreach (PersonGroupDataSet.PersonGroupRow row in personGroup.PersonGroup)
            {
                // Leeren Interpreten nicht anzeigen. Kann schon mal angelegt werden.
                if (string.IsNullOrEmpty(row.Name))
                {
                    continue;
                }

                if (personGroupListBox.Visible)
                {
                    try
                    {
                        personGroupListBox.Items.Add(row);
                    }
                    catch
                    {
                    }
                }
                else
                {
                    XPTable.Models.Row newRow = new XPTable.Models.Row();
                    newRow.Cells.Add(new XPTable.Models.Cell(row.Name));
                    newRow.Cells.Add(new XPTable.Models.Cell(row.SaveAs));
                    newRow.Cells.Add(new XPTable.Models.Cell(DataBase.GetNameOfPersonGroupType((PersonGroupType)(row.IsTypeNull() ? 0 : row.Type))));
                    newRow.Cells.Add(new XPTable.Models.Cell(DataBase.GetNameOfPersonGroupSex((SexType)(row.IsSexNull() ? 0 : row.Sex))));
                    newRow.Cells.Add(new XPTable.Models.Cell(row.Country));

                    string date = row.IsBirthDayNull() ? "" : Misc.FormatDate(row.BirthDay);
                    XPTable.Models.Cell cellBirthDay = new XPTable.Models.Cell(date);
                    if (row.IsBirthDayNull())
                    {
                        cellBirthDay.Data = null;
                    }
                    else
                    {
                        cellBirthDay.Data = Misc.Atoi(row.BirthDay);
                    }
                    newRow.Cells.Add(cellBirthDay);

                    date = row.IsDayOfDeathNull() ? "" : Misc.FormatDate(row.DayOfDeath);
                    XPTable.Models.Cell cellDayOfDeath = new XPTable.Models.Cell(date);
                    if (row.IsDayOfDeathNull())
                    {
                        cellDayOfDeath.Data = null;
                    }
                    else
                    {
                        cellDayOfDeath.Data = Misc.Atoi(row.DayOfDeath);
                    }
                    newRow.Cells.Add(cellDayOfDeath);

                    newRow.Cells.Add(new XPTable.Models.Cell(row.URL));

                    XPTable.Models.Cell cellImageFilename = new XPTable.Models.Cell(row.IsImageFilenameNull() ? "" : row.ImageFilename);
                    if (row.IsImageFilenameNull())
                    {
                        cellImageFilename.Data = null;
                    }
                    else
                    {
                        cellImageFilename.Data = row.ImageFilename;
                    }
                    newRow.Cells.Add(cellImageFilename);

                    newRow.Cells.Add(new XPTable.Models.Cell(row.Comment));
                    newRow.Cells.Add(new XPTable.Models.Cell(""));
                    newRow.Tag = row;
                    personGroupTable.TableModel.Rows.Add(newRow);
                }
            }

            toolStripLabelCount.Text = String.Format(StringTable.NumberOfPersonsGroups, personGroup.PersonGroup.Count);

            Cursor.Current = Cursors.Default;

            if (personGroupListBox.Visible)
            {
                //personGroupListBox.Sorted = false;
                //personGroupListBox.Sorted = true;
            }
        }
        /// <summary>
        /// Adds the emty row.
        /// </summary>
        /// <remarks>Documented by Dev05, 2007-11-02</remarks>
        private void AddEmtyRow()
        {
            List<XPTable.Models.Row> rowsToDelete = new List<XPTable.Models.Row>();

            foreach (XPTable.Models.Row rowToCheck in tableOtherElements.TableModel.Rows)
            {
                if (rowToCheck.Cells[1].Text.Length == 0 && rowToCheck.Cells[2].Text.Length == 0)
                    rowsToDelete.Add(rowToCheck);
            }

            foreach (XPTable.Models.Row rowToDelete in rowsToDelete)
                tableOtherElements.TableModel.Rows.Remove(rowToDelete);

            XPTable.Models.Row row = new XPTable.Models.Row();
            tableOtherElements.TableModel.Rows.Add(row);
            row.Cells.Add(new XPTable.Models.Cell("x"));
            row.Cells.Add(new XPTable.Models.Cell(""));
            row.Cells.Add(new XPTable.Models.Cell(""));
        }
Exemple #17
0
 void StrikeRow(XPTable.Models.Row row, bool strike)
 {
     XPTable.Models.Cell c = row.Cells[1];
     c.CellStyle.Font = new Font(c.CellStyle.Font, strike ? FontStyle.Strikeout : FontStyle.Regular);
     table.InvalidateCell(c);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            XPTable.Models.Row row1 = new XPTable.Models.Row();
            XPTable.Models.Cell cell1 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell2 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell3 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell4 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell5 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell6 = new XPTable.Models.Cell();
            XPTable.Models.Row row2 = new XPTable.Models.Row();
            XPTable.Models.Cell cell7 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell8 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell9 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell10 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell11 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell12 = new XPTable.Models.Cell();
            XPTable.Models.Row row3 = new XPTable.Models.Row();
            XPTable.Models.Cell cell13 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell14 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell15 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell16 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell17 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell18 = new XPTable.Models.Cell();
            XPTable.Models.Row row4 = new XPTable.Models.Row();
            XPTable.Models.Cell cell19 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell20 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell21 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell22 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell23 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell24 = new XPTable.Models.Cell();
            XPTable.Models.Row row5 = new XPTable.Models.Row();
            XPTable.Models.Cell cell25 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell26 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell27 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell28 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell29 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell30 = new XPTable.Models.Cell();
            XPTable.Models.Row row6 = new XPTable.Models.Row();
            XPTable.Models.Cell cell31 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell32 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell33 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell34 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell35 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell36 = new XPTable.Models.Cell();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tblP1 = new XPTable.Models.Table();
            this.tblcolP1 = new XPTable.Models.ColumnModel();
            this.textColumn3 = new XPTable.Models.TextColumn();
            this.textColumn4 = new XPTable.Models.TextColumn();
            this.textColumn5 = new XPTable.Models.TextColumn();
            this.numberColumn1 = new XPTable.Models.NumberColumn();
            this.numberColumn6 = new XPTable.Models.NumberColumn();
            this.numberColumn7 = new XPTable.Models.NumberColumn();
            this.numberColumn8 = new XPTable.Models.NumberColumn();
            this.numberColumn9 = new XPTable.Models.NumberColumn();
            this.numberColumn10 = new XPTable.Models.NumberColumn();
            this.textColumn6 = new XPTable.Models.TextColumn();
            this.textColumn7 = new XPTable.Models.TextColumn();
            this.textColumn8 = new XPTable.Models.TextColumn();
            this.numberColumn11 = new XPTable.Models.NumberColumn();
            this.numberColumn12 = new XPTable.Models.NumberColumn();
            this.textColumn9 = new XPTable.Models.TextColumn();
            this.tblmdlP1 = new XPTable.Models.TableModel();
            this.btnClose = new System.Windows.Forms.Button();
            this.btnEdit = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnAdd = new System.Windows.Forms.Button();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.tblP2 = new XPTable.Models.Table();
            this.tblcolP2 = new XPTable.Models.ColumnModel();
            this.textColumn2 = new XPTable.Models.TextColumn();
            this.textColumn1 = new XPTable.Models.TextColumn();
            this.numberColumn2 = new XPTable.Models.NumberColumn();
            this.numberColumn3 = new XPTable.Models.NumberColumn();
            this.numberColumn4 = new XPTable.Models.NumberColumn();
            this.numberColumn5 = new XPTable.Models.NumberColumn();
            this.tblmdlP2 = new XPTable.Models.TableModel();
            this.button1 = new System.Windows.Forms.Button();
            this.dtIDate = new System.Windows.Forms.DateTimePicker();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tblP1)).BeginInit();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tblP2)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.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.groupBox1.Controls.Add(this.tblP1);
            this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(718, 276);
            this.groupBox1.TabIndex = 24;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Phần I : Danh sách lao động có thay đổi so với tháng trước";
            // 
            // tblP1
            // 
            this.tblP1.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
            this.tblP1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
            this.tblP1.ColumnModel = this.tblcolP1;
            this.tblP1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tblP1.EditStartAction = XPTable.Editors.EditStartAction.SingleClick;
            this.tblP1.EnableToolTips = true;
            this.tblP1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblP1.FullRowSelect = true;
            this.tblP1.GridColor = System.Drawing.SystemColors.ControlDark;
            this.tblP1.GridLines = XPTable.Models.GridLines.Both;
            this.tblP1.GridLineStyle = XPTable.Models.GridLineStyle.Dot;
            this.tblP1.HeaderFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.tblP1.Location = new System.Drawing.Point(3, 16);
            this.tblP1.MultiSelect = true;
            this.tblP1.Name = "tblP1";
            this.tblP1.NoItemsText = "Không tìm thấy thông tin";
            this.tblP1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
            this.tblP1.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblP1.SelectionStyle = XPTable.Models.SelectionStyle.Grid;
            this.tblP1.Size = new System.Drawing.Size(712, 257);
            this.tblP1.SortedColumnBackColor = System.Drawing.Color.Transparent;
            this.tblP1.TabIndex = 79;
            this.tblP1.TableModel = this.tblmdlP1;
            this.tblP1.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
            this.tblP1.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblP1.EditingStopped += new XPTable.Events.CellEditEventHandler(this.tblP1_EditingStopped);
            // 
            // tblcolP1
            // 
            this.tblcolP1.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumn3,
            this.textColumn4,
            this.textColumn5,
            this.numberColumn1,
            this.numberColumn6,
            this.numberColumn7,
            this.numberColumn8,
            this.numberColumn9,
            this.numberColumn10,
            this.textColumn6,
            this.textColumn7,
            this.textColumn8,
            this.numberColumn11,
            this.numberColumn12,
            this.textColumn9});
            // 
            // textColumn3
            // 
            this.textColumn3.Format = "(#,###);";
            this.textColumn3.Text = "STT";
            this.textColumn3.Width = 30;
            // 
            // textColumn4
            // 
            this.textColumn4.Text = "Họ và tên(2)";
            // 
            // textColumn5
            // 
            this.textColumn5.Text = "Số sổ BHXH(3)";
            // 
            // numberColumn1
            // 
            this.numberColumn1.Format = "#,###;(#,###);";
            this.numberColumn1.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn1.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn1.Text = "LươngCB cũ(4)";
            // 
            // numberColumn6
            // 
            this.numberColumn6.Format = "#,###;(#,###);";
            this.numberColumn6.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn6.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn6.Text = "Phụ cấp cũ(5)";
            // 
            // numberColumn7
            // 
            this.numberColumn7.Format = "#,###;(#,###);";
            this.numberColumn7.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn7.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn7.Text = "LươngCB mới(6)";
            // 
            // numberColumn8
            // 
            this.numberColumn8.Format = "#,###;(#,###);";
            this.numberColumn8.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn8.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn8.Text = "Phụ cấp mới(7)";
            // 
            // numberColumn9
            // 
            this.numberColumn9.Format = "#,###;(#,###);";
            this.numberColumn9.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn9.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn9.Text = "Tăng(8)";
            // 
            // numberColumn10
            // 
            this.numberColumn10.Format = "#,###;(#,###);";
            this.numberColumn10.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn10.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn10.Text = "Giảm(9)";
            // 
            // textColumn6
            // 
            this.textColumn6.Text = "Từ tháng(10)";
            // 
            // textColumn7
            // 
            this.textColumn7.Text = "Từ tháng(11)";
            // 
            // textColumn8
            // 
            this.textColumn8.Text = "Từ tháng(12)";
            // 
            // numberColumn11
            // 
            this.numberColumn11.Format = "#,###;(#,###);";
            this.numberColumn11.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn11.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn11.Text = "Số tăng(13)";
            // 
            // numberColumn12
            // 
            this.numberColumn12.Format = "#,###;(#,###);";
            this.numberColumn12.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn12.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn12.Text = "Số giảm(14)";
            // 
            // textColumn9
            // 
            this.textColumn9.Text = "Ghi chú(15)";
            // 
            // btnClose
            // 
            this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnClose.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.btnClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnClose.Location = new System.Drawing.Point(655, 481);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(75, 23);
            this.btnClose.TabIndex = 23;
            this.btnClose.Text = "Đóng";
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnEdit
            // 
            this.btnEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnEdit.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.btnEdit.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnEdit.Location = new System.Drawing.Point(575, 294);
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Size = new System.Drawing.Size(75, 23);
            this.btnEdit.TabIndex = 21;
            this.btnEdit.Text = "Sửa";
            // 
            // btnDelete
            // 
            this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnDelete.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.btnDelete.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnDelete.Location = new System.Drawing.Point(655, 294);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(75, 23);
            this.btnDelete.TabIndex = 22;
            this.btnDelete.Text = "Xóa";
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnAdd
            // 
            this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnAdd.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.btnAdd.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.btnAdd.Location = new System.Drawing.Point(495, 294);
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.Size = new System.Drawing.Size(75, 23);
            this.btnAdd.TabIndex = 20;
            this.btnAdd.Text = "Thêm";
            this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
            // 
            // groupBox2
            // 
            this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox2.Controls.Add(this.tblP2);
            this.groupBox2.Location = new System.Drawing.Point(12, 323);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(717, 152);
            this.groupBox2.TabIndex = 25;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Phần II : Tổng hợp tình hình lao động, Quỹ lương, Số phải nộp BHXH";
            // 
            // tblP2
            // 
            this.tblP2.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
            this.tblP2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
            this.tblP2.ColumnModel = this.tblcolP2;
            this.tblP2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tblP2.EnableToolTips = true;
            this.tblP2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblP2.FullRowSelect = true;
            this.tblP2.GridColor = System.Drawing.SystemColors.ControlDark;
            this.tblP2.GridLines = XPTable.Models.GridLines.Both;
            this.tblP2.GridLineStyle = XPTable.Models.GridLineStyle.Dot;
            this.tblP2.HeaderFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.tblP2.Location = new System.Drawing.Point(3, 16);
            this.tblP2.Name = "tblP2";
            this.tblP2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
            this.tblP2.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblP2.SelectionStyle = XPTable.Models.SelectionStyle.Grid;
            this.tblP2.Size = new System.Drawing.Size(711, 133);
            this.tblP2.SortedColumnBackColor = System.Drawing.Color.Transparent;
            this.tblP2.TabIndex = 80;
            this.tblP2.TableModel = this.tblmdlP2;
            this.tblP2.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
            this.tblP2.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            // 
            // tblcolP2
            // 
            this.tblcolP2.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumn2,
            this.textColumn1,
            this.numberColumn2,
            this.numberColumn3,
            this.numberColumn4,
            this.numberColumn5});
            // 
            // textColumn2
            // 
            this.textColumn2.Editable = false;
            this.textColumn2.Sortable = false;
            this.textColumn2.Text = "STT";
            this.textColumn2.Width = 30;
            // 
            // textColumn1
            // 
            this.textColumn1.Editable = false;
            this.textColumn1.Sortable = false;
            this.textColumn1.Text = "Chỉ tiêu";
            this.textColumn1.Width = 270;
            // 
            // numberColumn2
            // 
            this.numberColumn2.Format = "#,###;(#,###);";
            this.numberColumn2.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn2.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn2.Sortable = false;
            this.numberColumn2.Text = "Tháng trước";
            this.numberColumn2.Width = 100;
            // 
            // numberColumn3
            // 
            this.numberColumn3.Format = "#,###;(#,###);";
            this.numberColumn3.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn3.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn3.Sortable = false;
            this.numberColumn3.Text = "Tháng này tăng";
            this.numberColumn3.Width = 100;
            // 
            // numberColumn4
            // 
            this.numberColumn4.Format = "#,###;(#,###);";
            this.numberColumn4.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn4.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn4.Sortable = false;
            this.numberColumn4.Text = "Tháng này giảm";
            this.numberColumn4.Width = 100;
            // 
            // numberColumn5
            // 
            this.numberColumn5.Format = "#,###;(#,###);";
            this.numberColumn5.Increment = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.numberColumn5.Maximum = new decimal(new int[] {
            1000000000,
            0,
            0,
            0});
            this.numberColumn5.Sortable = false;
            this.numberColumn5.Text = "Tổng số";
            this.numberColumn5.Width = 100;
            // 
            // tblmdlP2
            // 
            cell1.Data = "";
            cell1.Text = "1";
            cell2.Text = "Tổng số lao động tham gia BHXH";
            row1.Cells.AddRange(new XPTable.Models.Cell[] {
            cell1,
            cell2,
            cell3,
            cell4,
            cell5,
            cell6});
            cell7.Data = "";
            cell7.Text = "2";
            cell8.Text = "Tổng số phiếu KCB";
            row2.Cells.AddRange(new XPTable.Models.Cell[] {
            cell7,
            cell8,
            cell9,
            cell10,
            cell11,
            cell12});
            cell13.Data = "";
            cell13.Text = "3";
            cell14.Text = "Tổng quỹ tiền lương";
            row3.Cells.AddRange(new XPTable.Models.Cell[] {
            cell13,
            cell14,
            cell15,
            cell16,
            cell17,
            cell18});
            cell19.Data = "";
            cell19.Text = "4";
            cell20.Text = "Số phải nộp tính theo quỹ lương hàng tháng";
            row4.Cells.AddRange(new XPTable.Models.Cell[] {
            cell19,
            cell20,
            cell21,
            cell22,
            cell23,
            cell24});
            cell25.Data = "";
            cell25.Text = "5";
            cell26.Text = "Số điều chỉnh tháng này (cột 13-14)";
            row5.Cells.AddRange(new XPTable.Models.Cell[] {
            cell25,
            cell26,
            cell27,
            cell28,
            cell29,
            cell30});
            cell31.Data = "";
            cell31.Text = "6";
            cell32.Text = "Tổng số phải nộp BHXH tháng này (VI = IV + V)";
            row6.Cells.AddRange(new XPTable.Models.Cell[] {
            cell31,
            cell32,
            cell33,
            cell34,
            cell35,
            cell36});
            this.tblmdlP2.Rows.AddRange(new XPTable.Models.Row[] {
            row1,
            row2,
            row3,
            row4,
            row5,
            row6});
            // 
            // button1
            // 
            this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.button1.Font = new System.Drawing.Font("Tahoma", 8.25F);
            this.button1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.button1.Location = new System.Drawing.Point(574, 481);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 26;
            this.button1.Text = "Báo cáo";
            this.button1.Click += new System.EventHandler(this.btnPrint_Click);
            // 
            // dtIDate
            // 
            this.dtIDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.dtIDate.CustomFormat = "dd/MM/yyyy";
            this.dtIDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtIDate.Location = new System.Drawing.Point(12, 482);
            this.dtIDate.Name = "dtIDate";
            this.dtIDate.Size = new System.Drawing.Size(107, 20);
            this.dtIDate.TabIndex = 27;
            this.dtIDate.ValueChanged += new System.EventHandler(this.dtIDate_ValueChanged);
            // 
            // frmInsuranceC47
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(742, 516);
            this.Controls.Add(this.dtIDate);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnEdit);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnAdd);
            this.Name = "frmInsuranceC47";
            this.Text = "Danh sách lao động điều chỉnh mức lương, phụ cấp nộp BHXH";
            this.Load += new System.EventHandler(this.frmInsuranceC47_Load);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tblP1)).EndInit();
            this.groupBox2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tblP2)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AnimatedSpriteEditor));
            XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder2 = new XPTable.Models.DataSourceColumnBinder();
            XPTable.Models.Row row2 = new XPTable.Models.Row();
            XPTable.Models.Cell cell3 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle3 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell4 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle4 = new XPTable.Models.CellStyle();
            this.defaultControlPanel = new MilkshakeLibrary.DefaultControlPanel();
            this.toolStripAnims = new System.Windows.Forms.ToolStrip();
            this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonZoomOut = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonZoomNormal = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonZoomIn = new System.Windows.Forms.ToolStripButton();
            this.groupBoxAnimations = new System.Windows.Forms.GroupBox();
            this.propertyGridAnimation = new System.Windows.Forms.PropertyGrid();
            this.toolStripAnimations = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonAddAnimation = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDelAnimation = new System.Windows.Forms.ToolStripButton();
            this.listViewAnimations = new System.Windows.Forms.ListView();
            this.groupBoxKeyFrames = new System.Windows.Forms.GroupBox();
            this.toolStripFrames = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonAddKeyFrame = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDeleteKeyFrame = new System.Windows.Forms.ToolStripButton();
            this.tableFrames = new XPTable.Models.Table();
            this.columnModelFrames = new XPTable.Models.ColumnModel();
            this.comboBoxColumnArea = new XPTable.Models.ComboBoxColumn();
            this.numberColumnDuration = new XPTable.Models.NumberColumn();
            this.tableModelframes = new XPTable.Models.TableModel();
            this.groupBoxTexture = new System.Windows.Forms.GroupBox();
            this.buttonSelectTexture = new System.Windows.Forms.Button();
            this.labelTextureName = new System.Windows.Forms.Label();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.comboBoxBlendingType = new System.Windows.Forms.ComboBox();
            this.groupBoxTint = new System.Windows.Forms.GroupBox();
            this.textBoxColorHTML = new System.Windows.Forms.TextBox();
            this.numericUpDownTintBlue = new System.Windows.Forms.NumericUpDown();
            this.numericUpDownTintGreen = new System.Windows.Forms.NumericUpDown();
            this.numericUpDownTintRed = new System.Windows.Forms.NumericUpDown();
            this.pictureBoxTint = new System.Windows.Forms.PictureBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.panelLeft = new System.Windows.Forms.Panel();
            this.tabControl = new System.Windows.Forms.TabControl();
            this.tabPageAnims = new System.Windows.Forms.TabPage();
            this.tabPageProperties = new System.Windows.Forms.TabPage();
            this.sceneItemPreviewControl = new Milkshake.GraphicsDeviceControls.SceneItemPreviewControl();
            this.toolStripButtonCopyAnimation = new System.Windows.Forms.ToolStripButton();
            this.toolStripAnims.SuspendLayout();
            this.groupBoxAnimations.SuspendLayout();
            this.toolStripAnimations.SuspendLayout();
            this.groupBoxKeyFrames.SuspendLayout();
            this.toolStripFrames.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableFrames)).BeginInit();
            this.groupBoxTexture.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBoxTint.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintBlue)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintGreen)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintRed)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTint)).BeginInit();
            this.panelLeft.SuspendLayout();
            this.tabControl.SuspendLayout();
            this.tabPageAnims.SuspendLayout();
            this.tabPageProperties.SuspendLayout();
            this.SuspendLayout();
            // 
            // defaultControlPanel
            // 
            this.defaultControlPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.defaultControlPanel.Location = new System.Drawing.Point(620, 518);
            this.defaultControlPanel.Name = "defaultControlPanel";
            this.defaultControlPanel.Size = new System.Drawing.Size(200, 24);
            this.defaultControlPanel.TabIndex = 0;
            // 
            // toolStripAnims
            // 
            this.toolStripAnims.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripAnims.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator6,
            this.toolStripButtonZoomOut,
            this.toolStripButtonZoomNormal,
            this.toolStripButtonZoomIn});
            this.toolStripAnims.Location = new System.Drawing.Point(0, 0);
            this.toolStripAnims.Name = "toolStripAnims";
            this.toolStripAnims.Size = new System.Drawing.Size(832, 25);
            this.toolStripAnims.TabIndex = 6;
            this.toolStripAnims.Text = "toolStrip1";
            // 
            // toolStripSeparator6
            // 
            this.toolStripSeparator6.Name = "toolStripSeparator6";
            this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonZoomOut
            // 
            this.toolStripButtonZoomOut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomOut.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomOut.Image")));
            this.toolStripButtonZoomOut.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomOut.Name = "toolStripButtonZoomOut";
            this.toolStripButtonZoomOut.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomOut.Text = "Zoom Out";
            // 
            // toolStripButtonZoomNormal
            // 
            this.toolStripButtonZoomNormal.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomNormal.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomNormal.Image")));
            this.toolStripButtonZoomNormal.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomNormal.Name = "toolStripButtonZoomNormal";
            this.toolStripButtonZoomNormal.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomNormal.Text = "Normal Zoom";
            // 
            // toolStripButtonZoomIn
            // 
            this.toolStripButtonZoomIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomIn.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomIn.Image")));
            this.toolStripButtonZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomIn.Name = "toolStripButtonZoomIn";
            this.toolStripButtonZoomIn.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomIn.Text = "Zoom In";
            // 
            // groupBoxAnimations
            // 
            this.groupBoxAnimations.Controls.Add(this.propertyGridAnimation);
            this.groupBoxAnimations.Controls.Add(this.toolStripAnimations);
            this.groupBoxAnimations.Controls.Add(this.listViewAnimations);
            this.groupBoxAnimations.Location = new System.Drawing.Point(0, 0);
            this.groupBoxAnimations.Name = "groupBoxAnimations";
            this.groupBoxAnimations.Size = new System.Drawing.Size(206, 263);
            this.groupBoxAnimations.TabIndex = 11;
            this.groupBoxAnimations.TabStop = false;
            this.groupBoxAnimations.Text = "Animations";
            // 
            // propertyGridAnimation
            // 
            this.propertyGridAnimation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.propertyGridAnimation.Location = new System.Drawing.Point(3, 126);
            this.propertyGridAnimation.Name = "propertyGridAnimation";
            this.propertyGridAnimation.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
            this.propertyGridAnimation.Size = new System.Drawing.Size(200, 131);
            this.propertyGridAnimation.TabIndex = 8;
            this.propertyGridAnimation.ToolbarVisible = false;
            // 
            // toolStripAnimations
            // 
            this.toolStripAnimations.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripAnimations.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonAddAnimation,
            this.toolStripButtonCopyAnimation,
            this.toolStripButtonDelAnimation});
            this.toolStripAnimations.Location = new System.Drawing.Point(3, 16);
            this.toolStripAnimations.Name = "toolStripAnimations";
            this.toolStripAnimations.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripAnimations.Size = new System.Drawing.Size(200, 25);
            this.toolStripAnimations.TabIndex = 7;
            this.toolStripAnimations.Text = "toolStrip1";
            // 
            // toolStripButtonAddAnimation
            // 
            this.toolStripButtonAddAnimation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddAnimation.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddAnimation.Image")));
            this.toolStripButtonAddAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddAnimation.Name = "toolStripButtonAddAnimation";
            this.toolStripButtonAddAnimation.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddAnimation.Text = "toolStripButton4";
            this.toolStripButtonAddAnimation.ToolTipText = "Add New Animation";
            this.toolStripButtonAddAnimation.Click += new System.EventHandler(this.toolStripButtonAddAnimation_Click);
            // 
            // toolStripButtonDelAnimation
            // 
            this.toolStripButtonDelAnimation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDelAnimation.Enabled = false;
            this.toolStripButtonDelAnimation.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDelAnimation.Image")));
            this.toolStripButtonDelAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDelAnimation.Name = "toolStripButtonDelAnimation";
            this.toolStripButtonDelAnimation.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDelAnimation.Text = "toolStripButton1";
            this.toolStripButtonDelAnimation.ToolTipText = "Delete Animation";
            this.toolStripButtonDelAnimation.Click += new System.EventHandler(this.toolStripButtonDelAnimation_Click);
            // 
            // listViewAnimations
            // 
            this.listViewAnimations.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.listViewAnimations.FullRowSelect = true;
            this.listViewAnimations.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.listViewAnimations.HideSelection = false;
            this.listViewAnimations.LabelEdit = true;
            this.listViewAnimations.Location = new System.Drawing.Point(3, 44);
            this.listViewAnimations.Name = "listViewAnimations";
            this.listViewAnimations.Size = new System.Drawing.Size(200, 76);
            this.listViewAnimations.TabIndex = 2;
            this.listViewAnimations.UseCompatibleStateImageBehavior = false;
            this.listViewAnimations.View = System.Windows.Forms.View.List;
            this.listViewAnimations.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listViewAnimations_AfterLabelEdit);
            this.listViewAnimations.SelectedIndexChanged += new System.EventHandler(this.listViewAnimations_SelectedIndexChanged);
            // 
            // groupBoxKeyFrames
            // 
            this.groupBoxKeyFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBoxKeyFrames.Controls.Add(this.toolStripFrames);
            this.groupBoxKeyFrames.Controls.Add(this.tableFrames);
            this.groupBoxKeyFrames.Location = new System.Drawing.Point(0, 269);
            this.groupBoxKeyFrames.Name = "groupBoxKeyFrames";
            this.groupBoxKeyFrames.Size = new System.Drawing.Size(206, 216);
            this.groupBoxKeyFrames.TabIndex = 31;
            this.groupBoxKeyFrames.TabStop = false;
            this.groupBoxKeyFrames.Text = "KeyFrames";
            // 
            // toolStripFrames
            // 
            this.toolStripFrames.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripFrames.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonAddKeyFrame,
            this.toolStripButtonDeleteKeyFrame});
            this.toolStripFrames.Location = new System.Drawing.Point(3, 16);
            this.toolStripFrames.Name = "toolStripFrames";
            this.toolStripFrames.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripFrames.Size = new System.Drawing.Size(200, 25);
            this.toolStripFrames.TabIndex = 30;
            this.toolStripFrames.Text = "toolStrip3";
            // 
            // toolStripButtonAddKeyFrame
            // 
            this.toolStripButtonAddKeyFrame.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddKeyFrame.Enabled = false;
            this.toolStripButtonAddKeyFrame.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddKeyFrame.Image")));
            this.toolStripButtonAddKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddKeyFrame.Name = "toolStripButtonAddKeyFrame";
            this.toolStripButtonAddKeyFrame.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddKeyFrame.Text = "toolStripButton4";
            this.toolStripButtonAddKeyFrame.ToolTipText = "Add New KeyFrame";
            this.toolStripButtonAddKeyFrame.Click += new System.EventHandler(this.toolStripButtonAddKeyFrame_Click);
            // 
            // toolStripButtonDeleteKeyFrame
            // 
            this.toolStripButtonDeleteKeyFrame.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDeleteKeyFrame.Enabled = false;
            this.toolStripButtonDeleteKeyFrame.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDeleteKeyFrame.Image")));
            this.toolStripButtonDeleteKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDeleteKeyFrame.Name = "toolStripButtonDeleteKeyFrame";
            this.toolStripButtonDeleteKeyFrame.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDeleteKeyFrame.Text = "toolStripButton1";
            this.toolStripButtonDeleteKeyFrame.ToolTipText = "Delete KeyFrame";
            this.toolStripButtonDeleteKeyFrame.Click += new System.EventHandler(this.toolStripButtonDeleteKeyFrame_Click);
            // 
            // tableFrames
            // 
            this.tableFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.tableFrames.ColumnModel = this.columnModelFrames;
            this.tableFrames.DataMember = null;
            this.tableFrames.DataSourceColumnBinder = dataSourceColumnBinder2;
            this.tableFrames.EnableToolTips = true;
            this.tableFrames.FullRowSelect = true;
            this.tableFrames.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tableFrames.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.tableFrames.Location = new System.Drawing.Point(3, 44);
            this.tableFrames.Name = "tableFrames";
            this.tableFrames.NoItemsText = "There are no keyframes yet";
            this.tableFrames.Size = new System.Drawing.Size(200, 166);
            this.tableFrames.TabIndex = 29;
            this.tableFrames.TableModel = this.tableModelframes;
            this.tableFrames.Text = "tableKeyframes";
            this.tableFrames.UnfocusedSelectionBackColor = System.Drawing.SystemColors.Highlight;
            this.tableFrames.UnfocusedSelectionForeColor = System.Drawing.SystemColors.HighlightText;
            this.tableFrames.CellPropertyChanged += new XPTable.Events.CellEventHandler(this.tableFrames_CellPropertyChanged);
            this.tableFrames.SelectionChanged += new XPTable.Events.SelectionEventHandler(this.tableFrames_SelectionChanged);
            // 
            // columnModelFrames
            // 
            this.columnModelFrames.Columns.AddRange(new XPTable.Models.Column[] {
            this.comboBoxColumnArea,
            this.numberColumnDuration});
            this.columnModelFrames.HeaderHeight = 16;
            // 
            // comboBoxColumnArea
            // 
            this.comboBoxColumnArea.Resizable = false;
            this.comboBoxColumnArea.Text = "Area";
            this.comboBoxColumnArea.Width = 146;
            // 
            // numberColumnDuration
            // 
            this.numberColumnDuration.Maximum = new decimal(new int[] {
            100000,
            0,
            0,
            0});
            this.numberColumnDuration.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numberColumnDuration.Resizable = false;
            this.numberColumnDuration.ShowUpDownButtons = true;
            this.numberColumnDuration.Width = 50;
            // 
            // tableModelframes
            // 
            this.tableModelframes.RowHeight = 16;
            cellStyle3.BackColor = System.Drawing.Color.Empty;
            cellStyle3.Font = null;
            cellStyle3.ForeColor = System.Drawing.Color.Empty;
            cellStyle3.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle3.WordWrap = false;
            cell3.CellStyle = cellStyle3;
            cell3.Data = "Test";
            cell3.Text = "Test";
            cell3.WordWrap = false;
            cellStyle4.BackColor = System.Drawing.Color.Empty;
            cellStyle4.Font = null;
            cellStyle4.ForeColor = System.Drawing.Color.Empty;
            cellStyle4.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle4.WordWrap = false;
            cell4.CellStyle = cellStyle4;
            cell4.Data = "1";
            cell4.Text = "1";
            cell4.WordWrap = false;
            row2.Cells.AddRange(new XPTable.Models.Cell[] {
            cell3,
            cell4});
            row2.ChildIndex = 0;
            row2.ExpandSubRows = true;
            row2.Height = 27;
            this.tableModelframes.Rows.AddRange(new XPTable.Models.Row[] {
            row2});
            // 
            // groupBoxTexture
            // 
            this.groupBoxTexture.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBoxTexture.Controls.Add(this.buttonSelectTexture);
            this.groupBoxTexture.Controls.Add(this.labelTextureName);
            this.groupBoxTexture.Location = new System.Drawing.Point(6, 6);
            this.groupBoxTexture.Name = "groupBoxTexture";
            this.groupBoxTexture.Size = new System.Drawing.Size(197, 70);
            this.groupBoxTexture.TabIndex = 0;
            this.groupBoxTexture.TabStop = false;
            this.groupBoxTexture.Text = "Texture";
            // 
            // buttonSelectTexture
            // 
            this.buttonSelectTexture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonSelectTexture.Location = new System.Drawing.Point(56, 40);
            this.buttonSelectTexture.Name = "buttonSelectTexture";
            this.buttonSelectTexture.Size = new System.Drawing.Size(85, 23);
            this.buttonSelectTexture.TabIndex = 1;
            this.buttonSelectTexture.Text = "Select Texture";
            this.buttonSelectTexture.UseVisualStyleBackColor = true;
            this.buttonSelectTexture.Click += new System.EventHandler(this.buttonSelectTexture_Click);
            // 
            // labelTextureName
            // 
            this.labelTextureName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.labelTextureName.AutoEllipsis = true;
            this.labelTextureName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelTextureName.Location = new System.Drawing.Point(4, 16);
            this.labelTextureName.MaximumSize = new System.Drawing.Size(188, 21);
            this.labelTextureName.Name = "labelTextureName";
            this.labelTextureName.Size = new System.Drawing.Size(188, 21);
            this.labelTextureName.TabIndex = 0;
            this.labelTextureName.Text = "LG | Big Texture ";
            this.labelTextureName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // groupBox5
            // 
            this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox5.Controls.Add(this.comboBoxBlendingType);
            this.groupBox5.Location = new System.Drawing.Point(6, 82);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(197, 49);
            this.groupBox5.TabIndex = 14;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Blending Type";
            // 
            // comboBoxBlendingType
            // 
            this.comboBoxBlendingType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.comboBoxBlendingType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxBlendingType.FormattingEnabled = true;
            this.comboBoxBlendingType.Location = new System.Drawing.Point(6, 19);
            this.comboBoxBlendingType.Name = "comboBoxBlendingType";
            this.comboBoxBlendingType.Size = new System.Drawing.Size(185, 21);
            this.comboBoxBlendingType.TabIndex = 0;
            this.comboBoxBlendingType.SelectedIndexChanged += new System.EventHandler(this.comboBoxBlendingType_SelectedIndexChanged);
            // 
            // groupBoxTint
            // 
            this.groupBoxTint.Controls.Add(this.textBoxColorHTML);
            this.groupBoxTint.Controls.Add(this.numericUpDownTintBlue);
            this.groupBoxTint.Controls.Add(this.numericUpDownTintGreen);
            this.groupBoxTint.Controls.Add(this.numericUpDownTintRed);
            this.groupBoxTint.Controls.Add(this.pictureBoxTint);
            this.groupBoxTint.Controls.Add(this.label5);
            this.groupBoxTint.Controls.Add(this.label3);
            this.groupBoxTint.Controls.Add(this.label4);
            this.groupBoxTint.Location = new System.Drawing.Point(6, 137);
            this.groupBoxTint.Name = "groupBoxTint";
            this.groupBoxTint.Size = new System.Drawing.Size(197, 105);
            this.groupBoxTint.TabIndex = 4;
            this.groupBoxTint.TabStop = false;
            this.groupBoxTint.Text = "Tint Color";
            // 
            // textBoxColorHTML
            // 
            this.textBoxColorHTML.Location = new System.Drawing.Point(16, 79);
            this.textBoxColorHTML.Name = "textBoxColorHTML";
            this.textBoxColorHTML.Size = new System.Drawing.Size(72, 20);
            this.textBoxColorHTML.TabIndex = 4;
            this.textBoxColorHTML.Text = "#FFFFFF";
            this.textBoxColorHTML.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.textBoxColorHTML.Validated += new System.EventHandler(this.textBoxColorHTML_Validated);
            this.textBoxColorHTML.Click += new System.EventHandler(this.textBoxColorHTML_Click);
            this.textBoxColorHTML.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxColorHTML_KeyDown);
            this.textBoxColorHTML.Enter += new System.EventHandler(this.textBoxColorHTML_Enter);
            // 
            // numericUpDownTintBlue
            // 
            this.numericUpDownTintBlue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.numericUpDownTintBlue.Location = new System.Drawing.Point(153, 79);
            this.numericUpDownTintBlue.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintBlue.Name = "numericUpDownTintBlue";
            this.numericUpDownTintBlue.Size = new System.Drawing.Size(41, 20);
            this.numericUpDownTintBlue.TabIndex = 12;
            this.numericUpDownTintBlue.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.numericUpDownTintBlue.Value = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintBlue.ValueChanged += new System.EventHandler(this.numericUpDownTintBlue_ValueChanged);
            // 
            // numericUpDownTintGreen
            // 
            this.numericUpDownTintGreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.numericUpDownTintGreen.Location = new System.Drawing.Point(153, 53);
            this.numericUpDownTintGreen.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintGreen.Name = "numericUpDownTintGreen";
            this.numericUpDownTintGreen.Size = new System.Drawing.Size(41, 20);
            this.numericUpDownTintGreen.TabIndex = 11;
            this.numericUpDownTintGreen.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.numericUpDownTintGreen.Value = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintGreen.ValueChanged += new System.EventHandler(this.numericUpDownTintGreen_ValueChanged);
            // 
            // numericUpDownTintRed
            // 
            this.numericUpDownTintRed.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.numericUpDownTintRed.Location = new System.Drawing.Point(153, 26);
            this.numericUpDownTintRed.Maximum = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintRed.Name = "numericUpDownTintRed";
            this.numericUpDownTintRed.Size = new System.Drawing.Size(41, 20);
            this.numericUpDownTintRed.TabIndex = 10;
            this.numericUpDownTintRed.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.numericUpDownTintRed.Value = new decimal(new int[] {
            255,
            0,
            0,
            0});
            this.numericUpDownTintRed.ValueChanged += new System.EventHandler(this.numericUpDownTintRed_ValueChanged);
            // 
            // pictureBoxTint
            // 
            this.pictureBoxTint.BackColor = System.Drawing.Color.White;
            this.pictureBoxTint.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.pictureBoxTint.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBoxTint.Location = new System.Drawing.Point(28, 26);
            this.pictureBoxTint.Name = "pictureBoxTint";
            this.pictureBoxTint.Size = new System.Drawing.Size(48, 48);
            this.pictureBoxTint.TabIndex = 9;
            this.pictureBoxTint.TabStop = false;
            this.pictureBoxTint.Click += new System.EventHandler(this.pictureBoxTint_Click);
            // 
            // label5
            // 
            this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(119, 81);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(28, 13);
            this.label5.TabIndex = 6;
            this.label5.Text = "Blue";
            // 
            // label3
            // 
            this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(111, 55);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(36, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Green";
            // 
            // label4
            // 
            this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(120, 29);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(27, 13);
            this.label4.TabIndex = 0;
            this.label4.Text = "Red";
            // 
            // panelLeft
            // 
            this.panelLeft.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.panelLeft.Controls.Add(this.tabControl);
            this.panelLeft.Location = new System.Drawing.Point(12, 28);
            this.panelLeft.Name = "panelLeft";
            this.panelLeft.Size = new System.Drawing.Size(217, 514);
            this.panelLeft.TabIndex = 33;
            // 
            // tabControl
            // 
            this.tabControl.Controls.Add(this.tabPageAnims);
            this.tabControl.Controls.Add(this.tabPageProperties);
            this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl.Location = new System.Drawing.Point(0, 0);
            this.tabControl.Name = "tabControl";
            this.tabControl.SelectedIndex = 0;
            this.tabControl.Size = new System.Drawing.Size(217, 514);
            this.tabControl.TabIndex = 0;
            // 
            // tabPageAnims
            // 
            this.tabPageAnims.Controls.Add(this.groupBoxAnimations);
            this.tabPageAnims.Controls.Add(this.groupBoxKeyFrames);
            this.tabPageAnims.Location = new System.Drawing.Point(4, 22);
            this.tabPageAnims.Name = "tabPageAnims";
            this.tabPageAnims.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageAnims.Size = new System.Drawing.Size(209, 488);
            this.tabPageAnims.TabIndex = 0;
            this.tabPageAnims.Text = "Animation";
            this.tabPageAnims.UseVisualStyleBackColor = true;
            // 
            // tabPageProperties
            // 
            this.tabPageProperties.Controls.Add(this.groupBoxTexture);
            this.tabPageProperties.Controls.Add(this.groupBox5);
            this.tabPageProperties.Controls.Add(this.groupBoxTint);
            this.tabPageProperties.Location = new System.Drawing.Point(4, 22);
            this.tabPageProperties.Name = "tabPageProperties";
            this.tabPageProperties.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageProperties.Size = new System.Drawing.Size(209, 488);
            this.tabPageProperties.TabIndex = 1;
            this.tabPageProperties.Text = "Properties";
            this.tabPageProperties.UseVisualStyleBackColor = true;
            // 
            // sceneItemPreviewControl
            // 
            this.sceneItemPreviewControl.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.sceneItemPreviewControl.Location = new System.Drawing.Point(235, 28);
            this.sceneItemPreviewControl.Name = "sceneItemPreviewControl";
            this.sceneItemPreviewControl.Size = new System.Drawing.Size(585, 484);
            this.sceneItemPreviewControl.TabIndex = 34;
            this.sceneItemPreviewControl.Text = "sceneItemPreviewControl1";
            // 
            // toolStripButtonCopyAnimation
            // 
            this.toolStripButtonCopyAnimation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonCopyAnimation.Enabled = false;
            this.toolStripButtonCopyAnimation.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonCopyAnimation.Image")));
            this.toolStripButtonCopyAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonCopyAnimation.Name = "toolStripButtonCopyAnimation";
            this.toolStripButtonCopyAnimation.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonCopyAnimation.Text = "toolStripButton3";
            this.toolStripButtonCopyAnimation.ToolTipText = "Copy Animation";
            this.toolStripButtonCopyAnimation.Click += new System.EventHandler(this.toolStripButtonCopyAnimation_Click);
            // 
            // AnimatedSpriteEditor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(832, 554);
            this.Controls.Add(this.sceneItemPreviewControl);
            this.Controls.Add(this.panelLeft);
            this.Controls.Add(this.toolStripAnims);
            this.Controls.Add(this.defaultControlPanel);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(245, 450);
            this.Name = "AnimatedSpriteEditor";
            this.Text = "AnimatedSprite Editor";
            this.Load += new System.EventHandler(this.AnimatedSpriteEditor_Load);
            this.toolStripAnims.ResumeLayout(false);
            this.toolStripAnims.PerformLayout();
            this.groupBoxAnimations.ResumeLayout(false);
            this.groupBoxAnimations.PerformLayout();
            this.toolStripAnimations.ResumeLayout(false);
            this.toolStripAnimations.PerformLayout();
            this.groupBoxKeyFrames.ResumeLayout(false);
            this.groupBoxKeyFrames.PerformLayout();
            this.toolStripFrames.ResumeLayout(false);
            this.toolStripFrames.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableFrames)).EndInit();
            this.groupBoxTexture.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.groupBoxTint.ResumeLayout(false);
            this.groupBoxTint.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintBlue)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintGreen)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownTintRed)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTint)).EndInit();
            this.panelLeft.ResumeLayout(false);
            this.tabControl.ResumeLayout(false);
            this.tabPageAnims.ResumeLayout(false);
            this.tabPageProperties.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
     XPTable.Renderers.DragDropRenderer    dragDropRenderer1       = new XPTable.Renderers.DragDropRenderer();
     XPTable.Models.Row row1 = new XPTable.Models.Row();
     this.lblStatus        = new System.Windows.Forms.Label();
     this.panel4           = new System.Windows.Forms.Panel();
     this.lblPrice         = new System.Windows.Forms.Label();
     this.label4           = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.panel2           = new System.Windows.Forms.Panel();
     this.lblCustomerName  = new System.Windows.Forms.Label();
     this.btnAge6          = new System.Windows.Forms.Button();
     this.clNo             = new XPTable.Models.TextColumn();
     this.clSku            = new XPTable.Models.TextColumn();
     this.clName           = new XPTable.Models.TextColumn();
     this.btnAge5          = new System.Windows.Forms.Button();
     this.btnAge4          = new System.Windows.Forms.Button();
     this.btnAge3          = new System.Windows.Forms.Button();
     this.btnAge2          = new System.Windows.Forms.Button();
     this.btnAge1          = new System.Windows.Forms.Button();
     this.btnWoman         = new System.Windows.Forms.Button();
     this.btnMan           = new System.Windows.Forms.Button();
     this.clPrice          = new XPTable.Models.NumberColumn();
     this.clQty            = new XPTable.Models.NumberColumn();
     this.clTotal          = new XPTable.Models.NumberColumn();
     this.columnModel1     = new XPTable.Models.ColumnModel();
     this.table1           = new XPTable.Models.Table();
     this.tableModel1      = new XPTable.Models.TableModel();
     this.label8           = new System.Windows.Forms.Label();
     this.txtBarcode       = new System.Windows.Forms.TextBox();
     this.pnlBarcode       = new System.Windows.Forms.Panel();
     this.label2           = new System.Windows.Forms.Label();
     this.label7           = new System.Windows.Forms.Label();
     this.label6           = new System.Windows.Forms.Label();
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.btnSearch        = new System.Windows.Forms.Button();
     this.panel5           = new System.Windows.Forms.Panel();
     this.btnConfirm       = new System.Windows.Forms.Button();
     this.panel7           = new System.Windows.Forms.Panel();
     this.btnCancel        = new System.Windows.Forms.Button();
     this.panel6           = new System.Windows.Forms.Panel();
     this.panel8           = new System.Windows.Forms.Panel();
     this.btnCancelProduct = new System.Windows.Forms.Button();
     this.panel3           = new System.Windows.Forms.Panel();
     this.label1           = new System.Windows.Forms.Label();
     this.panel1           = new System.Windows.Forms.Panel();
     this.panel4.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     this.pnlBarcode.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // lblStatus
     //
     this.lblStatus.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStatus.ForeColor = System.Drawing.Color.Green;
     this.lblStatus.Location  = new System.Drawing.Point(14, 56);
     this.lblStatus.Name      = "lblStatus";
     this.lblStatus.Size      = new System.Drawing.Size(204, 23);
     this.lblStatus.TabIndex  = 2;
     this.lblStatus.Text      = "ไม่พบข้อมูลสินค้าชิ้นนี้";
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblStatus.Visible   = false;
     //
     // panel4
     //
     this.panel4.BackColor   = System.Drawing.Color.Black;
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel4.Controls.Add(this.lblPrice);
     this.panel4.Controls.Add(this.label4);
     this.panel4.Controls.Add(this.label3);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(233, 64);
     this.panel4.TabIndex = 0;
     //
     // lblPrice
     //
     this.lblPrice.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.lblPrice.Font      = new System.Drawing.Font("Arial", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPrice.ForeColor = System.Drawing.Color.Lime;
     this.lblPrice.Location  = new System.Drawing.Point(0, 16);
     this.lblPrice.Name      = "lblPrice";
     this.lblPrice.Size      = new System.Drawing.Size(229, 44);
     this.lblPrice.TabIndex  = 1;
     this.lblPrice.Text      = "9,999,999";
     this.lblPrice.TextAlign = System.Drawing.ContentAlignment.BottomRight;
     //
     // label4
     //
     this.label4.AutoSize  = true;
     this.label4.ForeColor = System.Drawing.Color.Lime;
     this.label4.Location  = new System.Drawing.Point(155, 0);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(66, 13);
     this.label4.TabIndex  = 0;
     this.label4.Text      = "หน่วย = บาท";
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.ForeColor = System.Drawing.Color.Lime;
     this.label3.Location  = new System.Drawing.Point(3, 0);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(30, 13);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "ราคา";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.panel4);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(7, 7);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(233, 67);
     this.panel2.TabIndex = 7;
     //
     // lblCustomerName
     //
     this.lblCustomerName.AutoSize = true;
     this.lblCustomerName.Font     = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.lblCustomerName.Location = new System.Drawing.Point(47, 26);
     this.lblCustomerName.Name     = "lblCustomerName";
     this.lblCustomerName.Size     = new System.Drawing.Size(0, 19);
     this.lblCustomerName.TabIndex = 7;
     //
     // btnAge6
     //
     this.btnAge6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge6.Location = new System.Drawing.Point(142, 153);
     this.btnAge6.Name     = "btnAge6";
     this.btnAge6.Size     = new System.Drawing.Size(85, 26);
     this.btnAge6.TabIndex = 10;
     this.btnAge6.Text     = "61 ปี ขึ้นไป";
     this.btnAge6.UseVisualStyleBackColor = true;
     this.btnAge6.Click += new System.EventHandler(this.btnAge6_Click);
     //
     // clNo
     //
     this.clNo.Alignment     = XPTable.Models.ColumnAlignment.Center;
     this.clNo.Editable      = false;
     this.clNo.IsTextTrimmed = false;
     this.clNo.Resizable     = false;
     this.clNo.Sortable      = false;
     this.clNo.Text          = "ที่";
     this.clNo.Width         = 40;
     //
     // clSku
     //
     this.clSku.Alignment     = XPTable.Models.ColumnAlignment.Center;
     this.clSku.Editable      = false;
     this.clSku.IsTextTrimmed = false;
     this.clSku.Resizable     = false;
     this.clSku.Sortable      = false;
     this.clSku.Text          = "รหัสสินค้า";
     this.clSku.Width         = 80;
     //
     // clName
     //
     this.clName.Editable      = false;
     this.clName.IsTextTrimmed = false;
     this.clName.Sortable      = false;
     this.clName.Text          = "ชื่อสินค้า";
     this.clName.Width         = 400;
     //
     // btnAge5
     //
     this.btnAge5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge5.Location = new System.Drawing.Point(142, 121);
     this.btnAge5.Name     = "btnAge5";
     this.btnAge5.Size     = new System.Drawing.Size(85, 26);
     this.btnAge5.TabIndex = 9;
     this.btnAge5.Text     = "41-60 ปี";
     this.btnAge5.UseVisualStyleBackColor = true;
     this.btnAge5.Click += new System.EventHandler(this.btnAge5_Click);
     //
     // btnAge4
     //
     this.btnAge4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge4.Location = new System.Drawing.Point(142, 89);
     this.btnAge4.Name     = "btnAge4";
     this.btnAge4.Size     = new System.Drawing.Size(85, 26);
     this.btnAge4.TabIndex = 8;
     this.btnAge4.Text     = "26-40 ปี";
     this.btnAge4.UseVisualStyleBackColor = true;
     this.btnAge4.Click += new System.EventHandler(this.btnAge4_Click);
     //
     // btnAge3
     //
     this.btnAge3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge3.Location = new System.Drawing.Point(51, 153);
     this.btnAge3.Name     = "btnAge3";
     this.btnAge3.Size     = new System.Drawing.Size(85, 26);
     this.btnAge3.TabIndex = 7;
     this.btnAge3.Text     = "19-25 ปี";
     this.btnAge3.UseVisualStyleBackColor = true;
     this.btnAge3.Click += new System.EventHandler(this.btnAge3_Click);
     //
     // btnAge2
     //
     this.btnAge2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge2.Location = new System.Drawing.Point(51, 121);
     this.btnAge2.Name     = "btnAge2";
     this.btnAge2.Size     = new System.Drawing.Size(85, 26);
     this.btnAge2.TabIndex = 6;
     this.btnAge2.Text     = "13-18 ปี";
     this.btnAge2.UseVisualStyleBackColor = true;
     this.btnAge2.Click += new System.EventHandler(this.btnAge2_Click);
     //
     // btnAge1
     //
     this.btnAge1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnAge1.Location = new System.Drawing.Point(51, 89);
     this.btnAge1.Name     = "btnAge1";
     this.btnAge1.Size     = new System.Drawing.Size(85, 26);
     this.btnAge1.TabIndex = 5;
     this.btnAge1.Text     = "1-12 ปี";
     this.btnAge1.UseVisualStyleBackColor = true;
     this.btnAge1.Click += new System.EventHandler(this.btnAge1_Click);
     //
     // btnWoman
     //
     this.btnWoman.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnWoman.Location = new System.Drawing.Point(142, 57);
     this.btnWoman.Name     = "btnWoman";
     this.btnWoman.Size     = new System.Drawing.Size(85, 26);
     this.btnWoman.TabIndex = 4;
     this.btnWoman.Text     = "หญิง";
     this.btnWoman.UseVisualStyleBackColor = true;
     this.btnWoman.Click += new System.EventHandler(this.btnWoman_Click);
     //
     // btnMan
     //
     this.btnMan.BackColor = System.Drawing.Color.SteelBlue;
     this.btnMan.Font      = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnMan.ForeColor = System.Drawing.Color.White;
     this.btnMan.Location  = new System.Drawing.Point(51, 57);
     this.btnMan.Name      = "btnMan";
     this.btnMan.Size      = new System.Drawing.Size(85, 26);
     this.btnMan.TabIndex  = 3;
     this.btnMan.Text      = "ชาย";
     this.btnMan.UseVisualStyleBackColor = false;
     this.btnMan.Click += new System.EventHandler(this.btnMan_Click);
     //
     // clPrice
     //
     this.clPrice.Alignment     = XPTable.Models.ColumnAlignment.Center;
     this.clPrice.Editable      = false;
     this.clPrice.Format        = "#,###";
     this.clPrice.IsTextTrimmed = false;
     this.clPrice.Minimum       = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.clPrice.Sortable = false;
     this.clPrice.Text     = "ราคา";
     //
     // clQty
     //
     this.clQty.Alignment     = XPTable.Models.ColumnAlignment.Center;
     this.clQty.Format        = "#,###";
     this.clQty.IsTextTrimmed = false;
     this.clQty.Minimum       = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.clQty.Sortable = false;
     this.clQty.Text     = "จำนวน";
     //
     // clTotal
     //
     this.clTotal.Alignment     = XPTable.Models.ColumnAlignment.Right;
     this.clTotal.Editable      = false;
     this.clTotal.Format        = "#,###";
     this.clTotal.IsTextTrimmed = false;
     this.clTotal.Minimum       = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.clTotal.Sortable = false;
     this.clTotal.Text     = "รวม";
     //
     // columnModel1
     //
     this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
         this.clNo,
         this.clSku,
         this.clName,
         this.clPrice,
         this.clQty,
         this.clTotal
     });
     //
     // table1
     //
     this.table1.BorderColor            = System.Drawing.Color.Black;
     this.table1.ColumnModel            = this.columnModel1;
     this.table1.DataMember             = null;
     this.table1.DataSourceColumnBinder = dataSourceColumnBinder1;
     this.table1.Dock                      = System.Windows.Forms.DockStyle.Fill;
     dragDropRenderer1.ForeColor           = System.Drawing.Color.Red;
     this.table1.DragDropRenderer          = dragDropRenderer1;
     this.table1.EnableHeaderContextMenu   = false;
     this.table1.FullRowSelect             = true;
     this.table1.GridLines                 = XPTable.Models.GridLines.Both;
     this.table1.GridLinesContrainedToData = false;
     this.table1.HeaderFont                = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.table1.HeaderStyle               = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.table1.Location                  = new System.Drawing.Point(247, 39);
     this.table1.Name                      = "table1";
     this.table1.NoItemsText               = "";
     this.table1.SelectionStyle            = XPTable.Models.SelectionStyle.Grid;
     this.table1.Size                      = new System.Drawing.Size(555, 478);
     this.table1.TabIndex                  = 12;
     this.table1.TableModel                = this.tableModel1;
     this.table1.TabStop                   = false;
     this.table1.Text                      = "table1";
     this.table1.UnfocusedBorderColor      = System.Drawing.Color.Black;
     this.table1.CellDoubleClick          += new XPTable.Events.CellMouseEventHandler(this.table1_CellDoubleClick);
     //
     // tableModel1
     //
     row1.ChildIndex    = 0;
     row1.ExpandSubRows = true;
     row1.Height        = 15;
     this.tableModel1.Rows.AddRange(new XPTable.Models.Row[] {
         row1
     });
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.label8.Location = new System.Drawing.Point(15, 94);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(31, 16);
     this.label8.TabIndex = 2;
     this.label8.Text     = "อายุ :";
     //
     // txtBarcode
     //
     this.txtBarcode.BackColor = System.Drawing.Color.Azure;
     this.txtBarcode.Font      = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtBarcode.ForeColor = System.Drawing.Color.MidnightBlue;
     this.txtBarcode.Location  = new System.Drawing.Point(0, 24);
     this.txtBarcode.Name      = "txtBarcode";
     this.txtBarcode.Size      = new System.Drawing.Size(233, 29);
     this.txtBarcode.TabIndex  = 1;
     this.txtBarcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtBarcode.Click    += new System.EventHandler(this.txtBarcode_Enter);
     this.txtBarcode.Enter    += new System.EventHandler(this.txtBarcode_Enter);
     this.txtBarcode.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.txtBarcode_KeyDown);
     //
     // pnlBarcode
     //
     this.pnlBarcode.Controls.Add(this.txtBarcode);
     this.pnlBarcode.Controls.Add(this.label2);
     this.pnlBarcode.Controls.Add(this.lblStatus);
     this.pnlBarcode.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pnlBarcode.Location = new System.Drawing.Point(7, 74);
     this.pnlBarcode.Name     = "pnlBarcode";
     this.pnlBarcode.Size     = new System.Drawing.Size(233, 82);
     this.pnlBarcode.TabIndex = 7;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(-3, 8);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(44, 13);
     this.label2.TabIndex = 1;
     this.label2.Text     = "บาร์โค้ด";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.label7.Location = new System.Drawing.Point(16, 29);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(30, 16);
     this.label7.TabIndex = 1;
     this.label7.Text     = "ชื่อ : ";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.label6.Location = new System.Drawing.Point(14, 62);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(32, 16);
     this.label6.TabIndex = 0;
     this.label6.Text     = "เพศ :";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnSearch);
     this.groupBox1.Controls.Add(this.lblCustomerName);
     this.groupBox1.Controls.Add(this.btnAge6);
     this.groupBox1.Controls.Add(this.btnAge5);
     this.groupBox1.Controls.Add(this.btnAge4);
     this.groupBox1.Controls.Add(this.btnAge3);
     this.groupBox1.Controls.Add(this.btnAge2);
     this.groupBox1.Controls.Add(this.btnAge1);
     this.groupBox1.Controls.Add(this.btnWoman);
     this.groupBox1.Controls.Add(this.btnMan);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(233, 188);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "ข้อมูลลูกค้า";
     //
     // btnSearch
     //
     this.btnSearch.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.btnSearch.Image    = global::PowerPOS_Online.Properties.Resources.magnifier_left;
     this.btnSearch.Location = new System.Drawing.Point(196, 24);
     this.btnSearch.Name     = "btnSearch";
     this.btnSearch.Size     = new System.Drawing.Size(31, 26);
     this.btnSearch.TabIndex = 2;
     this.btnSearch.UseVisualStyleBackColor = true;
     this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.groupBox1);
     this.panel5.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel5.Location = new System.Drawing.Point(7, 156);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(233, 188);
     this.panel5.TabIndex = 8;
     //
     // btnConfirm
     //
     this.btnConfirm.Dock     = System.Windows.Forms.DockStyle.Top;
     this.btnConfirm.Font     = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
     this.btnConfirm.Location = new System.Drawing.Point(0, 102);
     this.btnConfirm.Name     = "btnConfirm";
     this.btnConfirm.Size     = new System.Drawing.Size(233, 38);
     this.btnConfirm.TabIndex = 11;
     this.btnConfirm.Text     = "ยืนยันการขาย (F1)";
     this.btnConfirm.UseVisualStyleBackColor = true;
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // panel7
     //
     this.panel7.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel7.Location = new System.Drawing.Point(0, 48);
     this.panel7.Name     = "panel7";
     this.panel7.Size     = new System.Drawing.Size(233, 8);
     this.panel7.TabIndex = 12;
     //
     // btnCancel
     //
     this.btnCancel.Dock     = System.Windows.Forms.DockStyle.Top;
     this.btnCancel.Font     = new System.Drawing.Font("Tahoma", 11.25F);
     this.btnCancel.Location = new System.Drawing.Point(0, 56);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(233, 38);
     this.btnCancel.TabIndex = 12;
     this.btnCancel.Text     = "ยกเลิกการขายทั้งบิล (F12)";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // panel6
     //
     this.panel6.Controls.Add(this.btnConfirm);
     this.panel6.Controls.Add(this.panel8);
     this.panel6.Controls.Add(this.btnCancel);
     this.panel6.Controls.Add(this.panel7);
     this.panel6.Controls.Add(this.btnCancelProduct);
     this.panel6.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel6.Location = new System.Drawing.Point(7, 344);
     this.panel6.Name     = "panel6";
     this.panel6.Padding  = new System.Windows.Forms.Padding(0, 10, 0, 0);
     this.panel6.Size     = new System.Drawing.Size(233, 154);
     this.panel6.TabIndex = 10;
     //
     // panel8
     //
     this.panel8.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel8.Location = new System.Drawing.Point(0, 94);
     this.panel8.Name     = "panel8";
     this.panel8.Size     = new System.Drawing.Size(233, 8);
     this.panel8.TabIndex = 13;
     //
     // btnCancelProduct
     //
     this.btnCancelProduct.Dock     = System.Windows.Forms.DockStyle.Top;
     this.btnCancelProduct.Font     = new System.Drawing.Font("Tahoma", 11.25F);
     this.btnCancelProduct.Location = new System.Drawing.Point(0, 10);
     this.btnCancelProduct.Name     = "btnCancelProduct";
     this.btnCancelProduct.Size     = new System.Drawing.Size(233, 38);
     this.btnCancelProduct.TabIndex = 14;
     this.btnCancelProduct.Text     = "ยกเลิกการขายทีละรายการ (F11)";
     this.btnCancelProduct.UseVisualStyleBackColor = true;
     this.btnCancelProduct.Click += new System.EventHandler(this.btnCancelProduct_Click);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.panel6);
     this.panel3.Controls.Add(this.panel5);
     this.panel3.Controls.Add(this.pnlBarcode);
     this.panel3.Controls.Add(this.panel2);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel3.Location = new System.Drawing.Point(0, 39);
     this.panel3.Name     = "panel3";
     this.panel3.Padding  = new System.Windows.Forms.Padding(7, 7, 7, 0);
     this.panel3.Size     = new System.Drawing.Size(247, 478);
     this.panel3.TabIndex = 11;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.label1.Font      = new System.Drawing.Font("DilleniaUPC", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(0, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(86, 38);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "ขายสินค้า";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.DimGray;
     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(802, 39);
     this.panel1.TabIndex = 10;
     //
     // UcSell
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.table1);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel1);
     this.Name  = "UcSell";
     this.Size  = new System.Drawing.Size(802, 517);
     this.Load += new System.EventHandler(this.UcSell_Load);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     this.pnlBarcode.ResumeLayout(false);
     this.pnlBarcode.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel5.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #21
0
        private void PrepareGridForSelectedListItem()
        {
            if (!(iPreparingGrid || iListView.SelectedItems.Count == 0 || iListView.SelectedItems[0].Tag == null))
            {
                iPreparingGrid    = true;
                iListView.Enabled = false;
                Cursor.Current    = Cursors.WaitCursor;
                //
                ListViewItem             listItem   = iListView.SelectedItems[0];
                MemObjRegionalCollection collection = (MemObjRegionalCollection)listItem.Tag;
                //
                try
                {
                    // First update the text labels to show the marker values
                    iMarkerStartText.Text = collection.RegionStart.RegionText;
                    iMarkerEndText.Text   = collection.RegionEnd.RegionText;

                    // Clear existing content
                    iTable.TableModel.Rows.Clear();

                    // Make new content
                    int count = collection.Count;
                    for (int i = 0; i < count; i++)
                    {
                        // The entry we are rendering
                        MemOpBase baseObject = collection[i];

                        // Only initialised if we are dealing with an allocation (or realloc) type cell.
                        MemOpAllocation memObj = null;

                        // The color format for the entire row.
                        System.Drawing.Color rowColor = Color.Black;

                        // The row we are creating
                        XPTable.Models.Row row = new XPTable.Models.Row();

                        // Common items
                        // ============
                        row.Cells.Add(new XPTable.Models.Cell(baseObject.OperationIndex.ToString("d6")));
                        row.Cells.Add(new XPTable.Models.Cell(baseObject.LineNumber.ToString("d6")));
                        row.Cells.Add(new XPTable.Models.Cell(baseObject.CellAddress.ToString("x8")));
                        row.Cells.Add(new XPTable.Models.Cell(" " + baseObject.FunctionName));

                        // Row Color & Object Association
                        // ==============================
                        if (baseObject is MemOpAllocation)
                        {
                            // Allocation
                            memObj   = (MemOpAllocation)baseObject;
                            rowColor = Color.Red;
                        }
                        else if (baseObject is MemOpFree)
                        {
                            // Deallocation
                            if (baseObject.Link != null)
                            {
                                memObj = (MemOpAllocation)baseObject.Link;
                            }
                            else
                            {
                                memObj = null;
                            }
                            rowColor = Color.Green;
                        }
                        else if (baseObject is MemOpReallocation)
                        {
                            // Reallocation
                            if (baseObject.Link != null)
                            {
                                memObj = (MemOpAllocation)baseObject.Link;
                            }
                            else
                            {
                                memObj = null;
                            }
                            rowColor = Color.Blue;
                        }

                        // Allocation size
                        // ===============
                        string allocationSize = "???";
                        if (memObj != null)
                        {
                            allocationSize = memObj.AllocationSize.ToString();
                        }
                        row.Cells.Add(new XPTable.Models.Cell(allocationSize + "  "));

                        // Heap size
                        // =========
                        row.Cells.Add(new XPTable.Models.Cell(baseObject.HeapSize.ToString() + "  "));

                        // Associated object
                        // =================
                        MemOpAllocation symbolObject = memObj;
                        if (memObj != null && baseObject.Link != null)
                        {
                            // If we have an associated link item, we can connect the two items together
                            string associatedText = string.Empty;
                            if (baseObject.IsAllocationType)
                            {
                                associatedText = "Free'd by op #:  " + baseObject.Link.OperationIndex.ToString("d5");
                            }
                            else if (baseObject.IsReallocationType)
                            {
                                associatedText = "First alloc'd by op #: " + baseObject.Link.OperationIndex.ToString("d5");
                                symbolObject   = (baseObject.Link as MemOpAllocation);
                            }
                            else
                            {
                                associatedText = "Alloc'd by op #: " + baseObject.Link.OperationIndex.ToString("d5");
                            }

                            // We store the object with the cell so that we can handle hyperlinks between
                            // associated objects.
                            XPTable.Models.Cell associatedCell = new XPTable.Models.Cell(associatedText);
                            associatedCell.Tag = baseObject;

                            // Make it look like a hyperlink
                            associatedCell.Font = new Font(iTable.Font.FontFamily.Name, iTable.Font.SizeInPoints, System.Drawing.FontStyle.Underline);

                            // Add the cell to the row
                            row.Cells.Add(associatedCell);
                        }
                        else
                        {
                            if (baseObject.IsAllocationType)
                            {
                                if (memObj != null)
                                {
                                    symbolObject = memObj;
                                }

                                rowColor = Color.Red;
                                row.Font = new System.Drawing.Font(iTable.Font.FontFamily.Name, iTable.Font.SizeInPoints, System.Drawing.FontStyle.Bold);
                                row.Cells.Add(new XPTable.Models.Cell("Object never free'd!"));
                            }
                            else
                            {
                                row.Cells.Add(new XPTable.Models.Cell("???!"));
                            }
                        }

                        // Symbol
                        // ======
                        string symbol = string.Empty;
                        if (symbolObject != null && symbolObject.LinkRegisterSymbol != null)
                        {
                            symbol = memObj.LinkRegisterSymbol.Symbol.ToString();
                        }
                        row.Cells.Add(new XPTable.Models.Cell(symbol));

                        // Set row color
                        // =============
                        row.ForeColor = rowColor;

                        // Add row
                        // =======
                        iTable.TableModel.Rows.Add(row);
                    }

                    // If no items, then dim table
                    iTable.Enabled = (count > 0);
                }
                finally
                {
                    Cursor.Current    = Cursors.Default;
                    iPreparingGrid    = false;
                    iListView.Enabled = true;
                    iListView.Select();
                }
            }
        }
Exemple #22
0
        private void VisualizeFolder(Model.FoldersRow folder)
        {
            XPTable.Models.Row row = new XPTable.Models.Row();

            XPTable.Models.Cell cell1 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle1 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell2 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle2 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell3 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle3 = new XPTable.Models.CellStyle();

            cell1.Text = folder.Name;
            cell1.Checked = folder.Enabled;
            cell1.Data = Detector.Current.GetIcon(folder.Type);
            cell2.Text = folder.Path;
            cell2.Checked = Directory.Exists(folder.Path);
            cell3.Text = folder.Type;

            cellStyle1.Font = new System.Drawing.Font("Arial", 8.0F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell1.CellStyle = cellStyle1;

            cellStyle2.Font = new System.Drawing.Font("Courier", 8.0F, 0, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell2.CellStyle = cellStyle2;

            cellStyle3.Font = new System.Drawing.Font("Arial", 8.0F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            cell3.CellStyle = cellStyle3;

            row.Cells.AddRange(new XPTable.Models.Cell[] { cell1, cell2, cell3 });
            row.ChildIndex = 0;
            row.Editable = true;
            row.Tag = folder;

            StrikeRow(row, !folder.Enabled);

            tableModel.Rows.Add(row);
        }
Exemple #23
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.Row  row1   = new XPTable.Models.Row();
     XPTable.Models.Cell cell1  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell2  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell3  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell4  = new XPTable.Models.Cell();
     XPTable.Models.Row  row2   = new XPTable.Models.Row();
     XPTable.Models.Cell cell5  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell6  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell7  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell8  = new XPTable.Models.Cell();
     XPTable.Models.Row  row3   = new XPTable.Models.Row();
     XPTable.Models.Cell cell9  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell10 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell11 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell12 = new XPTable.Models.Cell();
     XPTable.Models.Row  row4   = new XPTable.Models.Row();
     XPTable.Models.Cell cell13 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell14 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell15 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell16 = new XPTable.Models.Cell();
     XPTable.Models.Row  row5   = new XPTable.Models.Row();
     XPTable.Models.Cell cell17 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell18 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell19 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell20 = new XPTable.Models.Cell();
     XPTable.Models.Row  row6   = new XPTable.Models.Row();
     XPTable.Models.Cell cell21 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell22 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell23 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell24 = new XPTable.Models.Cell();
     this.cboQuarter = new System.Windows.Forms.ComboBox();
     this.cboYear    = new System.Windows.Forms.ComboBox();
     this.label1     = new System.Windows.Forms.Label();
     this.label2     = new System.Windows.Forms.Label();
     this.label3     = new System.Windows.Forms.Label();
     this.txtComID   = new System.Windows.Forms.TextBox();
     this.label4     = new System.Windows.Forms.Label();
     this.txtSocialInsuranceOffice = new System.Windows.Forms.TextBox();
     this.txtComName    = new System.Windows.Forms.TextBox();
     this.label5        = new System.Windows.Forms.Label();
     this.txtComAddress = new System.Windows.Forms.TextBox();
     this.label6        = new System.Windows.Forms.Label();
     this.txtComAcc     = new System.Windows.Forms.TextBox();
     this.label7        = new System.Windows.Forms.Label();
     this.txtComTel     = new System.Windows.Forms.TextBox();
     this.label8        = new System.Windows.Forms.Label();
     this.txtComFax     = new System.Windows.Forms.TextBox();
     this.label9        = new System.Windows.Forms.Label();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.tblDetail     = new XPTable.Models.Table();
     this.tblcolDetail  = new XPTable.Models.ColumnModel();
     this.textColumn1   = new XPTable.Models.TextColumn();
     this.numberColumn1 = new XPTable.Models.NumberColumn();
     this.numberColumn2 = new XPTable.Models.NumberColumn();
     this.numberColumn3 = new XPTable.Models.NumberColumn();
     this.tblmdlDetail  = new XPTable.Models.TableModel();
     this.txtComBank    = new System.Windows.Forms.TextBox();
     this.label10       = new System.Windows.Forms.Label();
     this.label12       = new System.Windows.Forms.Label();
     this.txtYC1        = new System.Windows.Forms.TextBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.txtCopyNum    = new System.Windows.Forms.TextBox();
     this.label22       = new System.Windows.Forms.Label();
     this.dtCreateDate  = new System.Windows.Forms.DateTimePicker();
     this.label20       = new System.Windows.Forms.Label();
     this.label19       = new System.Windows.Forms.Label();
     this.label18       = new System.Windows.Forms.Label();
     this.label17       = new System.Windows.Forms.Label();
     this.label16       = new System.Windows.Forms.Label();
     this.txtYC6        = new System.Windows.Forms.TextBox();
     this.txtYC7        = new System.Windows.Forms.TextBox();
     this.txtYC8        = new System.Windows.Forms.TextBox();
     this.txtYC5        = new System.Windows.Forms.TextBox();
     this.label15       = new System.Windows.Forms.Label();
     this.txtYC4        = new System.Windows.Forms.TextBox();
     this.label14       = new System.Windows.Forms.Label();
     this.label13       = new System.Windows.Forms.Label();
     this.txtYC3        = new System.Windows.Forms.TextBox();
     this.txtYC2        = new System.Windows.Forms.TextBox();
     this.label11       = new System.Windows.Forms.Label();
     this.btnExit       = new System.Windows.Forms.Button();
     this.btnReport     = new System.Windows.Forms.Button();
     this.label21       = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // cboQuarter
     //
     this.cboQuarter.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboQuarter.FormattingEnabled = true;
     this.cboQuarter.Items.AddRange(new object[] {
         "1",
         "2",
         "3",
         "4"
     });
     this.cboQuarter.Location              = new System.Drawing.Point(44, 12);
     this.cboQuarter.Name                  = "cboQuarter";
     this.cboQuarter.Size                  = new System.Drawing.Size(63, 21);
     this.cboQuarter.TabIndex              = 0;
     this.cboQuarter.SelectedIndexChanged += new System.EventHandler(this.TimeValue_SelectedIndexChanged);
     //
     // cboYear
     //
     this.cboYear.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboYear.FormattingEnabled = true;
     this.cboYear.Location          = new System.Drawing.Point(148, 12);
     this.cboYear.Name                  = "cboYear";
     this.cboYear.Size                  = new System.Drawing.Size(63, 21);
     this.cboYear.TabIndex              = 1;
     this.cboYear.SelectedIndexChanged += new System.EventHandler(this.TimeValue_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 15);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(26, 13);
     this.label1.TabIndex = 2;
     this.label1.Text     = "Quý";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(113, 15);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 13);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Năm";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(217, 16);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(55, 13);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Mã đơn vị";
     //
     // txtComID
     //
     this.txtComID.Location = new System.Drawing.Point(278, 13);
     this.txtComID.Name     = "txtComID";
     this.txtComID.Size     = new System.Drawing.Size(150, 20);
     this.txtComID.TabIndex = 5;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label4.Location = new System.Drawing.Point(9, 42);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(170, 13);
     this.label4.TabIndex = 6;
     this.label4.Text     = "A/ Cơ quan Bảo hiểm Xã Hội";
     //
     // txtSocialInsuranceOffice
     //
     this.txtSocialInsuranceOffice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSocialInsuranceOffice.Location = new System.Drawing.Point(185, 39);
     this.txtSocialInsuranceOffice.Name     = "txtSocialInsuranceOffice";
     this.txtSocialInsuranceOffice.Size     = new System.Drawing.Size(376, 20);
     this.txtSocialInsuranceOffice.TabIndex = 7;
     //
     // txtComName
     //
     this.txtComName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtComName.Location = new System.Drawing.Point(71, 65);
     this.txtComName.Name     = "txtComName";
     this.txtComName.Size     = new System.Drawing.Size(490, 20);
     this.txtComName.TabIndex = 9;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.label5.Location = new System.Drawing.Point(9, 68);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(62, 13);
     this.label5.TabIndex = 8;
     this.label5.Text     = "B/ Đơn vị";
     //
     // txtComAddress
     //
     this.txtComAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.txtComAddress.Location = new System.Drawing.Point(71, 91);
     this.txtComAddress.Name     = "txtComAddress";
     this.txtComAddress.Size     = new System.Drawing.Size(490, 20);
     this.txtComAddress.TabIndex = 11;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(9, 94);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(40, 13);
     this.label6.TabIndex = 10;
     this.label6.Text     = "Địa chỉ";
     //
     // txtComAcc
     //
     this.txtComAcc.Location = new System.Drawing.Point(71, 117);
     this.txtComAcc.Name     = "txtComAcc";
     this.txtComAcc.Size     = new System.Drawing.Size(108, 20);
     this.txtComAcc.TabIndex = 13;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(9, 120);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(55, 13);
     this.label7.TabIndex = 12;
     this.label7.Text     = "Tài khoản";
     //
     // txtComTel
     //
     this.txtComTel.Location = new System.Drawing.Point(71, 143);
     this.txtComTel.Name     = "txtComTel";
     this.txtComTel.Size     = new System.Drawing.Size(108, 20);
     this.txtComTel.TabIndex = 15;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(9, 146);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(55, 13);
     this.label8.TabIndex = 14;
     this.label8.Text     = "Điện thoại";
     //
     // txtComFax
     //
     this.txtComFax.Location = new System.Drawing.Point(215, 143);
     this.txtComFax.Name     = "txtComFax";
     this.txtComFax.Size     = new System.Drawing.Size(144, 20);
     this.txtComFax.TabIndex = 17;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(185, 146);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(24, 13);
     this.label9.TabIndex = 16;
     this.label9.Text     = "Fax";
     //
     // groupBox1
     //
     this.groupBox1.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.groupBox1.Controls.Add(this.tblDetail);
     this.groupBox1.Location = new System.Drawing.Point(12, 169);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(549, 149);
     this.groupBox1.TabIndex = 18;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Đối chiếu số liệu thu, nộp bảo hiểm xã hội";
     //
     // tblDetail
     //
     this.tblDetail.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
     this.tblDetail.BackColor           = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
     this.tblDetail.ColumnModel         = this.tblcolDetail;
     this.tblDetail.Dock                        = System.Windows.Forms.DockStyle.Fill;
     this.tblDetail.EnableToolTips              = true;
     this.tblDetail.ForeColor                   = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblDetail.FullRowSelect               = true;
     this.tblDetail.GridColor                   = System.Drawing.SystemColors.ControlDark;
     this.tblDetail.GridLines                   = XPTable.Models.GridLines.Both;
     this.tblDetail.GridLineStyle               = XPTable.Models.GridLineStyle.Dot;
     this.tblDetail.HeaderFont                  = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.tblDetail.Location                    = new System.Drawing.Point(3, 16);
     this.tblDetail.Name                        = "tblDetail";
     this.tblDetail.NoItemsText                 = "Không tìm thấy thông tin";
     this.tblDetail.SelectionBackColor          = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
     this.tblDetail.SelectionForeColor          = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     this.tblDetail.SelectionStyle              = XPTable.Models.SelectionStyle.Grid;
     this.tblDetail.Size                        = new System.Drawing.Size(543, 130);
     this.tblDetail.SortedColumnBackColor       = System.Drawing.Color.Transparent;
     this.tblDetail.TabIndex                    = 80;
     this.tblDetail.TableModel                  = this.tblmdlDetail;
     this.tblDetail.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
     this.tblDetail.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
     //
     // tblcolDetail
     //
     this.tblcolDetail.Columns.AddRange(new XPTable.Models.Column[] {
         this.textColumn1,
         this.numberColumn1,
         this.numberColumn2,
         this.numberColumn3
     });
     //
     // textColumn1
     //
     this.textColumn1.Text  = "Chỉ tiêu";
     this.textColumn1.Width = 170;
     //
     // numberColumn1
     //
     this.numberColumn1.Format = "#,###;(#,###);0";
     this.numberColumn1.Text   = "Số báo cáo";
     this.numberColumn1.Width  = 120;
     //
     // numberColumn2
     //
     this.numberColumn2.Format = "#,###;(#,###);0";
     this.numberColumn2.Text   = "Số kiểm tra";
     this.numberColumn2.Width  = 120;
     //
     // numberColumn3
     //
     this.numberColumn3.Format = "#,###;(#,###);0";
     this.numberColumn3.Text   = "Chênh lệch";
     this.numberColumn3.Width  = 120;
     //
     // tblmdlDetail
     //
     cell1.Text = "1/ Số lao động";
     cell2.Data = "0";
     cell3.Data = "0";
     cell4.Data = "0";
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2,
         cell3,
         cell4
     });
     cell5.Text = "2/ Tổng quỹ lương";
     cell6.Data = "0";
     cell7.Data = "0";
     cell8.Data = "0";
     row2.Cells.AddRange(new XPTable.Models.Cell[] {
         cell5,
         cell6,
         cell7,
         cell8
     });
     cell9.Text  = "3/ BHXH phải nộp trong quý";
     cell10.Data = "0";
     cell11.Data = "0";
     cell12.Data = "0";
     row3.Cells.AddRange(new XPTable.Models.Cell[] {
         cell9,
         cell10,
         cell11,
         cell12
     });
     cell13.Text = "4/ Số kỳ trước mang sang";
     cell14.Data = "0";
     cell15.Data = "0";
     cell16.Data = "0";
     row4.Cells.AddRange(new XPTable.Models.Cell[] {
         cell13,
         cell14,
         cell15,
         cell16
     });
     cell17.Text = "5/ Số đã nộp trong quý";
     cell18.Data = "0";
     cell19.Data = "0";
     cell20.Data = "0";
     row5.Cells.AddRange(new XPTable.Models.Cell[] {
         cell17,
         cell18,
         cell19,
         cell20
     });
     cell21.Text = "6/ Số chuyển sang kỳ sau";
     cell22.Data = "0";
     cell23.Data = "0";
     cell24.Data = "0";
     row6.Cells.AddRange(new XPTable.Models.Cell[] {
         cell21,
         cell22,
         cell23,
         cell24
     });
     this.tblmdlDetail.Rows.AddRange(new XPTable.Models.Row[] {
         row1,
         row2,
         row3,
         row4,
         row5,
         row6
     });
     //
     // txtComBank
     //
     this.txtComBank.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.txtComBank.Location = new System.Drawing.Point(215, 117);
     this.txtComBank.Name     = "txtComBank";
     this.txtComBank.Size     = new System.Drawing.Size(346, 20);
     this.txtComBank.TabIndex = 20;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(185, 120);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(22, 13);
     this.label10.TabIndex = 19;
     this.label10.Text     = "Tại";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(6, 22);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(137, 13);
     this.label12.TabIndex = 22;
     this.label12.Text     = "1/ Số nộp thừa ghi cho quý";
     //
     // txtYC1
     //
     this.txtYC1.Location = new System.Drawing.Point(149, 19);
     this.txtYC1.Name     = "txtYC1";
     this.txtYC1.Size     = new System.Drawing.Size(25, 20);
     this.txtYC1.TabIndex = 23;
     //
     // groupBox2
     //
     this.groupBox2.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.groupBox2.Controls.Add(this.txtCopyNum);
     this.groupBox2.Controls.Add(this.label22);
     this.groupBox2.Controls.Add(this.dtCreateDate);
     this.groupBox2.Controls.Add(this.label20);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.label18);
     this.groupBox2.Controls.Add(this.label17);
     this.groupBox2.Controls.Add(this.label16);
     this.groupBox2.Controls.Add(this.txtYC6);
     this.groupBox2.Controls.Add(this.txtYC7);
     this.groupBox2.Controls.Add(this.txtYC8);
     this.groupBox2.Controls.Add(this.txtYC5);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.Controls.Add(this.txtYC4);
     this.groupBox2.Controls.Add(this.label14);
     this.groupBox2.Controls.Add(this.label13);
     this.groupBox2.Controls.Add(this.txtYC3);
     this.groupBox2.Controls.Add(this.txtYC2);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Controls.Add(this.txtYC1);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Location = new System.Drawing.Point(12, 324);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(549, 130);
     this.groupBox2.TabIndex = 24;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Yêu cầu";
     //
     // txtCopyNum
     //
     this.txtCopyNum.Location = new System.Drawing.Point(257, 104);
     this.txtCopyNum.Name     = "txtCopyNum";
     this.txtCopyNum.Size     = new System.Drawing.Size(25, 20);
     this.txtCopyNum.TabIndex = 45;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(210, 107);
     this.label22.Name     = "label22";
     this.label22.Size     = new System.Drawing.Size(41, 13);
     this.label22.TabIndex = 44;
     this.label22.Text     = "Số bản";
     //
     // dtCreateDate
     //
     this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
     this.dtCreateDate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtCreateDate.Location     = new System.Drawing.Point(107, 103);
     this.dtCreateDate.Name         = "dtCreateDate";
     this.dtCreateDate.Size         = new System.Drawing.Size(100, 20);
     this.dtCreateDate.TabIndex     = 43;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(6, 107);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(93, 13);
     this.label20.TabIndex = 42;
     this.label20.Text     = "Ngày lập biên bản";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(20, 68);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(482, 13);
     this.label19.TabIndex = 41;
     this.label19.Text     = "phải nộp số tiền còn thiếu trên vào tài khoản của cơ quan BHXH tại ngân hàng ( Kh" +
                             "o bạc nhà nước)";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(6, 87);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(401, 13);
     this.label18.TabIndex = 40;
     this.label18.Text     = "3/ Số tiền phải nộp theo lãi xuất tiền vay quá hạn do ngân hàng nhà nước quy định" +
                             "";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(421, 48);
     this.label17.Name     = "label17";
     this.label17.Size     = new System.Drawing.Size(27, 13);
     this.label17.TabIndex = 39;
     this.label17.Text     = "năm";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(350, 48);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(34, 13);
     this.label16.TabIndex = 38;
     this.label16.Text     = "tháng";
     //
     // txtYC6
     //
     this.txtYC6.Location = new System.Drawing.Point(390, 45);
     this.txtYC6.Name     = "txtYC6";
     this.txtYC6.Size     = new System.Drawing.Size(25, 20);
     this.txtYC6.TabIndex = 37;
     //
     // txtYC7
     //
     this.txtYC7.Location = new System.Drawing.Point(454, 45);
     this.txtYC7.Name     = "txtYC7";
     this.txtYC7.Size     = new System.Drawing.Size(25, 20);
     this.txtYC7.TabIndex = 36;
     //
     // txtYC8
     //
     this.txtYC8.Location = new System.Drawing.Point(424, 87);
     this.txtYC8.Name     = "txtYC8";
     this.txtYC8.Size     = new System.Drawing.Size(119, 20);
     this.txtYC8.TabIndex = 32;
     //
     // txtYC5
     //
     this.txtYC5.Location = new System.Drawing.Point(319, 45);
     this.txtYC5.Name     = "txtYC5";
     this.txtYC5.Size     = new System.Drawing.Size(25, 20);
     this.txtYC5.TabIndex = 31;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(138, 48);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(175, 13);
     this.label15.TabIndex = 30;
     this.label15.Text     = "Đơn vị đồng ý chậm nhất đến ngày";
     //
     // txtYC4
     //
     this.txtYC4.Location = new System.Drawing.Point(107, 45);
     this.txtYC4.Name     = "txtYC4";
     this.txtYC4.Size     = new System.Drawing.Size(25, 20);
     this.txtYC4.TabIndex = 29;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(6, 48);
     this.label14.Name     = "label14";
     this.label14.Size     = new System.Drawing.Size(95, 13);
     this.label14.TabIndex = 28;
     this.label14.Text     = "2/ Số nộp thiếu là ";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(255, 22);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(15, 13);
     this.label13.TabIndex = 27;
     this.label13.Text     = "là";
     //
     // txtYC3
     //
     this.txtYC3.Location = new System.Drawing.Point(276, 19);
     this.txtYC3.Name     = "txtYC3";
     this.txtYC3.Size     = new System.Drawing.Size(139, 20);
     this.txtYC3.TabIndex = 26;
     //
     // txtYC2
     //
     this.txtYC2.Location = new System.Drawing.Point(213, 19);
     this.txtYC2.Name     = "txtYC2";
     this.txtYC2.Size     = new System.Drawing.Size(36, 20);
     this.txtYC2.TabIndex = 25;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(180, 22);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(27, 13);
     this.label11.TabIndex = 24;
     this.label11.Text     = "năm";
     //
     // btnExit
     //
     this.btnExit.Location = new System.Drawing.Point(503, 460);
     this.btnExit.Name     = "btnExit";
     this.btnExit.Size     = new System.Drawing.Size(58, 28);
     this.btnExit.TabIndex = 25;
     this.btnExit.Text     = "Đóng";
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnReport
     //
     this.btnReport.Location = new System.Drawing.Point(394, 460);
     this.btnReport.Name     = "btnReport";
     this.btnReport.Size     = new System.Drawing.Size(103, 28);
     this.btnReport.TabIndex = 26;
     this.btnReport.Text     = "Lưu và In báo cáo";
     this.btnReport.UseVisualStyleBackColor = true;
     this.btnReport.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(473, 9);
     this.label21.Name     = "label21";
     this.label21.Size     = new System.Drawing.Size(88, 13);
     this.label21.TabIndex = 27;
     this.label21.Text     = "Mẫu số : C46-BH";
     //
     // frmInsuranceC46
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(573, 493);
     this.Controls.Add(this.label21);
     this.Controls.Add(this.btnReport);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.txtComBank);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.txtComFax);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.txtComTel);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.txtComAcc);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.txtComAddress);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.txtComName);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txtSocialInsuranceOffice);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txtComID);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cboYear);
     this.Controls.Add(this.cboQuarter);
     this.MaximumSize = new System.Drawing.Size(581, 527);
     this.MinimumSize = new System.Drawing.Size(581, 527);
     this.Name        = "frmInsuranceC46";
     this.Text        = "Biên bản đối chiếu số liệu nộp BHXH";
     this.Load       += new System.EventHandler(this.frmInsuranceC46_Load);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private void PopulateTableRows(MemObjStatisticalCollection aCollection)
        {
            // Clear existing content
            iGrid.BeginUpdate();
            iGrid.TableModel.Rows.Clear();
            iGrid.Tag = aCollection;

            // Make new content
            int count = aCollection.Count;

            for (int i = 0; i < count; i++)
            {
                // The entry we are rendering
                MemOpBase baseObject = aCollection[i];

                // Only initialised if we are dealing with an allocation (or realloc) type cell.
                MemOpAllocation memObj = null;

                // The color format for the entire row.
                System.Drawing.Color rowColor = Color.Black;

                // The row we are creating
                XPTable.Models.Row row = new XPTable.Models.Row();

                // Set tag for the row
                row.Tag = baseObject;

                // Common items
                // ============
                XPTable.Models.Cell opIndexCell = new XPTable.Models.Cell(baseObject.OperationIndex.ToString("d6"));
                row.Cells.Add(opIndexCell);
                XPTable.Models.Cell lineNumberCell = new XPTable.Models.Cell(baseObject.LineNumber.ToString("d6"));
                row.Cells.Add(lineNumberCell);
                XPTable.Models.Cell cellAddressCell = new XPTable.Models.Cell(baseObject.CellAddress.ToString("x8"));
                row.Cells.Add(cellAddressCell);
                XPTable.Models.Cell functionCell = new XPTable.Models.Cell(" " + baseObject.FunctionName);
                row.Cells.Add(functionCell);

                // Row Color & Object Association
                // ==============================
                if (baseObject is MemOpAllocation)
                {
                    // Allocation
                    memObj   = (MemOpAllocation)baseObject;
                    rowColor = Color.Blue;
                }
                else if (baseObject is MemOpFree)
                {
                    // Deallocation
                    if (baseObject.Link != null)
                    {
                        memObj = (MemOpAllocation)baseObject.Link;
                    }
                    else
                    {
                        memObj = null;
                    }
                    rowColor = Color.Green;
                }
                else if (baseObject is MemOpReallocation)
                {
                    // Reallocation
                    if (baseObject.Link != null)
                    {
                        memObj = (MemOpAllocation)baseObject.Link;
                    }
                    else
                    {
                        memObj = null;
                    }
                    rowColor = Color.Purple;
                }

                // Allocation size
                // ===============
                string allocationSize = "???";
                if (memObj != null)
                {
                    allocationSize = memObj.AllocationSize.ToString();
                }
                row.Cells.Add(new XPTable.Models.Cell(allocationSize + "  "));

                // Heap size
                // =========
                row.Cells.Add(new XPTable.Models.Cell(baseObject.HeapSize.ToString() + "  "));

                // Associated object
                // =================
                MemOpAllocation symbolObject = memObj;
                if (memObj != null && baseObject.Link != null)
                {
                    // If we have an associated link item, we can connect the two items together
                    string associatedText = string.Empty;
                    if (baseObject.IsAllocationType)
                    {
                        associatedText = "Free'd by op #:  " + baseObject.Link.OperationIndex.ToString("d5");
                    }
                    else if (baseObject.IsReallocationType)
                    {
                        associatedText = "First alloc'd by op #: " + baseObject.Link.OperationIndex.ToString("d5");
                        symbolObject   = (baseObject.Link as MemOpAllocation);
                    }
                    else
                    {
                        associatedText = "Alloc'd by op #: " + baseObject.Link.OperationIndex.ToString("d5");
                    }

                    // We store the object with the cell so that we can handle hyperlinks between
                    // associated objects.
                    XPTable.Models.Cell associatedCell = new XPTable.Models.Cell(associatedText);
                    associatedCell.Tag = baseObject;

                    // Make it look like a hyperlink
                    associatedCell.Font = new Font(iGrid.Font.FontFamily.Name, iGrid.Font.SizeInPoints, System.Drawing.FontStyle.Underline);

                    // Add the cell to the row
                    row.Cells.Add(associatedCell);
                }
                else
                {
                    if (baseObject.IsAllocationType)
                    {
                        if (memObj != null)
                        {
                            symbolObject = memObj;
                        }

                        rowColor = Color.Red;
                        row.Font = new System.Drawing.Font(iGrid.Font.FontFamily.Name, iGrid.Font.SizeInPoints, System.Drawing.FontStyle.Regular);
                        row.Cells.Add(new XPTable.Models.Cell("Object never free'd!"));
                    }
                    else
                    {
                        row.Cells.Add(new XPTable.Models.Cell("???!"));
                    }
                }

                // Set row color
                // =============
                row.ForeColor = rowColor;

                // Add row
                // =======
                iGrid.TableModel.Rows.Add(row);

                // Event handling
                // ==============
                if (i % 100 != 0)
                {
                    Application.DoEvents();
                }
                lock (this)
                {
                    if (iStopPopulatingGrid)
                    {
                        break;
                    }
                }
            }

            // If no items, then dim table
            iGrid.Enabled = (count > 0);
            iGrid.EndUpdate();
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            XPTable.Models.ColumnModel columnModelBoneTransforms;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CompositeEntityEditor));
            XPTable.Models.Row row3 = new XPTable.Models.Row();
            XPTable.Models.Cell cell5 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle5 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell6 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle6 = new XPTable.Models.CellStyle();
            XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder3 = new XPTable.Models.DataSourceColumnBinder();
            XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
            XPTable.Models.Row row4 = new XPTable.Models.Row();
            XPTable.Models.Cell cell7 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle7 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell8 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle8 = new XPTable.Models.CellStyle();
            this.textColumnName = new XPTable.Models.TextColumn();
            this.checkBoxColumnVisible = new XPTable.Models.CheckBoxColumn();
            this.groupBoxAnimations = new System.Windows.Forms.GroupBox();
            this.propertyGridAnimation = new System.Windows.Forms.PropertyGrid();
            this.toolStripAnimations = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonAddAnimation = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDelAnimation = new System.Windows.Forms.ToolStripButton();
            this.listViewAnimations = new System.Windows.Forms.ListView();
            this.tableModelKeyframes = new XPTable.Models.TableModel();
            this.columnModelKeyframes = new XPTable.Models.ColumnModel();
            this.numberColumnDuration = new XPTable.Models.NumberColumn();
            this.panelMiddle = new System.Windows.Forms.Panel();
            this.toolStrip4 = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonZoomOut = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonZoomNormal = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonZoomIn = new System.Windows.Forms.ToolStripButton();
            this.compositeEntityEditorControl = new Milkshake.Editors.CompositeEntities.CompositeKeyFrameEditorControl();
            this.tabControlMain = new System.Windows.Forms.TabControl();
            this.tabPageStructure = new System.Windows.Forms.TabPage();
            this.groupBoxSceneItemProperties = new System.Windows.Forms.GroupBox();
            this.comboBoxIsPivotRelative = new System.Windows.Forms.ComboBox();
            this.textBoxPivot = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBoxBones = new System.Windows.Forms.GroupBox();
            this.groupBoxBoneProps = new System.Windows.Forms.GroupBox();
            this.propertyGridBoneProperties = new System.Windows.Forms.PropertyGrid();
            this.toolStrip5 = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonAddRootBone = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonAddChildBone = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDeleteBone = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonLevelUpBone = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonLevelDownBone = new System.Windows.Forms.ToolStripButton();
            this.treeViewBones = new System.Windows.Forms.TreeView();
            this.imageListBones = new System.Windows.Forms.ImageList(this.components);
            this.groupBoxSceneItemBank = new System.Windows.Forms.GroupBox();
            this.toolStripResources = new System.Windows.Forms.ToolStrip();
            this.toolStripSplitButtonAddSceneItem = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripSplitButtonCopySceneItem = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDeleteSceneItem = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonNewBoneFromItem = new System.Windows.Forms.ToolStripButton();
            this.sceneItemPreviewControl = new Milkshake.GraphicsDeviceControls.SceneItemPreviewControl();
            this.treeViewSceneItems = new System.Windows.Forms.TreeView();
            this.tabPageAnimations = new System.Windows.Forms.TabPage();
            this.groupBoxPreview = new System.Windows.Forms.GroupBox();
            this.sceneItemPreviewCompositeAnimationPreview = new Milkshake.GraphicsDeviceControls.SceneItemPreviewControl();
            this.splitContainerRightTop = new System.Windows.Forms.SplitContainer();
            this.groupBoxKeyFrames = new System.Windows.Forms.GroupBox();
            this.toolStripKeyFrames = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonAddKeyFrame = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonKeyFrameCopy = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonKeyFramePaste = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonDeleteKeyFrame = new System.Windows.Forms.ToolStripButton();
            this.tableKeyFrames = new XPTable.Models.Table();
            this.groupBoxCompositeBoneProperties = new System.Windows.Forms.GroupBox();
            this.propertyGridCompositeBoneTransform = new System.Windows.Forms.PropertyGrid();
            this.groupBoxBoneTransforms = new System.Windows.Forms.GroupBox();
            this.tableBoneTransforms = new XPTable.Models.Table();
            this.tableModelBoneTransforms = new XPTable.Models.TableModel();
            this.toolStripBoneTransforms = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.toolStripButtonLevelUpBoneTransform = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonLevelDownBoneTransform = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonSyncTransform = new System.Windows.Forms.ToolStripButton();
            this.defaultControlPanel = new MilkshakeLibrary.DefaultControlPanel();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripButtonDuplicateAnim = new System.Windows.Forms.ToolStripButton();
            columnModelBoneTransforms = new XPTable.Models.ColumnModel();
            this.groupBoxAnimations.SuspendLayout();
            this.toolStripAnimations.SuspendLayout();
            this.panelMiddle.SuspendLayout();
            this.toolStrip4.SuspendLayout();
            this.tabControlMain.SuspendLayout();
            this.tabPageStructure.SuspendLayout();
            this.groupBoxSceneItemProperties.SuspendLayout();
            this.groupBoxBones.SuspendLayout();
            this.groupBoxBoneProps.SuspendLayout();
            this.toolStrip5.SuspendLayout();
            this.groupBoxSceneItemBank.SuspendLayout();
            this.toolStripResources.SuspendLayout();
            this.tabPageAnimations.SuspendLayout();
            this.groupBoxPreview.SuspendLayout();
            this.splitContainerRightTop.Panel1.SuspendLayout();
            this.splitContainerRightTop.Panel2.SuspendLayout();
            this.splitContainerRightTop.SuspendLayout();
            this.groupBoxKeyFrames.SuspendLayout();
            this.toolStripKeyFrames.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableKeyFrames)).BeginInit();
            this.groupBoxCompositeBoneProperties.SuspendLayout();
            this.groupBoxBoneTransforms.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableBoneTransforms)).BeginInit();
            this.toolStripBoneTransforms.SuspendLayout();
            this.SuspendLayout();
            // 
            // columnModelBoneTransforms
            // 
            columnModelBoneTransforms.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumnName,
            this.checkBoxColumnVisible});
            columnModelBoneTransforms.HeaderHeight = 16;
            // 
            // textColumnName
            // 
            this.textColumnName.Resizable = false;
            this.textColumnName.Text = "Name";
            this.textColumnName.Width = 150;
            // 
            // checkBoxColumnVisible
            // 
            this.checkBoxColumnVisible.Alignment = XPTable.Models.ColumnAlignment.Right;
            this.checkBoxColumnVisible.DrawText = false;
            this.checkBoxColumnVisible.Resizable = false;
            this.checkBoxColumnVisible.Width = 25;
            // 
            // groupBoxAnimations
            // 
            this.groupBoxAnimations.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBoxAnimations.Controls.Add(this.propertyGridAnimation);
            this.groupBoxAnimations.Controls.Add(this.toolStripAnimations);
            this.groupBoxAnimations.Controls.Add(this.listViewAnimations);
            this.groupBoxAnimations.Location = new System.Drawing.Point(3, 3);
            this.groupBoxAnimations.Name = "groupBoxAnimations";
            this.groupBoxAnimations.Size = new System.Drawing.Size(206, 344);
            this.groupBoxAnimations.TabIndex = 10;
            this.groupBoxAnimations.TabStop = false;
            this.groupBoxAnimations.Text = "Animations";
            // 
            // propertyGridAnimation
            // 
            this.propertyGridAnimation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.propertyGridAnimation.Location = new System.Drawing.Point(3, 207);
            this.propertyGridAnimation.Name = "propertyGridAnimation";
            this.propertyGridAnimation.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
            this.propertyGridAnimation.Size = new System.Drawing.Size(200, 131);
            this.propertyGridAnimation.TabIndex = 8;
            this.propertyGridAnimation.ToolbarVisible = false;
            // 
            // toolStripAnimations
            // 
            this.toolStripAnimations.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripAnimations.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonAddAnimation,
            this.toolStripButtonDelAnimation,
            this.toolStripSeparator4,
            this.toolStripButtonDuplicateAnim});
            this.toolStripAnimations.Location = new System.Drawing.Point(3, 16);
            this.toolStripAnimations.Name = "toolStripAnimations";
            this.toolStripAnimations.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripAnimations.Size = new System.Drawing.Size(200, 25);
            this.toolStripAnimations.TabIndex = 7;
            this.toolStripAnimations.Text = "toolStrip1";
            // 
            // toolStripButtonAddAnimation
            // 
            this.toolStripButtonAddAnimation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddAnimation.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddAnimation.Image")));
            this.toolStripButtonAddAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddAnimation.Name = "toolStripButtonAddAnimation";
            this.toolStripButtonAddAnimation.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddAnimation.Text = "toolStripButton4";
            this.toolStripButtonAddAnimation.ToolTipText = "Add New Animation";
            this.toolStripButtonAddAnimation.Click += new System.EventHandler(this.toolStripButtonAddAnimation_Click);
            // 
            // toolStripButtonDelAnimation
            // 
            this.toolStripButtonDelAnimation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDelAnimation.Enabled = false;
            this.toolStripButtonDelAnimation.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDelAnimation.Image")));
            this.toolStripButtonDelAnimation.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDelAnimation.Name = "toolStripButtonDelAnimation";
            this.toolStripButtonDelAnimation.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDelAnimation.Text = "toolStripButton1";
            this.toolStripButtonDelAnimation.ToolTipText = "Delete Animation";
            this.toolStripButtonDelAnimation.Click += new System.EventHandler(this.toolStripButtonDelAnimation_Click);
            // 
            // listViewAnimations
            // 
            this.listViewAnimations.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.listViewAnimations.FullRowSelect = true;
            this.listViewAnimations.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.listViewAnimations.HideSelection = false;
            this.listViewAnimations.LabelEdit = true;
            this.listViewAnimations.Location = new System.Drawing.Point(3, 44);
            this.listViewAnimations.Name = "listViewAnimations";
            this.listViewAnimations.Size = new System.Drawing.Size(200, 157);
            this.listViewAnimations.TabIndex = 2;
            this.listViewAnimations.UseCompatibleStateImageBehavior = false;
            this.listViewAnimations.View = System.Windows.Forms.View.List;
            this.listViewAnimations.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listViewAnimations_AfterLabelEdit);
            this.listViewAnimations.SelectedIndexChanged += new System.EventHandler(this.listViewAnimations_SelectedIndexChanged);
            // 
            // tableModelKeyframes
            // 
            this.tableModelKeyframes.RowHeight = 16;
            cellStyle5.BackColor = System.Drawing.Color.Empty;
            cellStyle5.Font = null;
            cellStyle5.ForeColor = System.Drawing.Color.Empty;
            cellStyle5.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle5.WordWrap = false;
            cell5.CellStyle = cellStyle5;
            cell5.Data = "Test";
            cell5.Text = "Test";
            cell5.WordWrap = false;
            cellStyle6.BackColor = System.Drawing.Color.Empty;
            cellStyle6.Font = null;
            cellStyle6.ForeColor = System.Drawing.Color.Empty;
            cellStyle6.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle6.WordWrap = false;
            cell6.CellStyle = cellStyle6;
            cell6.Data = "1";
            cell6.Text = "1";
            cell6.WordWrap = false;
            row3.Cells.AddRange(new XPTable.Models.Cell[] {
            cell5,
            cell6});
            row3.ChildIndex = 0;
            row3.ExpandSubRows = true;
            row3.Height = 27;
            this.tableModelKeyframes.Rows.AddRange(new XPTable.Models.Row[] {
            row3});
            // 
            // columnModelKeyframes
            // 
            this.columnModelKeyframes.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumnName,
            this.numberColumnDuration});
            this.columnModelKeyframes.HeaderHeight = 16;
            // 
            // numberColumnDuration
            // 
            this.numberColumnDuration.Maximum = new decimal(new int[] {
            10000,
            0,
            0,
            0});
            this.numberColumnDuration.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numberColumnDuration.Resizable = false;
            this.numberColumnDuration.ShowUpDownButtons = true;
            this.numberColumnDuration.Width = 50;
            // 
            // panelMiddle
            // 
            this.panelMiddle.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.panelMiddle.Controls.Add(this.toolStrip4);
            this.panelMiddle.Controls.Add(this.compositeEntityEditorControl);
            this.panelMiddle.Location = new System.Drawing.Point(214, 3);
            this.panelMiddle.Name = "panelMiddle";
            this.panelMiddle.Size = new System.Drawing.Size(253, 576);
            this.panelMiddle.TabIndex = 34;
            // 
            // toolStrip4
            // 
            this.toolStrip4.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip4.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonZoomOut,
            this.toolStripButtonZoomNormal,
            this.toolStripButtonZoomIn});
            this.toolStrip4.Location = new System.Drawing.Point(0, 0);
            this.toolStrip4.Name = "toolStrip4";
            this.toolStrip4.Size = new System.Drawing.Size(253, 25);
            this.toolStrip4.TabIndex = 37;
            this.toolStrip4.Text = "toolStrip4";
            // 
            // toolStripButtonZoomOut
            // 
            this.toolStripButtonZoomOut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomOut.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomOut.Image")));
            this.toolStripButtonZoomOut.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomOut.Name = "toolStripButtonZoomOut";
            this.toolStripButtonZoomOut.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomOut.Text = "Zoom Out";
            // 
            // toolStripButtonZoomNormal
            // 
            this.toolStripButtonZoomNormal.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomNormal.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomNormal.Image")));
            this.toolStripButtonZoomNormal.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomNormal.Name = "toolStripButtonZoomNormal";
            this.toolStripButtonZoomNormal.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomNormal.Text = "Normal Zoom";
            // 
            // toolStripButtonZoomIn
            // 
            this.toolStripButtonZoomIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonZoomIn.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonZoomIn.Image")));
            this.toolStripButtonZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonZoomIn.Name = "toolStripButtonZoomIn";
            this.toolStripButtonZoomIn.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonZoomIn.Text = "Zoom In";
            // 
            // compositeEntityEditorControl
            // 
            this.compositeEntityEditorControl.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.compositeEntityEditorControl.CompositeEntity = null;
            this.compositeEntityEditorControl.HighlightedBone = "";
            this.compositeEntityEditorControl.Location = new System.Drawing.Point(0, 28);
            this.compositeEntityEditorControl.Name = "compositeEntityEditorControl";
            this.compositeEntityEditorControl.RealMousePos = new Microsoft.Xna.Framework.Vector2(0F, 0F);
            this.compositeEntityEditorControl.SceneMousePos = new Microsoft.Xna.Framework.Vector2(0F, 0F);
            this.compositeEntityEditorControl.SelectedBones = ((System.Collections.Generic.List<string>)(resources.GetObject("compositeEntityEditorControl.SelectedBones")));
            this.compositeEntityEditorControl.Size = new System.Drawing.Size(253, 548);
            this.compositeEntityEditorControl.TabIndex = 32;
            this.compositeEntityEditorControl.Text = "compositeEntityEditorControl";
            // 
            // tabControlMain
            // 
            this.tabControlMain.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.tabControlMain.Controls.Add(this.tabPageStructure);
            this.tabControlMain.Controls.Add(this.tabPageAnimations);
            this.tabControlMain.Location = new System.Drawing.Point(12, 12);
            this.tabControlMain.Name = "tabControlMain";
            this.tabControlMain.SelectedIndex = 0;
            this.tabControlMain.Size = new System.Drawing.Size(693, 608);
            this.tabControlMain.TabIndex = 35;
            this.tabControlMain.SelectedIndexChanged += new System.EventHandler(this.tabControlMain_SelectedIndexChanged);
            // 
            // tabPageStructure
            // 
            this.tabPageStructure.Controls.Add(this.groupBoxSceneItemProperties);
            this.tabPageStructure.Controls.Add(this.groupBoxBones);
            this.tabPageStructure.Controls.Add(this.groupBoxSceneItemBank);
            this.tabPageStructure.Location = new System.Drawing.Point(4, 22);
            this.tabPageStructure.Name = "tabPageStructure";
            this.tabPageStructure.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageStructure.Size = new System.Drawing.Size(685, 582);
            this.tabPageStructure.TabIndex = 0;
            this.tabPageStructure.Text = "Structure";
            this.tabPageStructure.UseVisualStyleBackColor = true;
            // 
            // groupBoxSceneItemProperties
            // 
            this.groupBoxSceneItemProperties.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBoxSceneItemProperties.Controls.Add(this.comboBoxIsPivotRelative);
            this.groupBoxSceneItemProperties.Controls.Add(this.textBoxPivot);
            this.groupBoxSceneItemProperties.Controls.Add(this.label2);
            this.groupBoxSceneItemProperties.Controls.Add(this.label1);
            this.groupBoxSceneItemProperties.Enabled = false;
            this.groupBoxSceneItemProperties.Location = new System.Drawing.Point(6, 509);
            this.groupBoxSceneItemProperties.Name = "groupBoxSceneItemProperties";
            this.groupBoxSceneItemProperties.Size = new System.Drawing.Size(328, 67);
            this.groupBoxSceneItemProperties.TabIndex = 37;
            this.groupBoxSceneItemProperties.TabStop = false;
            this.groupBoxSceneItemProperties.Text = "SceneItem Properties";
            // 
            // comboBoxIsPivotRelative
            // 
            this.comboBoxIsPivotRelative.FormattingEnabled = true;
            this.comboBoxIsPivotRelative.Items.AddRange(new object[] {
            "true",
            "false"});
            this.comboBoxIsPivotRelative.Location = new System.Drawing.Point(90, 40);
            this.comboBoxIsPivotRelative.Name = "comboBoxIsPivotRelative";
            this.comboBoxIsPivotRelative.Size = new System.Drawing.Size(101, 21);
            this.comboBoxIsPivotRelative.TabIndex = 7;
            this.comboBoxIsPivotRelative.Text = "true";
            this.comboBoxIsPivotRelative.SelectedIndexChanged += new System.EventHandler(this.comboBoxIsPivotRelative_SelectedIndexChanged);
            // 
            // textBoxPivot
            // 
            this.textBoxPivot.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.textBoxPivot.Location = new System.Drawing.Point(90, 14);
            this.textBoxPivot.Name = "textBoxPivot";
            this.textBoxPivot.Size = new System.Drawing.Size(101, 20);
            this.textBoxPivot.TabIndex = 2;
            this.textBoxPivot.Validated += new System.EventHandler(this.textBoxPivot_Validated);
            this.textBoxPivot.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxPivot_KeyDown);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 43);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(78, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "IsPivotRelative";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(53, 21);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(31, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Pivot";
            // 
            // groupBoxBones
            // 
            this.groupBoxBones.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBoxBones.Controls.Add(this.groupBoxBoneProps);
            this.groupBoxBones.Controls.Add(this.toolStrip5);
            this.groupBoxBones.Controls.Add(this.treeViewBones);
            this.groupBoxBones.Location = new System.Drawing.Point(340, 3);
            this.groupBoxBones.Name = "groupBoxBones";
            this.groupBoxBones.Size = new System.Drawing.Size(342, 573);
            this.groupBoxBones.TabIndex = 10;
            this.groupBoxBones.TabStop = false;
            this.groupBoxBones.Text = "Bones";
            // 
            // groupBoxBoneProps
            // 
            this.groupBoxBoneProps.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBoxBoneProps.Controls.Add(this.propertyGridBoneProperties);
            this.groupBoxBoneProps.Enabled = false;
            this.groupBoxBoneProps.Location = new System.Drawing.Point(7, 400);
            this.groupBoxBoneProps.Name = "groupBoxBoneProps";
            this.groupBoxBoneProps.Size = new System.Drawing.Size(329, 167);
            this.groupBoxBoneProps.TabIndex = 36;
            this.groupBoxBoneProps.TabStop = false;
            this.groupBoxBoneProps.Text = "Bone Properties";
            // 
            // propertyGridBoneProperties
            // 
            this.propertyGridBoneProperties.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.propertyGridBoneProperties.HelpVisible = false;
            this.propertyGridBoneProperties.Location = new System.Drawing.Point(7, 20);
            this.propertyGridBoneProperties.Name = "propertyGridBoneProperties";
            this.propertyGridBoneProperties.PropertySort = System.Windows.Forms.PropertySort.NoSort;
            this.propertyGridBoneProperties.Size = new System.Drawing.Size(316, 141);
            this.propertyGridBoneProperties.TabIndex = 0;
            this.propertyGridBoneProperties.ToolbarVisible = false;
            // 
            // toolStrip5
            // 
            this.toolStrip5.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip5.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonAddRootBone,
            this.toolStripButtonAddChildBone,
            this.toolStripButtonDeleteBone,
            this.toolStripSeparator1,
            this.toolStripButtonLevelUpBone,
            this.toolStripButtonLevelDownBone});
            this.toolStrip5.Location = new System.Drawing.Point(3, 16);
            this.toolStrip5.Name = "toolStrip5";
            this.toolStrip5.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStrip5.Size = new System.Drawing.Size(336, 25);
            this.toolStrip5.TabIndex = 35;
            this.toolStrip5.Text = "toolStrip1";
            // 
            // toolStripButtonAddRootBone
            // 
            this.toolStripButtonAddRootBone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddRootBone.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddRootBone.Image")));
            this.toolStripButtonAddRootBone.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddRootBone.Name = "toolStripButtonAddRootBone";
            this.toolStripButtonAddRootBone.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddRootBone.Text = "Add Root Bone";
            this.toolStripButtonAddRootBone.Click += new System.EventHandler(this.toolStripButtonAddRootBone_Click);
            // 
            // toolStripButtonAddChildBone
            // 
            this.toolStripButtonAddChildBone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddChildBone.Enabled = false;
            this.toolStripButtonAddChildBone.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddChildBone.Image")));
            this.toolStripButtonAddChildBone.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddChildBone.Name = "toolStripButtonAddChildBone";
            this.toolStripButtonAddChildBone.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddChildBone.Text = "Add Child Bone";
            this.toolStripButtonAddChildBone.Click += new System.EventHandler(this.toolStripButtonAddChildBone_Click);
            // 
            // toolStripButtonDeleteBone
            // 
            this.toolStripButtonDeleteBone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDeleteBone.Enabled = false;
            this.toolStripButtonDeleteBone.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDeleteBone.Image")));
            this.toolStripButtonDeleteBone.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDeleteBone.Name = "toolStripButtonDeleteBone";
            this.toolStripButtonDeleteBone.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDeleteBone.Text = "toolStripButton1";
            this.toolStripButtonDeleteBone.ToolTipText = "Delete SceneItem";
            this.toolStripButtonDeleteBone.Click += new System.EventHandler(this.toolStripButtonDeleteBone_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonLevelUpBone
            // 
            this.toolStripButtonLevelUpBone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonLevelUpBone.Enabled = false;
            this.toolStripButtonLevelUpBone.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLevelUpBone.Image")));
            this.toolStripButtonLevelUpBone.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonLevelUpBone.Name = "toolStripButtonLevelUpBone";
            this.toolStripButtonLevelUpBone.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonLevelUpBone.Text = "toolStripButton2";
            this.toolStripButtonLevelUpBone.Click += new System.EventHandler(this.toolStripButtonLevelUpBone_Click);
            // 
            // toolStripButtonLevelDownBone
            // 
            this.toolStripButtonLevelDownBone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonLevelDownBone.Enabled = false;
            this.toolStripButtonLevelDownBone.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLevelDownBone.Image")));
            this.toolStripButtonLevelDownBone.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonLevelDownBone.Name = "toolStripButtonLevelDownBone";
            this.toolStripButtonLevelDownBone.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonLevelDownBone.Text = "toolStripButton3";
            this.toolStripButtonLevelDownBone.Click += new System.EventHandler(this.toolStripButtonLevelDownBone_Click);
            // 
            // treeViewBones
            // 
            this.treeViewBones.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.treeViewBones.FullRowSelect = true;
            this.treeViewBones.HideSelection = false;
            this.treeViewBones.ImageKey = "anchor.png";
            this.treeViewBones.ImageList = this.imageListBones;
            this.treeViewBones.LabelEdit = true;
            this.treeViewBones.Location = new System.Drawing.Point(7, 44);
            this.treeViewBones.Name = "treeViewBones";
            this.treeViewBones.SelectedImageKey = "anchor.png";
            this.treeViewBones.ShowRootLines = false;
            this.treeViewBones.Size = new System.Drawing.Size(329, 350);
            this.treeViewBones.TabIndex = 0;
            this.treeViewBones.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.treeViewBones_AfterLabelEdit);
            this.treeViewBones.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewBones_AfterSelect);
            // 
            // imageListBones
            // 
            this.imageListBones.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListBones.ImageStream")));
            this.imageListBones.TransparentColor = System.Drawing.Color.Transparent;
            this.imageListBones.Images.SetKeyName(0, "anchor.png");
            this.imageListBones.Images.SetKeyName(1, "link.png");
            // 
            // groupBoxSceneItemBank
            // 
            this.groupBoxSceneItemBank.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.groupBoxSceneItemBank.Controls.Add(this.toolStripResources);
            this.groupBoxSceneItemBank.Controls.Add(this.sceneItemPreviewControl);
            this.groupBoxSceneItemBank.Controls.Add(this.treeViewSceneItems);
            this.groupBoxSceneItemBank.Location = new System.Drawing.Point(3, 3);
            this.groupBoxSceneItemBank.Name = "groupBoxSceneItemBank";
            this.groupBoxSceneItemBank.Size = new System.Drawing.Size(331, 500);
            this.groupBoxSceneItemBank.TabIndex = 9;
            this.groupBoxSceneItemBank.TabStop = false;
            this.groupBoxSceneItemBank.Text = "SceneItem Bank";
            // 
            // toolStripResources
            // 
            this.toolStripResources.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripResources.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSplitButtonAddSceneItem,
            this.toolStripSplitButtonCopySceneItem,
            this.toolStripButtonDeleteSceneItem,
            this.toolStripSeparator3,
            this.toolStripButtonNewBoneFromItem});
            this.toolStripResources.Location = new System.Drawing.Point(3, 16);
            this.toolStripResources.Name = "toolStripResources";
            this.toolStripResources.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripResources.Size = new System.Drawing.Size(325, 25);
            this.toolStripResources.TabIndex = 34;
            this.toolStripResources.Text = "toolStrip1";
            // 
            // toolStripSplitButtonAddSceneItem
            // 
            this.toolStripSplitButtonAddSceneItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButtonAddSceneItem.Image = ((System.Drawing.Image)(resources.GetObject("toolStripSplitButtonAddSceneItem.Image")));
            this.toolStripSplitButtonAddSceneItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButtonAddSceneItem.Name = "toolStripSplitButtonAddSceneItem";
            this.toolStripSplitButtonAddSceneItem.Size = new System.Drawing.Size(32, 22);
            this.toolStripSplitButtonAddSceneItem.Text = "toolStripSplitButton1";
            this.toolStripSplitButtonAddSceneItem.ToolTipText = "Add New SceneItem";
            // 
            // toolStripSplitButtonCopySceneItem
            // 
            this.toolStripSplitButtonCopySceneItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButtonCopySceneItem.Enabled = false;
            this.toolStripSplitButtonCopySceneItem.Image = ((System.Drawing.Image)(resources.GetObject("toolStripSplitButtonCopySceneItem.Image")));
            this.toolStripSplitButtonCopySceneItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButtonCopySceneItem.Name = "toolStripSplitButtonCopySceneItem";
            this.toolStripSplitButtonCopySceneItem.Size = new System.Drawing.Size(23, 22);
            this.toolStripSplitButtonCopySceneItem.Text = "toolStripButton3";
            this.toolStripSplitButtonCopySceneItem.ToolTipText = "Copy SceneItem";
            this.toolStripSplitButtonCopySceneItem.Click += new System.EventHandler(this.toolStripSplitButtonCopySceneItem_Click);
            // 
            // toolStripButtonDeleteSceneItem
            // 
            this.toolStripButtonDeleteSceneItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDeleteSceneItem.Enabled = false;
            this.toolStripButtonDeleteSceneItem.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDeleteSceneItem.Image")));
            this.toolStripButtonDeleteSceneItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDeleteSceneItem.Name = "toolStripButtonDeleteSceneItem";
            this.toolStripButtonDeleteSceneItem.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDeleteSceneItem.Text = "toolStripButton1";
            this.toolStripButtonDeleteSceneItem.ToolTipText = "Delete SceneItem";
            this.toolStripButtonDeleteSceneItem.Click += new System.EventHandler(this.toolStripButtonDeleteSceneItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonNewBoneFromItem
            // 
            this.toolStripButtonNewBoneFromItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonNewBoneFromItem.Enabled = false;
            this.toolStripButtonNewBoneFromItem.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonNewBoneFromItem.Image")));
            this.toolStripButtonNewBoneFromItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonNewBoneFromItem.Name = "toolStripButtonNewBoneFromItem";
            this.toolStripButtonNewBoneFromItem.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonNewBoneFromItem.Text = "t";
            this.toolStripButtonNewBoneFromItem.ToolTipText = "Create New Bone from this SceneItem";
            this.toolStripButtonNewBoneFromItem.Click += new System.EventHandler(this.toolStripButtonNewBoneFromItem_Click);
            // 
            // sceneItemPreviewControl
            // 
            this.sceneItemPreviewControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.sceneItemPreviewControl.Location = new System.Drawing.Point(3, 354);
            this.sceneItemPreviewControl.Name = "sceneItemPreviewControl";
            this.sceneItemPreviewControl.Size = new System.Drawing.Size(325, 140);
            this.sceneItemPreviewControl.TabIndex = 35;
            this.sceneItemPreviewControl.Text = "sceneItemPreviewControl";
            // 
            // treeViewSceneItems
            // 
            this.treeViewSceneItems.AllowDrop = true;
            this.treeViewSceneItems.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.treeViewSceneItems.HideSelection = false;
            this.treeViewSceneItems.LabelEdit = true;
            this.treeViewSceneItems.Location = new System.Drawing.Point(3, 44);
            this.treeViewSceneItems.Name = "treeViewSceneItems";
            this.treeViewSceneItems.Size = new System.Drawing.Size(325, 304);
            this.treeViewSceneItems.TabIndex = 33;
            this.treeViewSceneItems.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeViewSceneItems_NodeMouseDoubleClick);
            this.treeViewSceneItems.AfterLabelEdit += new System.Windows.Forms.NodeLabelEditEventHandler(this.treeViewSceneItems_AfterLabelEdit);
            this.treeViewSceneItems.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewSceneItems_AfterSelect);
            // 
            // tabPageAnimations
            // 
            this.tabPageAnimations.Controls.Add(this.groupBoxPreview);
            this.tabPageAnimations.Controls.Add(this.splitContainerRightTop);
            this.tabPageAnimations.Controls.Add(this.groupBoxAnimations);
            this.tabPageAnimations.Controls.Add(this.panelMiddle);
            this.tabPageAnimations.Location = new System.Drawing.Point(4, 22);
            this.tabPageAnimations.Name = "tabPageAnimations";
            this.tabPageAnimations.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageAnimations.Size = new System.Drawing.Size(685, 582);
            this.tabPageAnimations.TabIndex = 1;
            this.tabPageAnimations.Text = "Animations";
            this.tabPageAnimations.UseVisualStyleBackColor = true;
            // 
            // groupBoxPreview
            // 
            this.groupBoxPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBoxPreview.Controls.Add(this.sceneItemPreviewCompositeAnimationPreview);
            this.groupBoxPreview.Location = new System.Drawing.Point(3, 352);
            this.groupBoxPreview.Name = "groupBoxPreview";
            this.groupBoxPreview.Size = new System.Drawing.Size(206, 227);
            this.groupBoxPreview.TabIndex = 11;
            this.groupBoxPreview.TabStop = false;
            this.groupBoxPreview.Text = "Animation Preview";
            // 
            // sceneItemPreviewCompositeAnimationPreview
            // 
            this.sceneItemPreviewCompositeAnimationPreview.Location = new System.Drawing.Point(3, 19);
            this.sceneItemPreviewCompositeAnimationPreview.Name = "sceneItemPreviewCompositeAnimationPreview";
            this.sceneItemPreviewCompositeAnimationPreview.Size = new System.Drawing.Size(200, 200);
            this.sceneItemPreviewCompositeAnimationPreview.TabIndex = 0;
            this.sceneItemPreviewCompositeAnimationPreview.Text = "sceneItemPreviewControlAnimation";
            // 
            // splitContainerRightTop
            // 
            this.splitContainerRightTop.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.splitContainerRightTop.Location = new System.Drawing.Point(473, 3);
            this.splitContainerRightTop.Name = "splitContainerRightTop";
            this.splitContainerRightTop.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerRightTop.Panel1
            // 
            this.splitContainerRightTop.Panel1.Controls.Add(this.groupBoxKeyFrames);
            this.splitContainerRightTop.Panel1MinSize = 100;
            // 
            // splitContainerRightTop.Panel2
            // 
            this.splitContainerRightTop.Panel2.Controls.Add(this.groupBoxCompositeBoneProperties);
            this.splitContainerRightTop.Panel2.Controls.Add(this.groupBoxBoneTransforms);
            this.splitContainerRightTop.Size = new System.Drawing.Size(212, 576);
            this.splitContainerRightTop.SplitterDistance = 200;
            this.splitContainerRightTop.TabIndex = 35;
            // 
            // groupBoxKeyFrames
            // 
            this.groupBoxKeyFrames.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
            this.groupBoxKeyFrames.Controls.Add(this.toolStripKeyFrames);
            this.groupBoxKeyFrames.Controls.Add(this.tableKeyFrames);
            this.groupBoxKeyFrames.Location = new System.Drawing.Point(3, 3);
            this.groupBoxKeyFrames.Name = "groupBoxKeyFrames";
            this.groupBoxKeyFrames.Size = new System.Drawing.Size(206, 194);
            this.groupBoxKeyFrames.TabIndex = 30;
            this.groupBoxKeyFrames.TabStop = false;
            this.groupBoxKeyFrames.Text = "KeyFrames";
            // 
            // toolStripKeyFrames
            // 
            this.toolStripKeyFrames.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripKeyFrames.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonAddKeyFrame,
            this.toolStripButtonKeyFrameCopy,
            this.toolStripButtonKeyFramePaste,
            this.toolStripButtonDeleteKeyFrame});
            this.toolStripKeyFrames.Location = new System.Drawing.Point(3, 16);
            this.toolStripKeyFrames.Name = "toolStripKeyFrames";
            this.toolStripKeyFrames.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripKeyFrames.Size = new System.Drawing.Size(200, 25);
            this.toolStripKeyFrames.TabIndex = 30;
            this.toolStripKeyFrames.Text = "toolStrip3";
            // 
            // toolStripButtonAddKeyFrame
            // 
            this.toolStripButtonAddKeyFrame.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonAddKeyFrame.Enabled = false;
            this.toolStripButtonAddKeyFrame.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonAddKeyFrame.Image")));
            this.toolStripButtonAddKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonAddKeyFrame.Name = "toolStripButtonAddKeyFrame";
            this.toolStripButtonAddKeyFrame.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonAddKeyFrame.Text = "toolStripButton4";
            this.toolStripButtonAddKeyFrame.ToolTipText = "Add New KeyFrame";
            this.toolStripButtonAddKeyFrame.Click += new System.EventHandler(this.toolStripButtonAddKeyFrame_Click);
            // 
            // toolStripButtonKeyFrameCopy
            // 
            this.toolStripButtonKeyFrameCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonKeyFrameCopy.Enabled = false;
            this.toolStripButtonKeyFrameCopy.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonKeyFrameCopy.Image")));
            this.toolStripButtonKeyFrameCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonKeyFrameCopy.Name = "toolStripButtonKeyFrameCopy";
            this.toolStripButtonKeyFrameCopy.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonKeyFrameCopy.Text = "toolStripButton3";
            this.toolStripButtonKeyFrameCopy.ToolTipText = "Copy KeyFrame";
            this.toolStripButtonKeyFrameCopy.Click += new System.EventHandler(this.toolStripButtonKeyFrameCopy_Click);
            // 
            // toolStripButtonKeyFramePaste
            // 
            this.toolStripButtonKeyFramePaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonKeyFramePaste.Enabled = false;
            this.toolStripButtonKeyFramePaste.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonKeyFramePaste.Image")));
            this.toolStripButtonKeyFramePaste.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonKeyFramePaste.Name = "toolStripButtonKeyFramePaste";
            this.toolStripButtonKeyFramePaste.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonKeyFramePaste.Text = "toolStripButton2";
            this.toolStripButtonKeyFramePaste.ToolTipText = "Paste KeyFrame";
            this.toolStripButtonKeyFramePaste.Click += new System.EventHandler(this.toolStripButtonKeyFramePaste_Click);
            // 
            // toolStripButtonDeleteKeyFrame
            // 
            this.toolStripButtonDeleteKeyFrame.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDeleteKeyFrame.Enabled = false;
            this.toolStripButtonDeleteKeyFrame.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDeleteKeyFrame.Image")));
            this.toolStripButtonDeleteKeyFrame.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDeleteKeyFrame.Name = "toolStripButtonDeleteKeyFrame";
            this.toolStripButtonDeleteKeyFrame.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDeleteKeyFrame.Text = "toolStripButton1";
            this.toolStripButtonDeleteKeyFrame.ToolTipText = "Delete KeyFrame";
            this.toolStripButtonDeleteKeyFrame.Click += new System.EventHandler(this.toolStripButtonDeleteKeyFrame_Click);
            // 
            // tableKeyFrames
            // 
            this.tableKeyFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.tableKeyFrames.ColumnModel = this.columnModelKeyframes;
            this.tableKeyFrames.DataMember = null;
            this.tableKeyFrames.DataSourceColumnBinder = dataSourceColumnBinder3;
            this.tableKeyFrames.EnableToolTips = true;
            this.tableKeyFrames.FullRowSelect = true;
            this.tableKeyFrames.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tableKeyFrames.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.tableKeyFrames.Location = new System.Drawing.Point(3, 44);
            this.tableKeyFrames.Name = "tableKeyFrames";
            this.tableKeyFrames.NoItemsText = "There are no keyframes yet";
            this.tableKeyFrames.Size = new System.Drawing.Size(200, 144);
            this.tableKeyFrames.TabIndex = 29;
            this.tableKeyFrames.TableModel = this.tableModelKeyframes;
            this.tableKeyFrames.Text = "tableKeyframes";
            this.tableKeyFrames.UnfocusedSelectionBackColor = System.Drawing.SystemColors.Highlight;
            this.tableKeyFrames.UnfocusedSelectionForeColor = System.Drawing.SystemColors.HighlightText;
            this.tableKeyFrames.CellPropertyChanged += new XPTable.Events.CellEventHandler(this.tableKeyFrames_CellPropertyChanged);
            this.tableKeyFrames.SelectionChanged += new XPTable.Events.SelectionEventHandler(this.tableKeyFrames_SelectionChanged);
            // 
            // groupBoxCompositeBoneProperties
            // 
            this.groupBoxCompositeBoneProperties.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBoxCompositeBoneProperties.Controls.Add(this.propertyGridCompositeBoneTransform);
            this.groupBoxCompositeBoneProperties.Enabled = false;
            this.groupBoxCompositeBoneProperties.Location = new System.Drawing.Point(6, 164);
            this.groupBoxCompositeBoneProperties.Name = "groupBoxCompositeBoneProperties";
            this.groupBoxCompositeBoneProperties.Size = new System.Drawing.Size(200, 202);
            this.groupBoxCompositeBoneProperties.TabIndex = 32;
            this.groupBoxCompositeBoneProperties.TabStop = false;
            this.groupBoxCompositeBoneProperties.Text = "Bone Transform Properties";
            // 
            // propertyGridCompositeBoneTransform
            // 
            this.propertyGridCompositeBoneTransform.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.propertyGridCompositeBoneTransform.HelpVisible = false;
            this.propertyGridCompositeBoneTransform.Location = new System.Drawing.Point(7, 20);
            this.propertyGridCompositeBoneTransform.Name = "propertyGridCompositeBoneTransform";
            this.propertyGridCompositeBoneTransform.PropertySort = System.Windows.Forms.PropertySort.NoSort;
            this.propertyGridCompositeBoneTransform.Size = new System.Drawing.Size(187, 176);
            this.propertyGridCompositeBoneTransform.TabIndex = 0;
            this.propertyGridCompositeBoneTransform.ToolbarVisible = false;
            this.propertyGridCompositeBoneTransform.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propertyGridCompositeBoneTransform_PropertyValueChanged);
            // 
            // groupBoxBoneTransforms
            // 
            this.groupBoxBoneTransforms.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.groupBoxBoneTransforms.Controls.Add(this.tableBoneTransforms);
            this.groupBoxBoneTransforms.Controls.Add(this.toolStripBoneTransforms);
            this.groupBoxBoneTransforms.Enabled = false;
            this.groupBoxBoneTransforms.Location = new System.Drawing.Point(3, 3);
            this.groupBoxBoneTransforms.Name = "groupBoxBoneTransforms";
            this.groupBoxBoneTransforms.Size = new System.Drawing.Size(206, 155);
            this.groupBoxBoneTransforms.TabIndex = 31;
            this.groupBoxBoneTransforms.TabStop = false;
            this.groupBoxBoneTransforms.Text = "Bones Transforms";
            // 
            // tableBoneTransforms
            // 
            this.tableBoneTransforms.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.tableBoneTransforms.ColumnModel = columnModelBoneTransforms;
            this.tableBoneTransforms.DataMember = null;
            this.tableBoneTransforms.DataSourceColumnBinder = dataSourceColumnBinder1;
            this.tableBoneTransforms.EnableToolTips = true;
            this.tableBoneTransforms.FullRowSelect = true;
            this.tableBoneTransforms.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.tableBoneTransforms.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
            this.tableBoneTransforms.Location = new System.Drawing.Point(3, 44);
            this.tableBoneTransforms.MultiSelect = true;
            this.tableBoneTransforms.Name = "tableBoneTransforms";
            this.tableBoneTransforms.NoItemsText = "No bone transforms";
            this.tableBoneTransforms.Size = new System.Drawing.Size(200, 105);
            this.tableBoneTransforms.TabIndex = 31;
            this.tableBoneTransforms.TableModel = this.tableModelBoneTransforms;
            this.tableBoneTransforms.Text = "tableBoneTransforms";
            this.tableBoneTransforms.UnfocusedSelectionBackColor = System.Drawing.SystemColors.Highlight;
            this.tableBoneTransforms.UnfocusedSelectionForeColor = System.Drawing.SystemColors.HighlightText;
            this.tableBoneTransforms.CellPropertyChanged += new XPTable.Events.CellEventHandler(this.tableBoneTransforms_CellPropertyChanged);
            this.tableBoneTransforms.SelectionChanged += new XPTable.Events.SelectionEventHandler(this.tableBoneTransforms_SelectionChanged);
            // 
            // tableModelBoneTransforms
            // 
            this.tableModelBoneTransforms.RowHeight = 16;
            cellStyle7.BackColor = System.Drawing.Color.Empty;
            cellStyle7.Font = null;
            cellStyle7.ForeColor = System.Drawing.Color.Empty;
            cellStyle7.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle7.WordWrap = false;
            cell7.CellStyle = cellStyle7;
            cell7.Text = "Bone Transform";
            cell7.WordWrap = false;
            cellStyle8.BackColor = System.Drawing.Color.Empty;
            cellStyle8.Font = null;
            cellStyle8.ForeColor = System.Drawing.Color.Empty;
            cellStyle8.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle8.WordWrap = false;
            cell8.CellStyle = cellStyle8;
            cell8.Data = "1";
            cell8.WordWrap = false;
            row4.Cells.AddRange(new XPTable.Models.Cell[] {
            cell7,
            cell8});
            row4.ChildIndex = 0;
            row4.ExpandSubRows = true;
            row4.Height = 20;
            this.tableModelBoneTransforms.Rows.AddRange(new XPTable.Models.Row[] {
            row4});
            // 
            // toolStripBoneTransforms
            // 
            this.toolStripBoneTransforms.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStripBoneTransforms.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.toolStripButtonLevelUpBoneTransform,
            this.toolStripButtonLevelDownBoneTransform,
            this.toolStripSeparator2,
            this.toolStripButtonSyncTransform});
            this.toolStripBoneTransforms.Location = new System.Drawing.Point(3, 16);
            this.toolStripBoneTransforms.Name = "toolStripBoneTransforms";
            this.toolStripBoneTransforms.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
            this.toolStripBoneTransforms.Size = new System.Drawing.Size(200, 25);
            this.toolStripBoneTransforms.TabIndex = 7;
            this.toolStripBoneTransforms.Text = "toolStrip2";
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(67, 22);
            this.toolStripLabel1.Text = "Draw Order:";
            // 
            // toolStripButtonLevelUpBoneTransform
            // 
            this.toolStripButtonLevelUpBoneTransform.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonLevelUpBoneTransform.Enabled = false;
            this.toolStripButtonLevelUpBoneTransform.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLevelUpBoneTransform.Image")));
            this.toolStripButtonLevelUpBoneTransform.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonLevelUpBoneTransform.Name = "toolStripButtonLevelUpBoneTransform";
            this.toolStripButtonLevelUpBoneTransform.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonLevelUpBoneTransform.Text = "toolStripButton2";
            this.toolStripButtonLevelUpBoneTransform.ToolTipText = "Level Up";
            this.toolStripButtonLevelUpBoneTransform.Click += new System.EventHandler(this.toolStripButtonLevelUpBoneTransform_Click);
            // 
            // toolStripButtonLevelDownBoneTransform
            // 
            this.toolStripButtonLevelDownBoneTransform.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonLevelDownBoneTransform.Enabled = false;
            this.toolStripButtonLevelDownBoneTransform.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLevelDownBoneTransform.Image")));
            this.toolStripButtonLevelDownBoneTransform.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonLevelDownBoneTransform.Name = "toolStripButtonLevelDownBoneTransform";
            this.toolStripButtonLevelDownBoneTransform.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonLevelDownBoneTransform.Text = "toolStripButton3";
            this.toolStripButtonLevelDownBoneTransform.ToolTipText = "Level Down";
            this.toolStripButtonLevelDownBoneTransform.Click += new System.EventHandler(this.toolStripButtonLevelDownBoneTransform_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonSyncTransform
            // 
            this.toolStripButtonSyncTransform.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonSyncTransform.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonSyncTransform.Image")));
            this.toolStripButtonSyncTransform.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonSyncTransform.Name = "toolStripButtonSyncTransform";
            this.toolStripButtonSyncTransform.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonSyncTransform.Text = "toolStripButton1";
            this.toolStripButtonSyncTransform.ToolTipText = "Set all transforms of this animation to those values";
            this.toolStripButtonSyncTransform.Click += new System.EventHandler(this.toolStripButtonSyncTransform_Click);
            // 
            // defaultControlPanel
            // 
            this.defaultControlPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.defaultControlPanel.Location = new System.Drawing.Point(505, 626);
            this.defaultControlPanel.Name = "defaultControlPanel";
            this.defaultControlPanel.Size = new System.Drawing.Size(200, 24);
            this.defaultControlPanel.TabIndex = 36;
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripButtonDuplicateAnim
            // 
            this.toolStripButtonDuplicateAnim.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonDuplicateAnim.Enabled = false;
            this.toolStripButtonDuplicateAnim.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonDuplicateAnim.Image")));
            this.toolStripButtonDuplicateAnim.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonDuplicateAnim.Name = "toolStripButtonDuplicateAnim";
            this.toolStripButtonDuplicateAnim.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonDuplicateAnim.Text = "Duplicate Animation";
            this.toolStripButtonDuplicateAnim.Click += new System.EventHandler(this.toolStripButtonDuplicateAnim_Click);
            // 
            // CompositeEntityEditor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(717, 661);
            this.Controls.Add(this.defaultControlPanel);
            this.Controls.Add(this.tabControlMain);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "CompositeEntityEditor";
            this.Text = "CompositeEntity Editor";
            this.Load += new System.EventHandler(this.CompositeEntityEditor_Load);
            this.groupBoxAnimations.ResumeLayout(false);
            this.groupBoxAnimations.PerformLayout();
            this.toolStripAnimations.ResumeLayout(false);
            this.toolStripAnimations.PerformLayout();
            this.panelMiddle.ResumeLayout(false);
            this.panelMiddle.PerformLayout();
            this.toolStrip4.ResumeLayout(false);
            this.toolStrip4.PerformLayout();
            this.tabControlMain.ResumeLayout(false);
            this.tabPageStructure.ResumeLayout(false);
            this.groupBoxSceneItemProperties.ResumeLayout(false);
            this.groupBoxSceneItemProperties.PerformLayout();
            this.groupBoxBones.ResumeLayout(false);
            this.groupBoxBones.PerformLayout();
            this.groupBoxBoneProps.ResumeLayout(false);
            this.toolStrip5.ResumeLayout(false);
            this.toolStrip5.PerformLayout();
            this.groupBoxSceneItemBank.ResumeLayout(false);
            this.groupBoxSceneItemBank.PerformLayout();
            this.toolStripResources.ResumeLayout(false);
            this.toolStripResources.PerformLayout();
            this.tabPageAnimations.ResumeLayout(false);
            this.groupBoxPreview.ResumeLayout(false);
            this.splitContainerRightTop.Panel1.ResumeLayout(false);
            this.splitContainerRightTop.Panel2.ResumeLayout(false);
            this.splitContainerRightTop.ResumeLayout(false);
            this.groupBoxKeyFrames.ResumeLayout(false);
            this.groupBoxKeyFrames.PerformLayout();
            this.toolStripKeyFrames.ResumeLayout(false);
            this.toolStripKeyFrames.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableKeyFrames)).EndInit();
            this.groupBoxCompositeBoneProperties.ResumeLayout(false);
            this.groupBoxBoneTransforms.ResumeLayout(false);
            this.groupBoxBoneTransforms.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tableBoneTransforms)).EndInit();
            this.toolStripBoneTransforms.ResumeLayout(false);
            this.toolStripBoneTransforms.PerformLayout();
            this.ResumeLayout(false);

        }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
            XPTable.Renderers.DragDropRenderer dragDropRenderer1 = new XPTable.Renderers.DragDropRenderer();
            XPTable.Models.Row row1 = new XPTable.Models.Row();
            this.lblStatus = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.lblPrice = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.lblCustomerName = new System.Windows.Forms.Label();
            this.btnAge6 = new System.Windows.Forms.Button();
            this.clNo = new XPTable.Models.TextColumn();
            this.clSku = new XPTable.Models.TextColumn();
            this.clName = new XPTable.Models.TextColumn();
            this.btnAge5 = new System.Windows.Forms.Button();
            this.btnAge4 = new System.Windows.Forms.Button();
            this.btnAge3 = new System.Windows.Forms.Button();
            this.btnAge2 = new System.Windows.Forms.Button();
            this.btnAge1 = new System.Windows.Forms.Button();
            this.btnWoman = new System.Windows.Forms.Button();
            this.btnMan = new System.Windows.Forms.Button();
            this.clPrice = new XPTable.Models.NumberColumn();
            this.clQty = new XPTable.Models.NumberColumn();
            this.clTotal = new XPTable.Models.NumberColumn();
            this.columnModel1 = new XPTable.Models.ColumnModel();
            this.table1 = new XPTable.Models.Table();
            this.tableModel1 = new XPTable.Models.TableModel();
            this.label8 = new System.Windows.Forms.Label();
            this.txtBarcode = new System.Windows.Forms.TextBox();
            this.pnlBarcode = new System.Windows.Forms.Panel();
            this.label2 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnSearch = new System.Windows.Forms.Button();
            this.panel5 = new System.Windows.Forms.Panel();
            this.btnConfirm = new System.Windows.Forms.Button();
            this.panel7 = new System.Windows.Forms.Panel();
            this.btnCancel = new System.Windows.Forms.Button();
            this.panel6 = new System.Windows.Forms.Panel();
            this.panel8 = new System.Windows.Forms.Panel();
            this.btnCancelProduct = new System.Windows.Forms.Button();
            this.panel3 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel4.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
            this.pnlBarcode.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel6.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // lblStatus
            // 
            this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblStatus.ForeColor = System.Drawing.Color.Green;
            this.lblStatus.Location = new System.Drawing.Point(14, 56);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(204, 23);
            this.lblStatus.TabIndex = 2;
            this.lblStatus.Text = "ไม่พบข้อมูลสินค้าชิ้นนี้";
            this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.lblStatus.Visible = false;
            // 
            // panel4
            // 
            this.panel4.BackColor = System.Drawing.Color.Black;
            this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panel4.Controls.Add(this.lblPrice);
            this.panel4.Controls.Add(this.label4);
            this.panel4.Controls.Add(this.label3);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel4.Location = new System.Drawing.Point(0, 0);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(233, 64);
            this.panel4.TabIndex = 0;
            // 
            // lblPrice
            // 
            this.lblPrice.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lblPrice.Font = new System.Drawing.Font("Arial", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblPrice.ForeColor = System.Drawing.Color.Lime;
            this.lblPrice.Location = new System.Drawing.Point(0, 16);
            this.lblPrice.Name = "lblPrice";
            this.lblPrice.Size = new System.Drawing.Size(229, 44);
            this.lblPrice.TabIndex = 1;
            this.lblPrice.Text = "9,999,999";
            this.lblPrice.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.ForeColor = System.Drawing.Color.Lime;
            this.label4.Location = new System.Drawing.Point(155, 0);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(66, 13);
            this.label4.TabIndex = 0;
            this.label4.Text = "หน่วย = บาท";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.ForeColor = System.Drawing.Color.Lime;
            this.label3.Location = new System.Drawing.Point(3, 0);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(30, 13);
            this.label3.TabIndex = 0;
            this.label3.Text = "ราคา";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.panel4);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel2.Location = new System.Drawing.Point(7, 7);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(233, 67);
            this.panel2.TabIndex = 7;
            // 
            // lblCustomerName
            // 
            this.lblCustomerName.AutoSize = true;
            this.lblCustomerName.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.lblCustomerName.Location = new System.Drawing.Point(47, 26);
            this.lblCustomerName.Name = "lblCustomerName";
            this.lblCustomerName.Size = new System.Drawing.Size(0, 19);
            this.lblCustomerName.TabIndex = 7;
            // 
            // btnAge6
            // 
            this.btnAge6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge6.Location = new System.Drawing.Point(142, 153);
            this.btnAge6.Name = "btnAge6";
            this.btnAge6.Size = new System.Drawing.Size(85, 26);
            this.btnAge6.TabIndex = 10;
            this.btnAge6.Text = "61 ปี ขึ้นไป";
            this.btnAge6.UseVisualStyleBackColor = true;
            this.btnAge6.Click += new System.EventHandler(this.btnAge6_Click);
            // 
            // clNo
            // 
            this.clNo.Alignment = XPTable.Models.ColumnAlignment.Center;
            this.clNo.Editable = false;
            this.clNo.IsTextTrimmed = false;
            this.clNo.Resizable = false;
            this.clNo.Sortable = false;
            this.clNo.Text = "ที่";
            this.clNo.Width = 40;
            // 
            // clSku
            // 
            this.clSku.Alignment = XPTable.Models.ColumnAlignment.Center;
            this.clSku.Editable = false;
            this.clSku.IsTextTrimmed = false;
            this.clSku.Resizable = false;
            this.clSku.Sortable = false;
            this.clSku.Text = "รหัสสินค้า";
            this.clSku.Width = 80;
            // 
            // clName
            // 
            this.clName.Editable = false;
            this.clName.IsTextTrimmed = false;
            this.clName.Sortable = false;
            this.clName.Text = "ชื่อสินค้า";
            this.clName.Width = 400;
            // 
            // btnAge5
            // 
            this.btnAge5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge5.Location = new System.Drawing.Point(142, 121);
            this.btnAge5.Name = "btnAge5";
            this.btnAge5.Size = new System.Drawing.Size(85, 26);
            this.btnAge5.TabIndex = 9;
            this.btnAge5.Text = "41-60 ปี";
            this.btnAge5.UseVisualStyleBackColor = true;
            this.btnAge5.Click += new System.EventHandler(this.btnAge5_Click);
            // 
            // btnAge4
            // 
            this.btnAge4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge4.Location = new System.Drawing.Point(142, 89);
            this.btnAge4.Name = "btnAge4";
            this.btnAge4.Size = new System.Drawing.Size(85, 26);
            this.btnAge4.TabIndex = 8;
            this.btnAge4.Text = "26-40 ปี";
            this.btnAge4.UseVisualStyleBackColor = true;
            this.btnAge4.Click += new System.EventHandler(this.btnAge4_Click);
            // 
            // btnAge3
            // 
            this.btnAge3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge3.Location = new System.Drawing.Point(51, 153);
            this.btnAge3.Name = "btnAge3";
            this.btnAge3.Size = new System.Drawing.Size(85, 26);
            this.btnAge3.TabIndex = 7;
            this.btnAge3.Text = "19-25 ปี";
            this.btnAge3.UseVisualStyleBackColor = true;
            this.btnAge3.Click += new System.EventHandler(this.btnAge3_Click);
            // 
            // btnAge2
            // 
            this.btnAge2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge2.Location = new System.Drawing.Point(51, 121);
            this.btnAge2.Name = "btnAge2";
            this.btnAge2.Size = new System.Drawing.Size(85, 26);
            this.btnAge2.TabIndex = 6;
            this.btnAge2.Text = "13-18 ปี";
            this.btnAge2.UseVisualStyleBackColor = true;
            this.btnAge2.Click += new System.EventHandler(this.btnAge2_Click);
            // 
            // btnAge1
            // 
            this.btnAge1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnAge1.Location = new System.Drawing.Point(51, 89);
            this.btnAge1.Name = "btnAge1";
            this.btnAge1.Size = new System.Drawing.Size(85, 26);
            this.btnAge1.TabIndex = 5;
            this.btnAge1.Text = "1-12 ปี";
            this.btnAge1.UseVisualStyleBackColor = true;
            this.btnAge1.Click += new System.EventHandler(this.btnAge1_Click);
            // 
            // btnWoman
            // 
            this.btnWoman.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnWoman.Location = new System.Drawing.Point(142, 57);
            this.btnWoman.Name = "btnWoman";
            this.btnWoman.Size = new System.Drawing.Size(85, 26);
            this.btnWoman.TabIndex = 4;
            this.btnWoman.Text = "หญิง";
            this.btnWoman.UseVisualStyleBackColor = true;
            this.btnWoman.Click += new System.EventHandler(this.btnWoman_Click);
            // 
            // btnMan
            // 
            this.btnMan.BackColor = System.Drawing.Color.SteelBlue;
            this.btnMan.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnMan.ForeColor = System.Drawing.Color.White;
            this.btnMan.Location = new System.Drawing.Point(51, 57);
            this.btnMan.Name = "btnMan";
            this.btnMan.Size = new System.Drawing.Size(85, 26);
            this.btnMan.TabIndex = 3;
            this.btnMan.Text = "ชาย";
            this.btnMan.UseVisualStyleBackColor = false;
            this.btnMan.Click += new System.EventHandler(this.btnMan_Click);
            // 
            // clPrice
            // 
            this.clPrice.Alignment = XPTable.Models.ColumnAlignment.Center;
            this.clPrice.Editable = false;
            this.clPrice.Format = "#,###";
            this.clPrice.IsTextTrimmed = false;
            this.clPrice.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.clPrice.Sortable = false;
            this.clPrice.Text = "ราคา";
            // 
            // clQty
            // 
            this.clQty.Alignment = XPTable.Models.ColumnAlignment.Center;
            this.clQty.Format = "#,###";
            this.clQty.IsTextTrimmed = false;
            this.clQty.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.clQty.Sortable = false;
            this.clQty.Text = "จำนวน";
            // 
            // clTotal
            // 
            this.clTotal.Alignment = XPTable.Models.ColumnAlignment.Right;
            this.clTotal.Editable = false;
            this.clTotal.Format = "#,###";
            this.clTotal.IsTextTrimmed = false;
            this.clTotal.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.clTotal.Sortable = false;
            this.clTotal.Text = "รวม";
            // 
            // columnModel1
            // 
            this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
            this.clNo,
            this.clSku,
            this.clName,
            this.clPrice,
            this.clQty,
            this.clTotal});
            // 
            // table1
            // 
            this.table1.BorderColor = System.Drawing.Color.Black;
            this.table1.ColumnModel = this.columnModel1;
            this.table1.DataMember = null;
            this.table1.DataSourceColumnBinder = dataSourceColumnBinder1;
            this.table1.Dock = System.Windows.Forms.DockStyle.Fill;
            dragDropRenderer1.ForeColor = System.Drawing.Color.Red;
            this.table1.DragDropRenderer = dragDropRenderer1;
            this.table1.EnableHeaderContextMenu = false;
            this.table1.FullRowSelect = true;
            this.table1.GridLines = XPTable.Models.GridLines.Both;
            this.table1.GridLinesContrainedToData = false;
            this.table1.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.table1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.table1.Location = new System.Drawing.Point(247, 39);
            this.table1.Name = "table1";
            this.table1.NoItemsText = "";
            this.table1.SelectionStyle = XPTable.Models.SelectionStyle.Grid;
            this.table1.Size = new System.Drawing.Size(555, 478);
            this.table1.TabIndex = 12;
            this.table1.TableModel = this.tableModel1;
            this.table1.TabStop = false;
            this.table1.Text = "table1";
            this.table1.UnfocusedBorderColor = System.Drawing.Color.Black;
            this.table1.CellDoubleClick += new XPTable.Events.CellMouseEventHandler(this.table1_CellDoubleClick);
            // 
            // tableModel1
            // 
            row1.ChildIndex = 0;
            row1.ExpandSubRows = true;
            row1.Height = 15;
            this.tableModel1.Rows.AddRange(new XPTable.Models.Row[] {
            row1});
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.label8.Location = new System.Drawing.Point(15, 94);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(31, 16);
            this.label8.TabIndex = 2;
            this.label8.Text = "อายุ :";
            // 
            // txtBarcode
            // 
            this.txtBarcode.BackColor = System.Drawing.Color.Azure;
            this.txtBarcode.Font = new System.Drawing.Font("Arial", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtBarcode.ForeColor = System.Drawing.Color.MidnightBlue;
            this.txtBarcode.Location = new System.Drawing.Point(0, 24);
            this.txtBarcode.Name = "txtBarcode";
            this.txtBarcode.Size = new System.Drawing.Size(233, 29);
            this.txtBarcode.TabIndex = 1;
            this.txtBarcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.txtBarcode.Click += new System.EventHandler(this.txtBarcode_Enter);
            this.txtBarcode.Enter += new System.EventHandler(this.txtBarcode_Enter);
            this.txtBarcode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBarcode_KeyDown);
            // 
            // pnlBarcode
            // 
            this.pnlBarcode.Controls.Add(this.txtBarcode);
            this.pnlBarcode.Controls.Add(this.label2);
            this.pnlBarcode.Controls.Add(this.lblStatus);
            this.pnlBarcode.Dock = System.Windows.Forms.DockStyle.Top;
            this.pnlBarcode.Location = new System.Drawing.Point(7, 74);
            this.pnlBarcode.Name = "pnlBarcode";
            this.pnlBarcode.Size = new System.Drawing.Size(233, 82);
            this.pnlBarcode.TabIndex = 7;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(-3, 8);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(44, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "บาร์โค้ด";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.label7.Location = new System.Drawing.Point(16, 29);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(30, 16);
            this.label7.TabIndex = 1;
            this.label7.Text = "ชื่อ : ";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.label6.Location = new System.Drawing.Point(14, 62);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(32, 16);
            this.label6.TabIndex = 0;
            this.label6.Text = "เพศ :";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnSearch);
            this.groupBox1.Controls.Add(this.lblCustomerName);
            this.groupBox1.Controls.Add(this.btnAge6);
            this.groupBox1.Controls.Add(this.btnAge5);
            this.groupBox1.Controls.Add(this.btnAge4);
            this.groupBox1.Controls.Add(this.btnAge3);
            this.groupBox1.Controls.Add(this.btnAge2);
            this.groupBox1.Controls.Add(this.btnAge1);
            this.groupBox1.Controls.Add(this.btnWoman);
            this.groupBox1.Controls.Add(this.btnMan);
            this.groupBox1.Controls.Add(this.label8);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(233, 188);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "ข้อมูลลูกค้า";
            // 
            // btnSearch
            // 
            this.btnSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
            this.btnSearch.Image = global::PowerPOS_Online.Properties.Resources.magnifier_left;
            this.btnSearch.Location = new System.Drawing.Point(196, 24);
            this.btnSearch.Name = "btnSearch";
            this.btnSearch.Size = new System.Drawing.Size(31, 26);
            this.btnSearch.TabIndex = 2;
            this.btnSearch.UseVisualStyleBackColor = true;
            this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.groupBox1);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel5.Location = new System.Drawing.Point(7, 156);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(233, 188);
            this.panel5.TabIndex = 8;
            // 
            // btnConfirm
            // 
            this.btnConfirm.Dock = System.Windows.Forms.DockStyle.Top;
            this.btnConfirm.Font = new System.Drawing.Font("Tahoma", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(222)));
            this.btnConfirm.Location = new System.Drawing.Point(0, 102);
            this.btnConfirm.Name = "btnConfirm";
            this.btnConfirm.Size = new System.Drawing.Size(233, 38);
            this.btnConfirm.TabIndex = 11;
            this.btnConfirm.Text = "ยืนยันการขาย (F1)";
            this.btnConfirm.UseVisualStyleBackColor = true;
            this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
            // 
            // panel7
            // 
            this.panel7.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel7.Location = new System.Drawing.Point(0, 48);
            this.panel7.Name = "panel7";
            this.panel7.Size = new System.Drawing.Size(233, 8);
            this.panel7.TabIndex = 12;
            // 
            // btnCancel
            // 
            this.btnCancel.Dock = System.Windows.Forms.DockStyle.Top;
            this.btnCancel.Font = new System.Drawing.Font("Tahoma", 11.25F);
            this.btnCancel.Location = new System.Drawing.Point(0, 56);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(233, 38);
            this.btnCancel.TabIndex = 12;
            this.btnCancel.Text = "ยกเลิกการขายทั้งบิล (F12)";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // panel6
            // 
            this.panel6.Controls.Add(this.btnConfirm);
            this.panel6.Controls.Add(this.panel8);
            this.panel6.Controls.Add(this.btnCancel);
            this.panel6.Controls.Add(this.panel7);
            this.panel6.Controls.Add(this.btnCancelProduct);
            this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel6.Location = new System.Drawing.Point(7, 344);
            this.panel6.Name = "panel6";
            this.panel6.Padding = new System.Windows.Forms.Padding(0, 10, 0, 0);
            this.panel6.Size = new System.Drawing.Size(233, 154);
            this.panel6.TabIndex = 10;
            // 
            // panel8
            // 
            this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel8.Location = new System.Drawing.Point(0, 94);
            this.panel8.Name = "panel8";
            this.panel8.Size = new System.Drawing.Size(233, 8);
            this.panel8.TabIndex = 13;
            // 
            // btnCancelProduct
            // 
            this.btnCancelProduct.Dock = System.Windows.Forms.DockStyle.Top;
            this.btnCancelProduct.Font = new System.Drawing.Font("Tahoma", 11.25F);
            this.btnCancelProduct.Location = new System.Drawing.Point(0, 10);
            this.btnCancelProduct.Name = "btnCancelProduct";
            this.btnCancelProduct.Size = new System.Drawing.Size(233, 38);
            this.btnCancelProduct.TabIndex = 14;
            this.btnCancelProduct.Text = "ยกเลิกการขายทีละรายการ (F11)";
            this.btnCancelProduct.UseVisualStyleBackColor = true;
            this.btnCancelProduct.Click += new System.EventHandler(this.btnCancelProduct_Click);
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.panel6);
            this.panel3.Controls.Add(this.panel5);
            this.panel3.Controls.Add(this.pnlBarcode);
            this.panel3.Controls.Add(this.panel2);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel3.Location = new System.Drawing.Point(0, 39);
            this.panel3.Name = "panel3";
            this.panel3.Padding = new System.Windows.Forms.Padding(7, 7, 7, 0);
            this.panel3.Size = new System.Drawing.Size(247, 478);
            this.panel3.TabIndex = 11;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label1.Font = new System.Drawing.Font("DilleniaUPC", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(86, 38);
            this.label1.TabIndex = 0;
            this.label1.Text = "ขายสินค้า";
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.DimGray;
            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(802, 39);
            this.panel1.TabIndex = 10;
            // 
            // UcSell
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.table1);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.panel1);
            this.Name = "UcSell";
            this.Size = new System.Drawing.Size(802, 517);
            this.Load += new System.EventHandler(this.UcSell_Load);
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
            this.pnlBarcode.ResumeLayout(false);
            this.pnlBarcode.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel6.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);

        }
Exemple #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
     XPTable.Renderers.DragDropRenderer    dragDropRenderer1       = new XPTable.Renderers.DragDropRenderer();
     XPTable.Models.Row       row1       = new XPTable.Models.Row();
     XPTable.Models.Cell      cell1      = new XPTable.Models.Cell();
     XPTable.Models.CellStyle cellStyle1 = new XPTable.Models.CellStyle();
     XPTable.Models.Cell      cell2      = new XPTable.Models.Cell();
     XPTable.Models.CellStyle cellStyle2 = new XPTable.Models.CellStyle();
     XPTable.Models.Cell      cell3      = new XPTable.Models.Cell();
     XPTable.Models.CellStyle cellStyle3 = new XPTable.Models.CellStyle();
     this.table1       = new XPTable.Models.Table();
     this.columnModel1 = new XPTable.Models.ColumnModel();
     this.textColumn1  = new XPTable.Models.TextColumn();
     this.textColumn2  = new XPTable.Models.TextColumn();
     this.textColumn3  = new XPTable.Models.TextColumn();
     this.tableModel1  = new XPTable.Models.TableModel();
     this.textColumn4  = new XPTable.Models.TextColumn();
     this.textColumn5  = new XPTable.Models.TextColumn();
     this.textColumn6  = new XPTable.Models.TextColumn();
     this.textColumn7  = new XPTable.Models.TextColumn();
     this.textColumn8  = new XPTable.Models.TextColumn();
     this.textColumn9  = new XPTable.Models.TextColumn();
     this.textColumn10 = new XPTable.Models.TextColumn();
     this.textColumn11 = new XPTable.Models.TextColumn();
     this.textColumn12 = new XPTable.Models.TextColumn();
     this.textColumn13 = new XPTable.Models.TextColumn();
     this.textColumn14 = new XPTable.Models.TextColumn();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     this.SuspendLayout();
     //
     // table1
     //
     this.table1.BorderColor            = System.Drawing.Color.Black;
     this.table1.ColumnModel            = this.columnModel1;
     this.table1.DataMember             = null;
     this.table1.DataSourceColumnBinder = dataSourceColumnBinder1;
     this.table1.Dock                      = System.Windows.Forms.DockStyle.Fill;
     dragDropRenderer1.ForeColor           = System.Drawing.Color.Red;
     this.table1.DragDropRenderer          = dragDropRenderer1;
     this.table1.GridLinesContrainedToData = false;
     this.table1.Location                  = new System.Drawing.Point(0, 0);
     this.table1.Name                      = "table1";
     this.table1.Size                      = new System.Drawing.Size(856, 481);
     this.table1.TabIndex                  = 0;
     this.table1.TableModel                = this.tableModel1;
     this.table1.Text                      = "table1";
     this.table1.UnfocusedBorderColor      = System.Drawing.Color.Black;
     //
     // columnModel1
     //
     this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
         this.textColumn1,
         this.textColumn2,
         this.textColumn3,
         this.textColumn4,
         this.textColumn5,
         this.textColumn6,
         this.textColumn7,
         this.textColumn8,
         this.textColumn9,
         this.textColumn10,
         this.textColumn11,
         this.textColumn12,
         this.textColumn13,
         this.textColumn14
     });
     //
     // textColumn1
     //
     this.textColumn1.IsTextTrimmed = false;
     this.textColumn1.Text          = "a";
     //
     // textColumn2
     //
     this.textColumn2.IsTextTrimmed = false;
     this.textColumn2.Text          = "b";
     //
     // textColumn3
     //
     this.textColumn3.IsTextTrimmed = false;
     this.textColumn3.Text          = "c";
     //
     // tableModel1
     //
     cellStyle1.Alignment     = XPTable.Models.ColumnAlignment.Left;
     cellStyle1.BackColor     = System.Drawing.Color.Empty;
     cellStyle1.Font          = null;
     cellStyle1.ForeColor     = System.Drawing.Color.Empty;
     cellStyle1.LineAlignment = XPTable.Models.RowAlignment.Top;
     cellStyle1.Padding       = new XPTable.Models.CellPadding(0, 0, 0, 0);
     cellStyle1.WordWrap      = false;
     cell1.CellStyle          = cellStyle1;
     cell1.ContentWidth       = 53;
     cell1.Text               = "sdsafasdf";
     cell1.WordWrap           = false;
     cellStyle2.Alignment     = XPTable.Models.ColumnAlignment.Left;
     cellStyle2.BackColor     = System.Drawing.Color.Empty;
     cellStyle2.Font          = null;
     cellStyle2.ForeColor     = System.Drawing.Color.Empty;
     cellStyle2.LineAlignment = XPTable.Models.RowAlignment.Top;
     cellStyle2.Padding       = new XPTable.Models.CellPadding(0, 0, 0, 0);
     cellStyle2.WordWrap      = false;
     cell2.CellStyle          = cellStyle2;
     cell2.ContentWidth       = 72;
     cell2.Text               = "asdgsadhgsd";
     cell2.WordWrap           = false;
     cellStyle3.Alignment     = XPTable.Models.ColumnAlignment.Left;
     cellStyle3.BackColor     = System.Drawing.Color.Empty;
     cellStyle3.Font          = null;
     cellStyle3.ForeColor     = System.Drawing.Color.Empty;
     cellStyle3.LineAlignment = XPTable.Models.RowAlignment.Top;
     cellStyle3.Padding       = new XPTable.Models.CellPadding(0, 0, 0, 0);
     cellStyle3.WordWrap      = false;
     cell3.CellStyle          = cellStyle3;
     cell3.ContentWidth       = 78;
     cell3.Text               = "asdgsadhgsad";
     cell3.WordWrap           = false;
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2,
         cell3
     });
     row1.ChildIndex    = 0;
     row1.ExpandSubRows = true;
     row1.Height        = 15;
     this.tableModel1.Rows.AddRange(new XPTable.Models.Row[] {
         row1
     });
     //
     // textColumn4
     //
     this.textColumn4.IsTextTrimmed = false;
     this.textColumn4.Text          = "d";
     //
     // textColumn5
     //
     this.textColumn5.IsTextTrimmed = false;
     this.textColumn5.Text          = "e";
     //
     // textColumn6
     //
     this.textColumn6.IsTextTrimmed = false;
     this.textColumn6.Text          = "f";
     //
     // textColumn7
     //
     this.textColumn7.IsTextTrimmed = false;
     this.textColumn7.Text          = "g";
     //
     // textColumn8
     //
     this.textColumn8.IsTextTrimmed = false;
     this.textColumn8.Text          = "h";
     //
     // textColumn9
     //
     this.textColumn9.IsTextTrimmed = false;
     this.textColumn9.Text          = "i";
     //
     // textColumn10
     //
     this.textColumn10.IsTextTrimmed = false;
     this.textColumn10.Text          = "j";
     //
     // textColumn11
     //
     this.textColumn11.IsTextTrimmed = false;
     this.textColumn11.Text          = "k";
     //
     // textColumn12
     //
     this.textColumn12.IsTextTrimmed = false;
     this.textColumn12.Text          = "l";
     //
     // textColumn13
     //
     this.textColumn13.IsTextTrimmed = false;
     this.textColumn13.Text          = "m";
     //
     // textColumn14
     //
     this.textColumn14.IsTextTrimmed = false;
     this.textColumn14.Text          = "n";
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(856, 481);
     this.Controls.Add(this.table1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #28
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.Row      row1      = new XPTable.Models.Row();
     XPTable.Models.Cell     cell1     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell2     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell3     = new XPTable.Models.Cell();
     XPTable.Models.RowStyle rowStyle1 = new XPTable.Models.RowStyle();
     XPTable.Models.Row      row2      = new XPTable.Models.Row();
     XPTable.Models.Cell     cell4     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell5     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell6     = new XPTable.Models.Cell();
     XPTable.Models.Row      row3      = new XPTable.Models.Row();
     XPTable.Models.Cell     cell7     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell8     = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell9     = new XPTable.Models.Cell();
     XPTable.Models.Row      row4      = new XPTable.Models.Row();
     XPTable.Models.Cell     cell10    = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell11    = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell12    = new XPTable.Models.Cell();
     XPTable.Models.Row      row5      = new XPTable.Models.Row();
     XPTable.Models.Cell     cell13    = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell14    = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell15    = new XPTable.Models.Cell();
     XPTable.Models.Cell     cell16    = new XPTable.Models.Cell();
     this.table1       = new XPTable.Models.Table();
     this.columnModel1 = new XPTable.Models.ColumnModel();
     this.textColumn1  = new XPTable.Models.TextColumn();
     this.textColumn2  = new XPTable.Models.TextColumn();
     this.textColumn3  = new XPTable.Models.TextColumn();
     this.tableModel1  = new XPTable.Models.TableModel();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     this.SuspendLayout();
     //
     // table1
     //
     this.table1.ColumnModel = this.columnModel1;
     this.table1.GridLines   = XPTable.Models.GridLines.Both;
     this.table1.Location    = new System.Drawing.Point(12, 12);
     this.table1.Name        = "table1";
     this.table1.Size        = new System.Drawing.Size(260, 208);
     this.table1.TabIndex    = 0;
     this.table1.TableModel  = this.tableModel1;
     this.table1.Text        = "table1";
     //
     // columnModel1
     //
     this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
         this.textColumn1,
         this.textColumn2,
         this.textColumn3
     });
     //
     // textColumn1
     //
     this.textColumn1.Alignment = XPTable.Models.ColumnAlignment.Center;
     this.textColumn1.Editable  = false;
     this.textColumn1.Text      = "ID";
     //
     // textColumn2
     //
     this.textColumn2.Alignment = XPTable.Models.ColumnAlignment.Center;
     this.textColumn2.Editable  = false;
     this.textColumn2.Text      = "好友";
     //
     // textColumn3
     //
     this.textColumn3.Alignment = XPTable.Models.ColumnAlignment.Center;
     this.textColumn3.Editable  = false;
     this.textColumn3.Text      = "等级";
     this.textColumn3.Width     = 35;
     //
     // tableModel1
     //
     row1.BackColor = System.Drawing.Color.Transparent;
     cell1.Text     = "1";
     cell2.Text     = "16";
     cell3.Text     = "789";
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2,
         cell3
     });
     row1.ForeColor      = System.Drawing.SystemColors.ControlText;
     rowStyle1.BackColor = System.Drawing.Color.Transparent;
     rowStyle1.Font      = null;
     rowStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     row1.RowStyle       = rowStyle1;
     cell4.Text          = "789";
     cell5.Text          = "456";
     cell6.Text          = "123";
     row2.Cells.AddRange(new XPTable.Models.Cell[] {
         cell4,
         cell5,
         cell6
     });
     cell7.Text = "13";
     cell8.Text = "7";
     cell9.Text = "1";
     row3.Cells.AddRange(new XPTable.Models.Cell[] {
         cell7,
         cell8,
         cell9
     });
     cell10.Text = "7";
     cell11.Text = "2";
     cell12.Text = "25";
     row4.Cells.AddRange(new XPTable.Models.Cell[] {
         cell10,
         cell11,
         cell12
     });
     cell13.Text = "2";
     cell14.Text = "43";
     cell15.Text = "1";
     row5.Cells.AddRange(new XPTable.Models.Cell[] {
         cell13,
         cell14,
         cell15,
         cell16
     });
     this.tableModel1.Rows.AddRange(new XPTable.Models.Row[] {
         row1,
         row2,
         row3,
         row4,
         row5
     });
     //
     // Form1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(284, 262);
     this.Controls.Add(this.table1);
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     this.ResumeLayout(false);
 }
Exemple #29
0
        private void UpdateListView()
        {
            iTable.BeginUpdate();
            iTable.TableModel.Rows.Clear();
            //
            foreach (HeapCell cell in Cells)
            {
                // Check whether the filter permits this item to be included.
                if (CheckAgainstFilter(cell))
                {
                    RelationshipManager relManager = cell.RelationshipManager;

                    XPTable.Models.Row row = new XPTable.Models.Row();
                    row.Tag = cell;
                    //
                    XPTable.Models.Cell cellType = new XPTable.Models.Cell(" " + cell.TypeString);
                    if (cell.Type == HeapCell.TType.EAllocated)
                    {
                        if (cell.IsDescriptor)
                        {
                            cellType.ForeColor   = Color.DarkGoldenrod;
                            cellType.ToolTipText = "Descriptor";
                        }
                        else
                        {
                            cellType.ForeColor = Color.Red;
                        }
                    }
                    else if (cell.Type == HeapCell.TType.EFree)
                    {
                        cellType.ForeColor = Color.Blue;
                    }
                    row.Cells.Add(cellType);
                    row.Cells.Add(new XPTable.Models.Cell("0x" + cell.Address.ToString("x8")));

                    // Must initialise "data" in order for sorting to work (XPTable's numeric sorter relies upon it).
                    XPTable.Models.Cell cellLength = new XPTable.Models.Cell(cell.Length.ToString());
                    cellLength.Data = cell.Length;
                    row.Cells.Add(cellLength);

                    // Reference by
                    XPTable.Models.Cell cellRefBy = new XPTable.Models.Cell(relManager.ReferencedBy.Count.ToString());
                    cellRefBy.Data = relManager.ReferencedBy.Count;
                    row.Cells.Add(cellRefBy);

                    // Embedded references to
                    XPTable.Models.Cell cellEmbeddedRefsTo = new XPTable.Models.Cell(relManager.EmbeddedReferencesTo.Count.ToString());
                    cellEmbeddedRefsTo.Data = relManager.EmbeddedReferencesTo.Count;
                    row.Cells.Add(cellEmbeddedRefsTo);

                    // Payload column
                    if (cell.IsDescriptor)
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.DescriptorText));
                    }
                    else if (cell.Symbol != null)
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.SymbolString));
                    }
                    else
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.RawItems.FirstLine));
                    }
                    //
                    iTable.TableModel.Rows.Add(row);
                }
            }

            // Must sort if the user had previously selected a sort column
            if (iTable.IsValidColumn(iTable.SortingColumn))
            {
                iTable.Sort();
            }

            // Done - end transaction & redraw
            iTable.EndUpdate();
        }
        /// <summary>
        /// Loads the style.
        /// </summary>
        /// <remarks>Documented by Dev05, 2007-10-31</remarks>
        private void LoadStyle()
        {
            if (style == null)
                return;

            actualizing = true;

            comboBoxColorPickerBack.Color = style.BackgroundColor != Color.Empty ? style.BackgroundColor : Color.White;
            comboBoxColorPickerFore.Color = style.ForeColor != Color.Empty ? style.ForeColor : Color.White;

            if (style.FontFamily != null)
                comboBoxFontFamily.SelectedItem = families[style.FontFamily];
            else
                comboBoxFontFamily.SelectedIndex = 0;

            checkBoxFontStyleNone.Checked = style.FontStyle == CSSFontStyle.None;
            checkBoxFontStyleRegular.Checked = (style.FontStyle & CSSFontStyle.Regular) == CSSFontStyle.Regular;
            checkBoxFontStyleBold.Checked = (style.FontStyle & CSSFontStyle.Bold) == CSSFontStyle.Bold;
            checkBoxFontStyleItalic.Checked = (style.FontStyle & CSSFontStyle.Italic) == CSSFontStyle.Italic;
            checkBoxFontStyleStrikeout.Checked = (style.FontStyle & CSSFontStyle.Strikeout) == CSSFontStyle.Strikeout;
            checkBoxFontStyleUnderline.Checked = (style.FontStyle & CSSFontStyle.Underline) == CSSFontStyle.Underline;

            EnumLocalizer.SelectItem(comboBoxFontSizeUnit, style.FontSizeUnit);
            numericUpDownFontSize.Value = (style.FontSize == 0) ? 12 : style.FontSize;
            EnumLocalizer.SelectItem(comboBoxHAlign, style.HorizontalAlign);
            EnumLocalizer.SelectItem(comboBoxVAlign, style.VerticalAlign);

            checkBoxBackColor.Checked = style.BackgroundColor.Name != "Empty" && style.BackgroundColor.Name != "0";
            checkBoxFontFamily.Checked = style.FontFamily != null;
            checkBoxFontSize.Checked = style.FontSize > 0;
            checkBoxForeColor.Checked = style.ForeColor.Name != "Empty" && style.ForeColor.Name != "0";
            checkBoxHAlign.Checked = style.HorizontalAlign != MLifter.DAL.Interfaces.HorizontalAlignment.None;
            checkBoxVAlign.Checked = style.VerticalAlign != VerticalAlignment.None;

            foreach (KeyValuePair<string, string> pair in style.OtherElements)
            {
                XPTable.Models.Row row = new XPTable.Models.Row();
                tableOtherElements.TableModel.Rows.Add(row);
                row.Cells.Add(new XPTable.Models.Cell("x"));
                row.Cells.Add(new XPTable.Models.Cell(pair.Key));
                row.Cells.Add(new XPTable.Models.Cell(pair.Value));
            }

            AddEmtyRow();

            EnableControls();
            actualizing = false;
        }
Exemple #31
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
            XPTable.Renderers.DragDropRenderer dragDropRenderer1 = new XPTable.Renderers.DragDropRenderer();
            XPTable.Models.Row row1 = new XPTable.Models.Row();
            XPTable.Models.Cell cell1 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle1 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell2 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle2 = new XPTable.Models.CellStyle();
            XPTable.Models.Cell cell3 = new XPTable.Models.Cell();
            XPTable.Models.CellStyle cellStyle3 = new XPTable.Models.CellStyle();
            this.table1 = new XPTable.Models.Table();
            this.columnModel1 = new XPTable.Models.ColumnModel();
            this.textColumn1 = new XPTable.Models.TextColumn();
            this.textColumn2 = new XPTable.Models.TextColumn();
            this.textColumn3 = new XPTable.Models.TextColumn();
            this.tableModel1 = new XPTable.Models.TableModel();
            this.textColumn4 = new XPTable.Models.TextColumn();
            this.textColumn5 = new XPTable.Models.TextColumn();
            this.textColumn6 = new XPTable.Models.TextColumn();
            this.textColumn7 = new XPTable.Models.TextColumn();
            this.textColumn8 = new XPTable.Models.TextColumn();
            this.textColumn9 = new XPTable.Models.TextColumn();
            this.textColumn10 = new XPTable.Models.TextColumn();
            this.textColumn11 = new XPTable.Models.TextColumn();
            this.textColumn12 = new XPTable.Models.TextColumn();
            this.textColumn13 = new XPTable.Models.TextColumn();
            this.textColumn14 = new XPTable.Models.TextColumn();
            ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
            this.SuspendLayout();
            // 
            // table1
            // 
            this.table1.BorderColor = System.Drawing.Color.Black;
            this.table1.ColumnModel = this.columnModel1;
            this.table1.DataMember = null;
            this.table1.DataSourceColumnBinder = dataSourceColumnBinder1;
            this.table1.Dock = System.Windows.Forms.DockStyle.Fill;
            dragDropRenderer1.ForeColor = System.Drawing.Color.Red;
            this.table1.DragDropRenderer = dragDropRenderer1;
            this.table1.GridLinesContrainedToData = false;
            this.table1.Location = new System.Drawing.Point(0, 0);
            this.table1.Name = "table1";
            this.table1.Size = new System.Drawing.Size(856, 481);
            this.table1.TabIndex = 0;
            this.table1.TableModel = this.tableModel1;
            this.table1.Text = "table1";
            this.table1.UnfocusedBorderColor = System.Drawing.Color.Black;
            // 
            // columnModel1
            // 
            this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumn1,
            this.textColumn2,
            this.textColumn3,
            this.textColumn4,
            this.textColumn5,
            this.textColumn6,
            this.textColumn7,
            this.textColumn8,
            this.textColumn9,
            this.textColumn10,
            this.textColumn11,
            this.textColumn12,
            this.textColumn13,
            this.textColumn14});
            // 
            // textColumn1
            // 
            this.textColumn1.IsTextTrimmed = false;
            this.textColumn1.Text = "a";
            // 
            // textColumn2
            // 
            this.textColumn2.IsTextTrimmed = false;
            this.textColumn2.Text = "b";
            // 
            // textColumn3
            // 
            this.textColumn3.IsTextTrimmed = false;
            this.textColumn3.Text = "c";
            // 
            // tableModel1
            // 
            cellStyle1.Alignment = XPTable.Models.ColumnAlignment.Left;
            cellStyle1.BackColor = System.Drawing.Color.Empty;
            cellStyle1.Font = null;
            cellStyle1.ForeColor = System.Drawing.Color.Empty;
            cellStyle1.LineAlignment = XPTable.Models.RowAlignment.Top;
            cellStyle1.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle1.WordWrap = false;
            cell1.CellStyle = cellStyle1;
            cell1.ContentWidth = 53;
            cell1.Text = "sdsafasdf";
            cell1.WordWrap = false;
            cellStyle2.Alignment = XPTable.Models.ColumnAlignment.Left;
            cellStyle2.BackColor = System.Drawing.Color.Empty;
            cellStyle2.Font = null;
            cellStyle2.ForeColor = System.Drawing.Color.Empty;
            cellStyle2.LineAlignment = XPTable.Models.RowAlignment.Top;
            cellStyle2.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle2.WordWrap = false;
            cell2.CellStyle = cellStyle2;
            cell2.ContentWidth = 72;
            cell2.Text = "asdgsadhgsd";
            cell2.WordWrap = false;
            cellStyle3.Alignment = XPTable.Models.ColumnAlignment.Left;
            cellStyle3.BackColor = System.Drawing.Color.Empty;
            cellStyle3.Font = null;
            cellStyle3.ForeColor = System.Drawing.Color.Empty;
            cellStyle3.LineAlignment = XPTable.Models.RowAlignment.Top;
            cellStyle3.Padding = new XPTable.Models.CellPadding(0, 0, 0, 0);
            cellStyle3.WordWrap = false;
            cell3.CellStyle = cellStyle3;
            cell3.ContentWidth = 78;
            cell3.Text = "asdgsadhgsad";
            cell3.WordWrap = false;
            row1.Cells.AddRange(new XPTable.Models.Cell[] {
            cell1,
            cell2,
            cell3});
            row1.ChildIndex = 0;
            row1.ExpandSubRows = true;
            row1.Height = 15;
            this.tableModel1.Rows.AddRange(new XPTable.Models.Row[] {
            row1});
            // 
            // textColumn4
            // 
            this.textColumn4.IsTextTrimmed = false;
            this.textColumn4.Text = "d";
            // 
            // textColumn5
            // 
            this.textColumn5.IsTextTrimmed = false;
            this.textColumn5.Text = "e";
            // 
            // textColumn6
            // 
            this.textColumn6.IsTextTrimmed = false;
            this.textColumn6.Text = "f";
            // 
            // textColumn7
            // 
            this.textColumn7.IsTextTrimmed = false;
            this.textColumn7.Text = "g";
            // 
            // textColumn8
            // 
            this.textColumn8.IsTextTrimmed = false;
            this.textColumn8.Text = "h";
            // 
            // textColumn9
            // 
            this.textColumn9.IsTextTrimmed = false;
            this.textColumn9.Text = "i";
            // 
            // textColumn10
            // 
            this.textColumn10.IsTextTrimmed = false;
            this.textColumn10.Text = "j";
            // 
            // textColumn11
            // 
            this.textColumn11.IsTextTrimmed = false;
            this.textColumn11.Text = "k";
            // 
            // textColumn12
            // 
            this.textColumn12.IsTextTrimmed = false;
            this.textColumn12.Text = "l";
            // 
            // textColumn13
            // 
            this.textColumn13.IsTextTrimmed = false;
            this.textColumn13.Text = "m";
            // 
            // textColumn14
            // 
            this.textColumn14.IsTextTrimmed = false;
            this.textColumn14.Text = "n";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(856, 481);
            this.Controls.Add(this.table1);
            this.Name = "Form1";
            this.Text = "Form1";
            ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
            this.ResumeLayout(false);

        }
        private void UpdateListView()
        {
            iTable.BeginUpdate();
            iTable.TableModel.Rows.Clear();
            //
            int index = 0;

            foreach (HeapCell cell in Cells)
            {
                // Check whether the filter permits this item to be included.
                if (CheckAgainstFilter(cell))
                {
                    XPTable.Models.Row row = new XPTable.Models.Row();
                    row.Tag = cell;
                    //
                    row.Cells.Add(new XPTable.Models.Cell(index.ToString("d6")));
                    XPTable.Models.Cell cellType = new XPTable.Models.Cell(" " + cell.TypeString);
                    if (cell.Type == HeapCell.TType.EAllocated)
                    {
                        if (cell.IsDescriptor)
                        {
                            cellType.ForeColor   = Color.DarkGoldenrod;
                            cellType.ToolTipText = "Descriptor";
                        }
                        else
                        {
                            cellType.ForeColor = Color.Red;
                        }
                    }
                    else if (cell.Type == HeapCell.TType.EFree)
                    {
                        cellType.ForeColor = Color.Blue;
                    }
                    row.Cells.Add(cellType);
                    row.Cells.Add(new XPTable.Models.Cell("0x" + cell.Address.ToString("x8")));

                    // Must initialise "data" in order for sorting to work (XPTable's numeric sorter relies upon it).
                    XPTable.Models.Cell cellLength = new XPTable.Models.Cell(cell.Length.ToString());
                    cellLength.Data = cell.Length;
                    row.Cells.Add(cellLength);

                    // If we are filtering to show only descriptor entries, then we also include an extra
                    // column containing the descriptor length.
                    if (iFilterType == TFilterType.EFilterShowCellsAllocatedDescriptor)
                    {
                        if (cell.IsDescriptor)
                        {
                            // Must initialise "data" in order for sorting to work (XPTable's numeric sorter relies upon it).
                            XPTable.Models.Cell cellDescriptorLength = new XPTable.Models.Cell(cell.DescriptorLength.ToString());
                            cellDescriptorLength.Data = cell.DescriptorLength;
                            row.Cells.Add(cellDescriptorLength);
                        }
                        else
                        {
                            row.Cells.Add(new XPTable.Models.Cell(string.Empty));
                        }
                    }
                    else
                    {
                        row.Cells.Add(new XPTable.Models.Cell(string.Empty));
                    }

                    // Payload column
                    if (cell.IsDescriptor)
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.DescriptorText));
                    }
                    else if (cell.Symbol != null)
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.SymbolString));
                    }
                    else
                    {
                        row.Cells.Add(new XPTable.Models.Cell(cell.RawItems.FirstLine));
                    }
                    //
                    iTable.TableModel.Rows.Add(row);

                    ++index;
                }
            }

            // Must sort if the user had previously selected a sort column
            if (iTable.IsValidColumn(iTable.SortingColumn))
            {
                iTable.Sort();
            }

            // Done - end transaction & redraw
            iTable.EndUpdate();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     XPTable.Models.Row  row1   = new XPTable.Models.Row();
     XPTable.Models.Cell cell1  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell2  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell3  = new XPTable.Models.Cell();
     XPTable.Models.Row  row2   = new XPTable.Models.Row();
     XPTable.Models.Cell cell4  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell5  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell6  = new XPTable.Models.Cell();
     XPTable.Models.Row  row3   = new XPTable.Models.Row();
     XPTable.Models.Cell cell7  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell8  = new XPTable.Models.Cell();
     XPTable.Models.Cell cell9  = new XPTable.Models.Cell();
     XPTable.Models.Row  row4   = new XPTable.Models.Row();
     XPTable.Models.Cell cell10 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell11 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell12 = new XPTable.Models.Cell();
     XPTable.Models.Row  row5   = new XPTable.Models.Row();
     XPTable.Models.Cell cell13 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell14 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell15 = new XPTable.Models.Cell();
     XPTable.Models.Row  row6   = new XPTable.Models.Row();
     XPTable.Models.Cell cell16 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell17 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell18 = new XPTable.Models.Cell();
     XPTable.Models.Row  row7   = new XPTable.Models.Row();
     XPTable.Models.Cell cell19 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell20 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell21 = new XPTable.Models.Cell();
     XPTable.Models.Row  row8   = new XPTable.Models.Row();
     XPTable.Models.Cell cell22 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell23 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell24 = new XPTable.Models.Cell();
     XPTable.Models.Row  row9   = new XPTable.Models.Row();
     XPTable.Models.Cell cell25 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell26 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell27 = new XPTable.Models.Cell();
     XPTable.Models.Row  row10  = new XPTable.Models.Row();
     XPTable.Models.Cell cell28 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell29 = new XPTable.Models.Cell();
     XPTable.Models.Cell cell30 = new XPTable.Models.Cell();
     this.buttonOK         = new System.Windows.Forms.Button();
     this.buttonCancel     = new System.Windows.Forms.Button();
     this.tableLayer       = new XPTable.Models.Table();
     this.columnModelLayer = new XPTable.Models.ColumnModel();
     this.textName         = new XPTable.Models.TextColumn();
     this.checkBoxVisible  = new XPTable.Models.CheckBoxColumn();
     this.checkBoxLocked   = new XPTable.Models.CheckBoxColumn();
     this.tableModelLayer  = new XPTable.Models.TableModel();
     ((System.ComponentModel.ISupportInitialize)(this.tableLayer)).BeginInit();
     this.SuspendLayout();
     //
     // buttonOK
     //
     this.buttonOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOK.Location                = new System.Drawing.Point(10, 242);
     this.buttonOK.Name                    = "buttonOK";
     this.buttonOK.Size                    = new System.Drawing.Size(75, 23);
     this.buttonOK.TabIndex                = 1;
     this.buttonOK.Text                    = "确定";
     this.buttonOK.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location                = new System.Drawing.Point(96, 242);
     this.buttonCancel.Name                    = "buttonCancel";
     this.buttonCancel.Size                    = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex                = 2;
     this.buttonCancel.Text                    = "取消";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // tableLayer
     //
     this.tableLayer.ColumnModel    = this.columnModelLayer;
     this.tableLayer.ColumnResizing = false;
     this.tableLayer.Dock           = System.Windows.Forms.DockStyle.Top;
     this.tableLayer.Font           = new System.Drawing.Font("SimSun", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tableLayer.HeaderFont     = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tableLayer.Location       = new System.Drawing.Point(0, 0);
     this.tableLayer.Name           = "tableLayer";
     this.tableLayer.Size           = new System.Drawing.Size(181, 232);
     this.tableLayer.TabIndex       = 0;
     this.tableLayer.TableModel     = this.tableModelLayer;
     //
     // columnModelLayer
     //
     this.columnModelLayer.Columns.AddRange(new XPTable.Models.Column[] {
         this.textName,
         this.checkBoxVisible,
         this.checkBoxLocked
     });
     //
     // textName
     //
     this.textName.Editable   = false;
     this.textName.Selectable = false;
     this.textName.Sortable   = false;
     this.textName.Width      = 90;
     //
     // checkBoxVisible
     //
     this.checkBoxVisible.Selectable = false;
     this.checkBoxVisible.Sortable   = false;
     this.checkBoxVisible.Text       = "可见";
     this.checkBoxVisible.Width      = 40;
     //
     // checkBoxLocked
     //
     this.checkBoxLocked.Selectable = false;
     this.checkBoxLocked.Sortable   = false;
     this.checkBoxLocked.Text       = "锁定";
     this.checkBoxLocked.Width      = 40;
     //
     // tableModelLayer
     //
     this.tableModelLayer.RowHeight = 20;
     cell1.Text = "第0层";
     row1.Cells.AddRange(new XPTable.Models.Cell[] {
         cell1,
         cell2,
         cell3
     });
     cell4.Text = "第1层";
     cell6.Text = "";
     row2.Cells.AddRange(new XPTable.Models.Cell[] {
         cell4,
         cell5,
         cell6
     });
     cell7.Text = "第2层";
     cell9.Text = "";
     row3.Cells.AddRange(new XPTable.Models.Cell[] {
         cell7,
         cell8,
         cell9
     });
     cell10.Text = "第3层";
     row4.Cells.AddRange(new XPTable.Models.Cell[] {
         cell10,
         cell11,
         cell12
     });
     cell13.Text = "第4层";
     row5.Cells.AddRange(new XPTable.Models.Cell[] {
         cell13,
         cell14,
         cell15
     });
     cell16.Text = "第5层";
     cell18.Text = "";
     row6.Cells.AddRange(new XPTable.Models.Cell[] {
         cell16,
         cell17,
         cell18
     });
     cell19.Text = "第6层";
     row7.Cells.AddRange(new XPTable.Models.Cell[] {
         cell19,
         cell20,
         cell21
     });
     cell22.Text = "第7层";
     row8.Cells.AddRange(new XPTable.Models.Cell[] {
         cell22,
         cell23,
         cell24
     });
     cell25.Text = "第8层";
     row9.Cells.AddRange(new XPTable.Models.Cell[] {
         cell25,
         cell26,
         cell27
     });
     cell28.Text = "第9层";
     row10.Cells.AddRange(new XPTable.Models.Cell[] {
         cell28,
         cell29,
         cell30
     });
     this.tableModelLayer.Rows.AddRange(new XPTable.Models.Row[] {
         row1,
         row2,
         row3,
         row4,
         row5,
         row6,
         row7,
         row8,
         row9,
         row10
     });
     //
     // LayerConfigForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(181, 278);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.tableLayer);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "LayerConfigForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "图层配置";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.LayerConfigForm_FormClosing);
     this.Load           += new System.EventHandler(this.LayerConfigForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.tableLayer)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            XPTable.Models.Row row1 = new XPTable.Models.Row();
            XPTable.Models.Cell cell1 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell2 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell3 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell4 = new XPTable.Models.Cell();
            XPTable.Models.Row row2 = new XPTable.Models.Row();
            XPTable.Models.Cell cell5 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell6 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell7 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell8 = new XPTable.Models.Cell();
            XPTable.Models.Row row3 = new XPTable.Models.Row();
            XPTable.Models.Cell cell9 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell10 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell11 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell12 = new XPTable.Models.Cell();
            XPTable.Models.Row row4 = new XPTable.Models.Row();
            XPTable.Models.Cell cell13 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell14 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell15 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell16 = new XPTable.Models.Cell();
            XPTable.Models.Row row5 = new XPTable.Models.Row();
            XPTable.Models.Cell cell17 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell18 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell19 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell20 = new XPTable.Models.Cell();
            XPTable.Models.Row row6 = new XPTable.Models.Row();
            XPTable.Models.Cell cell21 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell22 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell23 = new XPTable.Models.Cell();
            XPTable.Models.Cell cell24 = new XPTable.Models.Cell();
            this.cboQuarter = new System.Windows.Forms.ComboBox();
            this.cboYear = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.txtComID = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.txtSocialInsuranceOffice = new System.Windows.Forms.TextBox();
            this.txtComName = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.txtComAddress = new System.Windows.Forms.TextBox();
            this.label6 = new System.Windows.Forms.Label();
            this.txtComAcc = new System.Windows.Forms.TextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.txtComTel = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.txtComFax = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tblDetail = new XPTable.Models.Table();
            this.tblcolDetail = new XPTable.Models.ColumnModel();
            this.textColumn1 = new XPTable.Models.TextColumn();
            this.numberColumn1 = new XPTable.Models.NumberColumn();
            this.numberColumn2 = new XPTable.Models.NumberColumn();
            this.numberColumn3 = new XPTable.Models.NumberColumn();
            this.tblmdlDetail = new XPTable.Models.TableModel();
            this.txtComBank = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.txtYC1 = new System.Windows.Forms.TextBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtCopyNum = new System.Windows.Forms.TextBox();
            this.label22 = new System.Windows.Forms.Label();
            this.dtCreateDate = new System.Windows.Forms.DateTimePicker();
            this.label20 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.txtYC6 = new System.Windows.Forms.TextBox();
            this.txtYC7 = new System.Windows.Forms.TextBox();
            this.txtYC8 = new System.Windows.Forms.TextBox();
            this.txtYC5 = new System.Windows.Forms.TextBox();
            this.label15 = new System.Windows.Forms.Label();
            this.txtYC4 = new System.Windows.Forms.TextBox();
            this.label14 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.txtYC3 = new System.Windows.Forms.TextBox();
            this.txtYC2 = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.btnExit = new System.Windows.Forms.Button();
            this.btnReport = new System.Windows.Forms.Button();
            this.label21 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // cboQuarter
            // 
            this.cboQuarter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboQuarter.FormattingEnabled = true;
            this.cboQuarter.Items.AddRange(new object[] {
            "1",
            "2",
            "3",
            "4"});
            this.cboQuarter.Location = new System.Drawing.Point(44, 12);
            this.cboQuarter.Name = "cboQuarter";
            this.cboQuarter.Size = new System.Drawing.Size(63, 21);
            this.cboQuarter.TabIndex = 0;
            this.cboQuarter.SelectedIndexChanged += new System.EventHandler(this.TimeValue_SelectedIndexChanged);
            // 
            // cboYear
            // 
            this.cboYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboYear.FormattingEnabled = true;
            this.cboYear.Location = new System.Drawing.Point(148, 12);
            this.cboYear.Name = "cboYear";
            this.cboYear.Size = new System.Drawing.Size(63, 21);
            this.cboYear.TabIndex = 1;
            this.cboYear.SelectedIndexChanged += new System.EventHandler(this.TimeValue_SelectedIndexChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 15);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(26, 13);
            this.label1.TabIndex = 2;
            this.label1.Text = "Quý";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(113, 15);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(29, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "Năm";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(217, 16);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(55, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "Mã đơn vị";
            // 
            // txtComID
            // 
            this.txtComID.Location = new System.Drawing.Point(278, 13);
            this.txtComID.Name = "txtComID";
            this.txtComID.Size = new System.Drawing.Size(150, 20);
            this.txtComID.TabIndex = 5;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.label4.Location = new System.Drawing.Point(9, 42);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(170, 13);
            this.label4.TabIndex = 6;
            this.label4.Text = "A/ Cơ quan Bảo hiểm Xã Hội";
            // 
            // txtSocialInsuranceOffice
            // 
            this.txtSocialInsuranceOffice.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSocialInsuranceOffice.Location = new System.Drawing.Point(185, 39);
            this.txtSocialInsuranceOffice.Name = "txtSocialInsuranceOffice";
            this.txtSocialInsuranceOffice.Size = new System.Drawing.Size(376, 20);
            this.txtSocialInsuranceOffice.TabIndex = 7;
            // 
            // txtComName
            // 
            this.txtComName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtComName.Location = new System.Drawing.Point(71, 65);
            this.txtComName.Name = "txtComName";
            this.txtComName.Size = new System.Drawing.Size(490, 20);
            this.txtComName.TabIndex = 9;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
            this.label5.Location = new System.Drawing.Point(9, 68);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(62, 13);
            this.label5.TabIndex = 8;
            this.label5.Text = "B/ Đơn vị";
            // 
            // txtComAddress
            // 
            this.txtComAddress.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtComAddress.Location = new System.Drawing.Point(71, 91);
            this.txtComAddress.Name = "txtComAddress";
            this.txtComAddress.Size = new System.Drawing.Size(490, 20);
            this.txtComAddress.TabIndex = 11;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(9, 94);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(40, 13);
            this.label6.TabIndex = 10;
            this.label6.Text = "Địa chỉ";
            // 
            // txtComAcc
            // 
            this.txtComAcc.Location = new System.Drawing.Point(71, 117);
            this.txtComAcc.Name = "txtComAcc";
            this.txtComAcc.Size = new System.Drawing.Size(108, 20);
            this.txtComAcc.TabIndex = 13;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(9, 120);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(55, 13);
            this.label7.TabIndex = 12;
            this.label7.Text = "Tài khoản";
            // 
            // txtComTel
            // 
            this.txtComTel.Location = new System.Drawing.Point(71, 143);
            this.txtComTel.Name = "txtComTel";
            this.txtComTel.Size = new System.Drawing.Size(108, 20);
            this.txtComTel.TabIndex = 15;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(9, 146);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(55, 13);
            this.label8.TabIndex = 14;
            this.label8.Text = "Điện thoại";
            // 
            // txtComFax
            // 
            this.txtComFax.Location = new System.Drawing.Point(215, 143);
            this.txtComFax.Name = "txtComFax";
            this.txtComFax.Size = new System.Drawing.Size(144, 20);
            this.txtComFax.TabIndex = 17;
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(185, 146);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(24, 13);
            this.label9.TabIndex = 16;
            this.label9.Text = "Fax";
            // 
            // groupBox1
            // 
            this.groupBox1.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.groupBox1.Controls.Add(this.tblDetail);
            this.groupBox1.Location = new System.Drawing.Point(12, 169);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(549, 149);
            this.groupBox1.TabIndex = 18;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Đối chiếu số liệu thu, nộp bảo hiểm xã hội";
            // 
            // tblDetail
            // 
            this.tblDetail.AlternatingRowColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(237)))), ((int)(((byte)(245)))));
            this.tblDetail.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(242)))), ((int)(((byte)(249)))));
            this.tblDetail.ColumnModel = this.tblcolDetail;
            this.tblDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tblDetail.EnableToolTips = true;
            this.tblDetail.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblDetail.FullRowSelect = true;
            this.tblDetail.GridColor = System.Drawing.SystemColors.ControlDark;
            this.tblDetail.GridLines = XPTable.Models.GridLines.Both;
            this.tblDetail.GridLineStyle = XPTable.Models.GridLineStyle.Dot;
            this.tblDetail.HeaderFont = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.tblDetail.Location = new System.Drawing.Point(3, 16);
            this.tblDetail.Name = "tblDetail";
            this.tblDetail.NoItemsText = "Không tìm thấy thông tin";
            this.tblDetail.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(169)))), ((int)(((byte)(183)))), ((int)(((byte)(201)))));
            this.tblDetail.SelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            this.tblDetail.SelectionStyle = XPTable.Models.SelectionStyle.Grid;
            this.tblDetail.Size = new System.Drawing.Size(543, 130);
            this.tblDetail.SortedColumnBackColor = System.Drawing.Color.Transparent;
            this.tblDetail.TabIndex = 80;
            this.tblDetail.TableModel = this.tblmdlDetail;
            this.tblDetail.UnfocusedSelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(210)))), ((int)(((byte)(221)))));
            this.tblDetail.UnfocusedSelectionForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(66)))), ((int)(((byte)(121)))));
            // 
            // tblcolDetail
            // 
            this.tblcolDetail.Columns.AddRange(new XPTable.Models.Column[] {
            this.textColumn1,
            this.numberColumn1,
            this.numberColumn2,
            this.numberColumn3});
            // 
            // textColumn1
            // 
            this.textColumn1.Text = "Chỉ tiêu";
            this.textColumn1.Width = 170;
            // 
            // numberColumn1
            // 
            this.numberColumn1.Format = "#,###;(#,###);0";
            this.numberColumn1.Text = "Số báo cáo";
            this.numberColumn1.Width = 120;
            // 
            // numberColumn2
            // 
            this.numberColumn2.Format = "#,###;(#,###);0";
            this.numberColumn2.Text = "Số kiểm tra";
            this.numberColumn2.Width = 120;
            // 
            // numberColumn3
            // 
            this.numberColumn3.Format = "#,###;(#,###);0";
            this.numberColumn3.Text = "Chênh lệch";
            this.numberColumn3.Width = 120;
            // 
            // tblmdlDetail
            // 
            cell1.Text = "1/ Số lao động";
            cell2.Data = "0";
            cell3.Data = "0";
            cell4.Data = "0";
            row1.Cells.AddRange(new XPTable.Models.Cell[] {
            cell1,
            cell2,
            cell3,
            cell4});
            cell5.Text = "2/ Tổng quỹ lương";
            cell6.Data = "0";
            cell7.Data = "0";
            cell8.Data = "0";
            row2.Cells.AddRange(new XPTable.Models.Cell[] {
            cell5,
            cell6,
            cell7,
            cell8});
            cell9.Text = "3/ BHXH phải nộp trong quý";
            cell10.Data = "0";
            cell11.Data = "0";
            cell12.Data = "0";
            row3.Cells.AddRange(new XPTable.Models.Cell[] {
            cell9,
            cell10,
            cell11,
            cell12});
            cell13.Text = "4/ Số kỳ trước mang sang";
            cell14.Data = "0";
            cell15.Data = "0";
            cell16.Data = "0";
            row4.Cells.AddRange(new XPTable.Models.Cell[] {
            cell13,
            cell14,
            cell15,
            cell16});
            cell17.Text = "5/ Số đã nộp trong quý";
            cell18.Data = "0";
            cell19.Data = "0";
            cell20.Data = "0";
            row5.Cells.AddRange(new XPTable.Models.Cell[] {
            cell17,
            cell18,
            cell19,
            cell20});
            cell21.Text = "6/ Số chuyển sang kỳ sau";
            cell22.Data = "0";
            cell23.Data = "0";
            cell24.Data = "0";
            row6.Cells.AddRange(new XPTable.Models.Cell[] {
            cell21,
            cell22,
            cell23,
            cell24});
            this.tblmdlDetail.Rows.AddRange(new XPTable.Models.Row[] {
            row1,
            row2,
            row3,
            row4,
            row5,
            row6});
            // 
            // txtComBank
            // 
            this.txtComBank.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.txtComBank.Location = new System.Drawing.Point(215, 117);
            this.txtComBank.Name = "txtComBank";
            this.txtComBank.Size = new System.Drawing.Size(346, 20);
            this.txtComBank.TabIndex = 20;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(185, 120);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(22, 13);
            this.label10.TabIndex = 19;
            this.label10.Text = "Tại";
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(6, 22);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(137, 13);
            this.label12.TabIndex = 22;
            this.label12.Text = "1/ Số nộp thừa ghi cho quý";
            // 
            // txtYC1
            // 
            this.txtYC1.Location = new System.Drawing.Point(149, 19);
            this.txtYC1.Name = "txtYC1";
            this.txtYC1.Size = new System.Drawing.Size(25, 20);
            this.txtYC1.TabIndex = 23;
            // 
            // groupBox2
            // 
            this.groupBox2.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.groupBox2.Controls.Add(this.txtCopyNum);
            this.groupBox2.Controls.Add(this.label22);
            this.groupBox2.Controls.Add(this.dtCreateDate);
            this.groupBox2.Controls.Add(this.label20);
            this.groupBox2.Controls.Add(this.label19);
            this.groupBox2.Controls.Add(this.label18);
            this.groupBox2.Controls.Add(this.label17);
            this.groupBox2.Controls.Add(this.label16);
            this.groupBox2.Controls.Add(this.txtYC6);
            this.groupBox2.Controls.Add(this.txtYC7);
            this.groupBox2.Controls.Add(this.txtYC8);
            this.groupBox2.Controls.Add(this.txtYC5);
            this.groupBox2.Controls.Add(this.label15);
            this.groupBox2.Controls.Add(this.txtYC4);
            this.groupBox2.Controls.Add(this.label14);
            this.groupBox2.Controls.Add(this.label13);
            this.groupBox2.Controls.Add(this.txtYC3);
            this.groupBox2.Controls.Add(this.txtYC2);
            this.groupBox2.Controls.Add(this.label11);
            this.groupBox2.Controls.Add(this.txtYC1);
            this.groupBox2.Controls.Add(this.label12);
            this.groupBox2.Location = new System.Drawing.Point(12, 324);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(549, 130);
            this.groupBox2.TabIndex = 24;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Yêu cầu";
            // 
            // txtCopyNum
            // 
            this.txtCopyNum.Location = new System.Drawing.Point(257, 104);
            this.txtCopyNum.Name = "txtCopyNum";
            this.txtCopyNum.Size = new System.Drawing.Size(25, 20);
            this.txtCopyNum.TabIndex = 45;
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(210, 107);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(41, 13);
            this.label22.TabIndex = 44;
            this.label22.Text = "Số bản";
            // 
            // dtCreateDate
            // 
            this.dtCreateDate.CustomFormat = "dd/MM/yyyy";
            this.dtCreateDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
            this.dtCreateDate.Location = new System.Drawing.Point(107, 103);
            this.dtCreateDate.Name = "dtCreateDate";
            this.dtCreateDate.Size = new System.Drawing.Size(100, 20);
            this.dtCreateDate.TabIndex = 43;
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(6, 107);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(93, 13);
            this.label20.TabIndex = 42;
            this.label20.Text = "Ngày lập biên bản";
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(20, 68);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(482, 13);
            this.label19.TabIndex = 41;
            this.label19.Text = "phải nộp số tiền còn thiếu trên vào tài khoản của cơ quan BHXH tại ngân hàng ( Kh" +
                "o bạc nhà nước)";
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(6, 87);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(401, 13);
            this.label18.TabIndex = 40;
            this.label18.Text = "3/ Số tiền phải nộp theo lãi xuất tiền vay quá hạn do ngân hàng nhà nước quy định" +
                "";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Location = new System.Drawing.Point(421, 48);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(27, 13);
            this.label17.TabIndex = 39;
            this.label17.Text = "năm";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(350, 48);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(34, 13);
            this.label16.TabIndex = 38;
            this.label16.Text = "tháng";
            // 
            // txtYC6
            // 
            this.txtYC6.Location = new System.Drawing.Point(390, 45);
            this.txtYC6.Name = "txtYC6";
            this.txtYC6.Size = new System.Drawing.Size(25, 20);
            this.txtYC6.TabIndex = 37;
            // 
            // txtYC7
            // 
            this.txtYC7.Location = new System.Drawing.Point(454, 45);
            this.txtYC7.Name = "txtYC7";
            this.txtYC7.Size = new System.Drawing.Size(25, 20);
            this.txtYC7.TabIndex = 36;
            // 
            // txtYC8
            // 
            this.txtYC8.Location = new System.Drawing.Point(424, 87);
            this.txtYC8.Name = "txtYC8";
            this.txtYC8.Size = new System.Drawing.Size(119, 20);
            this.txtYC8.TabIndex = 32;
            // 
            // txtYC5
            // 
            this.txtYC5.Location = new System.Drawing.Point(319, 45);
            this.txtYC5.Name = "txtYC5";
            this.txtYC5.Size = new System.Drawing.Size(25, 20);
            this.txtYC5.TabIndex = 31;
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(138, 48);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(175, 13);
            this.label15.TabIndex = 30;
            this.label15.Text = "Đơn vị đồng ý chậm nhất đến ngày";
            // 
            // txtYC4
            // 
            this.txtYC4.Location = new System.Drawing.Point(107, 45);
            this.txtYC4.Name = "txtYC4";
            this.txtYC4.Size = new System.Drawing.Size(25, 20);
            this.txtYC4.TabIndex = 29;
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(6, 48);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(95, 13);
            this.label14.TabIndex = 28;
            this.label14.Text = "2/ Số nộp thiếu là ";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(255, 22);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(15, 13);
            this.label13.TabIndex = 27;
            this.label13.Text = "là";
            // 
            // txtYC3
            // 
            this.txtYC3.Location = new System.Drawing.Point(276, 19);
            this.txtYC3.Name = "txtYC3";
            this.txtYC3.Size = new System.Drawing.Size(139, 20);
            this.txtYC3.TabIndex = 26;
            // 
            // txtYC2
            // 
            this.txtYC2.Location = new System.Drawing.Point(213, 19);
            this.txtYC2.Name = "txtYC2";
            this.txtYC2.Size = new System.Drawing.Size(36, 20);
            this.txtYC2.TabIndex = 25;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(180, 22);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(27, 13);
            this.label11.TabIndex = 24;
            this.label11.Text = "năm";
            // 
            // btnExit
            // 
            this.btnExit.Location = new System.Drawing.Point(503, 460);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(58, 28);
            this.btnExit.TabIndex = 25;
            this.btnExit.Text = "Đóng";
            this.btnExit.UseVisualStyleBackColor = true;
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
            // 
            // btnReport
            // 
            this.btnReport.Location = new System.Drawing.Point(394, 460);
            this.btnReport.Name = "btnReport";
            this.btnReport.Size = new System.Drawing.Size(103, 28);
            this.btnReport.TabIndex = 26;
            this.btnReport.Text = "Lưu và In báo cáo";
            this.btnReport.UseVisualStyleBackColor = true;
            this.btnReport.Click += new System.EventHandler(this.btnPrint_Click);
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(473, 9);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(88, 13);
            this.label21.TabIndex = 27;
            this.label21.Text = "Mẫu số : C46-BH";
            // 
            // frmInsuranceC46
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(573, 493);
            this.Controls.Add(this.label21);
            this.Controls.Add(this.btnReport);
            this.Controls.Add(this.btnExit);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.txtComBank);
            this.Controls.Add(this.label10);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.txtComFax);
            this.Controls.Add(this.label9);
            this.Controls.Add(this.txtComTel);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.txtComAcc);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.txtComAddress);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.txtComName);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.txtSocialInsuranceOffice);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.txtComID);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.cboYear);
            this.Controls.Add(this.cboQuarter);
            this.MaximumSize = new System.Drawing.Size(581, 527);
            this.MinimumSize = new System.Drawing.Size(581, 527);
            this.Name = "frmInsuranceC46";
            this.Text = "Biên bản đối chiếu số liệu nộp BHXH";
            this.Load += new System.EventHandler(this.frmInsuranceC46_Load);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        private void UpdateTable()
        {
            HeapCell cell = Cell;

            //
            iTable_RawItems.BeginUpdate();
            iTableModel.Rows.Clear();
            //
            if (cell != null)
            {
                // Work out our raw item offset and how many raw items to create in this operation
                SymbianUtils.RawItems.RawItemCollection rawItems = cell.RawItems;
                int rawItemIndexStart = DisplayRawDataItemIndex;
                int rawItemIndexEnd   = Math.Min(rawItems.Count, rawItemIndexStart + KNumberOfRowsPerPage);
                //
                for (int rawItemIndex = rawItemIndexStart; rawItemIndex < rawItemIndexEnd; rawItemIndex++)
                {
                    SymbianUtils.RawItems.RawItem rawEntry = rawItems[rawItemIndex];
                    XPTable.Models.Row            row      = new XPTable.Models.Row();

                    // Cell 1: address
                    XPTable.Models.Cell cellAddress = new XPTable.Models.Cell(rawEntry.Address.ToString("x8"));

                    // Cell 2: raw data
                    XPTable.Models.Cell cellRawData = new XPTable.Models.Cell(rawEntry.OriginalData.ToString("x8"));

                    // Cell 3: interpreted data
                    XPTable.Models.Cell cellInterpretedData = new XPTable.Models.Cell(rawEntry.Data.ToString("x8"));

                    // Cell 4: characterised data
                    XPTable.Models.Cell cellCharacterisedData = new XPTable.Models.Cell(rawEntry.OriginalCharacterisedData);

                    // Update style of "interpreted data" if there is a link to another cell.
                    RelationshipInfo relationshipDescriptor = (rawEntry.Tag != null && rawEntry.Tag is RelationshipInfo) ? (RelationshipInfo)rawEntry.Tag : null;
                    if (relationshipDescriptor != null)
                    {
                        // The colour depends on whether it is a clean link or not. Clean means whether or not the
                        // link points to the start of the specified cell.
                        HeapCell linkedCell = relationshipDescriptor.ToCell;
                        //
                        if (relationshipDescriptor.IsCleanLink)
                        {
                            cellInterpretedData.ForeColor   = Color.Blue;
                            cellInterpretedData.ToolTipText = "Link to start of: " + linkedCell.SymbolString + " @ 0x" + linkedCell.Address.ToString("x8");
                        }
                        else
                        {
                            cellInterpretedData.ForeColor   = Color.DarkBlue;
                            cellInterpretedData.ToolTipText = "Link within: " + linkedCell.SymbolString + " @ 0x" + linkedCell.Address.ToString("x8");
                        }

                        cellInterpretedData.Font = new Font(iTable_RawItems.Font, FontStyle.Underline);
                        cellInterpretedData.Tag  = linkedCell;
                    }

                    // Finish construction
                    row.Cells.Add(cellAddress);
                    row.Cells.Add(cellRawData);
                    row.Cells.Add(cellInterpretedData);
                    row.Cells.Add(cellCharacterisedData);
                    iTableModel.Rows.Add(row);
                }
            }

            // Try to select first item
            if (iTable_RawItems.TableModel.Rows.Count > 0)
            {
                iTable_RawItems.EnsureVisible(0, 0);
                iTable_RawItems.TableModel.Selections.SelectCell(0, 0);
            }

            iTable_RawItems.EndUpdate();
        }