private void AddUnboundColumn(DevExpress.XtraGrid.Views.Grid.GridView view)
        {
            view.Columns["C1_CONFIRM_YN"].UnboundType = DevExpress.Data.UnboundColumnType.Object;
            RepositoryItemPictureEdit ri1 = new RepositoryItemPictureEdit();

            ri1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            view.Columns["C1_CONFIRM_YN"].ColumnEdit = ri1;

            view.Columns["C2_CONFIRM_YN"].UnboundType = DevExpress.Data.UnboundColumnType.Object;
            RepositoryItemPictureEdit ri2 = new RepositoryItemPictureEdit();

            ri2.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            view.Columns["C2_CONFIRM_YN"].ColumnEdit = ri2;
            //DevExpress.XtraGrid.Columns.GridColumn col1 = view.Columns.AddVisible("C1_CONFIRM_YN");
            //col1.UnboundType = DevExpress.Data.UnboundColumnType.Object;
            //RepositoryItemPictureEdit ri1 = new RepositoryItemPictureEdit();
            //ri1.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            //col1.ColumnEdit = ri1;

            //DevExpress.XtraGrid.Columns.GridColumn col2 = view.Columns.AddVisible("C2_CONFIRM_YN");
            //col2.UnboundType = DevExpress.Data.UnboundColumnType.Object;
            //RepositoryItemPictureEdit ri2 = new RepositoryItemPictureEdit();
            //ri2.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
            //col2.ColumnEdit = ri2;
        }
Exemplo n.º 2
0
        public void displayAllInfo(GridControl gridControl, Guid id, GridView gridView, RepositoryItemPictureEdit repositoryItemPictureEdit)
        {
            try
            {
                DataTable dt = new DataTable();
                dt.Columns.Add("colSTT1", Type.GetType("System.String"));
                dt.Columns.Add("colHOLOT1", Type.GetType("System.String"));
                dt.Columns.Add("colTEN", Type.GetType("System.String"));
                dt.Columns.Add("colCOMAT", Type.GetType("System.String"));
                dt.Columns.Add("colANH", typeof(Image));

                int i = 1;
                foreach (var item in doanVienThamDu(id))
                {
                    DataRow dataRow = dt.NewRow();
                    dataRow[0] = i.ToString();
                    dataRow[1] = item.HOLOT;
                    dataRow[2] = item.TEN;
                    dataRow[3] = getStatus(item.MASODV, id);
                    dataRow[4] = Image.FromFile(Application.StartupPath + "\\Images\\" + item.CMND + ".jpg");
                    dt.Rows.Add(dataRow);
                    i++;
                }

                gridControl.DataSource                    = dt;
                repositoryItemPictureEdit                 = new RepositoryItemPictureEdit();
                repositoryItemPictureEdit.SizeMode        = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
                repositoryItemPictureEdit.ShowZoomSubMenu = DevExpress.Utils.DefaultBoolean.True;
                gridControl.RepositoryItems.Add(repositoryItemPictureEdit);
                gridView.Columns["colANH"].ColumnEdit = repositoryItemPictureEdit;
            }
            catch (Exception)
            {
            }
        }
        private void getAllFichierContrat()
        {
            gridControl5.DataSource = null;
            gridView5.Columns.Clear();
            string bbbb = "oui";

            if (login1.depart == "direction")
            {
                gridControl5.DataSource = fun.get_retour1(projets.id_projet);
            }
            else
            {
                gridControl5.DataSource = fun.get_retour1a(projets.id_projet, bbbb);
            }

            RepositoryItemPictureEdit pictureEdit = gridControl5.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

            pictureEdit.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;

            gridView5.Columns["extension"].ColumnEdit = pictureEdit;
            this.gridView5.Columns[0].Visible         = false;
            this.gridView5.Columns[1].Caption         = "Description";
            this.gridView5.Columns[2].Visible         = false;
            this.gridView5.Columns[3].Caption         = "Date de création";
            this.gridView5.Columns[4].Caption         = "Commentaire";
            this.gridView5.Columns[6].Caption         = "Type de fichier";
            this.gridView5.Columns[7].Visible         = false;
            this.gridView5.Columns[8].Visible         = false;
            this.gridView5.Columns[9].Visible         = false;
            this.gridView5.Columns[10].Visible        = false;

            gridView5.Columns[4].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridView5.Columns[6].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
        }
Exemplo n.º 4
0
        private void getAllFichierContrat1()
        {
            gridControl2.DataSource = null;
            gridView2.Columns.Clear();
            string a1 = "decaissement";

            gridControl2.DataSource = fun.get_conta(a1);
            RepositoryItemPictureEdit pictureEdit = gridControl2.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

            pictureEdit.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;

            gridView2.Columns["extension"].ColumnEdit = pictureEdit;
            this.gridView2.Columns[0].Visible         = false;
            this.gridView2.Columns[1].Caption         = "Date";
            this.gridView2.Columns[2].Caption         = "Designation";
            this.gridView2.Columns[3].Caption         = "Catégorie";
            this.gridView2.Columns[4].Caption         = "Montant HT";
            this.gridView2.Columns[6].Caption         = "Fournisseur";
            this.gridView2.Columns[5].Visible         = false;
            this.gridView2.Columns[7].Caption         = "Commentaire";
            this.gridView2.Columns[8].Caption         = "Justificatif";
            this.gridView2.Columns[9].Caption         = "Type";
            this.gridView2.Columns[10].Visible        = false;
            this.gridView2.Columns[11].Visible        = false;



            //gridView1.Columns[4].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            //gridView1.Columns[6].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
        }
Exemplo n.º 5
0
        public MyGridControl16()
        {
            InitializeComponent();

            gridControl1.DataSource = CreateTable(20);
            SimpleButton button = new SimpleButton();

            button.Dock = DockStyle.Top;
            button.Text = "Switch size";
            Controls.Add(button);
            button.Click += (s, e) => {
                if (layoutView1.CardMinSize.Height == 300)
                {
                    layoutView1.CardMinSize = new Size(100, 100);
                }
                else
                {
                    layoutView1.CardMinSize = new Size(300, 300);
                }
            };
            GridColumn unbound = layoutView1.Columns.AddVisible("unbound");

            unbound.UnboundType = DevExpress.Data.UnboundColumnType.Object;
            RepositoryItemPictureEdit pictureEdit = new RepositoryItemPictureEdit();

            unbound.ColumnEdit = pictureEdit;
            layoutView1.CustomUnboundColumnData += LayoutView1_CustomUnboundColumnData;
        }
Exemplo n.º 6
0
        public void AddColumn(string ColName, string Caption, string Caption2, string ResourceName)
        {
            try
            {
                RepositoryItemPictureEdit ri = new RepositoryItemPictureEdit();
                grdSalesProductList.RepositoryItems.Add(ri);
                DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                col.VisibleIndex = grvSalesProductList.Columns.Count;
                if (_remote.User.UserLanguage == "MN")
                {
                    col.Caption = Caption;
                }
                else
                {
                    col.Caption = Caption2;
                }

                col.FieldName              = string.Format(ColName);
                col.ColumnEdit             = ri;
                col.UnboundType            = DevExpress.Data.UnboundColumnType.Object;
                col.OptionsColumn.ReadOnly = true;
                col.Width   = 32;
                col.ToolTip = ResourceName;
                grvSalesProductList.Columns.Add(col);

                DataColumnRefresh();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message + ex.StackTrace + ex.StackTrace);
            }
        }
Exemplo n.º 7
0
        private void Form1_Load(object sender, EventArgs e)
        {
            //Define a connection to the database
            OleDbConnection connection = new OleDbConnection(
                "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = ..\\..\\Data\\nwind.mdb");
            //Create data adapters for retrieving data from the tables
            OleDbDataAdapter AdapterCategories = new OleDbDataAdapter(
                "SELECT CategoryID, CategoryName, Picture FROM Categories", connection);
            OleDbDataAdapter AdapterProducts = new OleDbDataAdapter(
                "SELECT CategoryID, ProductID, ProductName, UnitPrice FROM Products", connection);

            DataSet dataSet11 = new DataSet();

            //Create DataTable objects for representing database's tables
            AdapterCategories.Fill(dataSet11, "Categories");
            AdapterProducts.Fill(dataSet11, "Products");

            //Set up a master-detail relationship between the DataTables
            DataColumn keyColumn        = dataSet11.Tables["Categories"].Columns["CategoryID"];
            DataColumn foreignKeyColumn = dataSet11.Tables["Products"].Columns["CategoryID"];

            dataSet11.Relations.Add("CategoriesProducts", keyColumn, foreignKeyColumn);

            //Bind the grid control to the data source
            gridControl1.DataSource = dataSet11.Tables["Categories"];
            gridControl1.ForceInitialize();

            //Assign a CardView to the relationship
            CardView cardView1 = new CardView(gridControl1);

            gridControl1.LevelTree.Nodes.Add("CategoriesProducts", cardView1);
            //Specify text to be displayed within detail tabs.
            cardView1.ViewCaption = "Category Products";

            //Hide the CategoryID column for the master View
            gridView1.Columns["CategoryID"].VisibleIndex = -1;

            //Present data in the Picture column as Images
            RepositoryItemPictureEdit riPictureEdit = gridControl1.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

            gridView1.Columns["Picture"].ColumnEdit = riPictureEdit;
            //Stretch images within cells.
            riPictureEdit.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
            gridView1.Columns["Picture"].OptionsColumn.FixedWidth = true;
            //Change Picture column's width
            gridView1.Columns["Picture"].Width = 180;

            //Change row height in the master View
            gridView1.RowHeight = 50;

            //Create columns for the detail pattern View
            cardView1.PopulateColumns(dataSet11.Tables["Products"]);
            //Hide the CategoryID column for the detail View
            cardView1.Columns["CategoryID"].VisibleIndex = -1;
            //Format UnitPrice column values as currency
            cardView1.Columns["UnitPrice"].DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
            cardView1.Columns["UnitPrice"].DisplayFormat.FormatString = "c2";
        }
Exemplo n.º 8
0
        /// <summary>
        /// 데이터 테이블을 정의 합니다.
        /// </summary>
        private void SetDataTable()
        {
            //dt.Columns.Add("CHECK_YN");
            //dt.Columns.Add("CUST_NO");
            //dt.Columns.Add("MEMBER_SEQ");
            //dt.Columns.Add("PHOTO", typeof(byte[]));
            //dt.Columns.Add("MEMBER_NO");    //회원번호
            //dt.Columns.Add("MEMBER_NAME_KOR");
            //dt.Columns.Add("MEMBER_NAME_ENG");
            //dt.Columns.Add("MEMBER_NAME_CHT");
            //dt.Columns.Add("ID_NO");
            //dt.Columns.Add("ID_NO_MASK");
            //dt.Columns.Add("MEMBER_GROUP_CODE");
            //dt.Columns.Add("MEMBER_GROUP_CODE_NAME");
            //dt.Columns.Add("CARD_ISSUE_NO");  //카드번호
            //dt.Columns.Add("ISSUE_SEQ", typeof(decimal));
            //dt.Columns.Add("REG_DATE");
            //dt.Columns.Add("REG_DATE_MASK");
            //dt.Columns.Add("REG_WAY_CODE");
            //dt.Columns.Add("REG_WAY_CODE_NAME");
            //dt.Columns.Add("REG_REASON_CODE");
            //dt.Columns.Add("REG_REASON_CODE_NAME");
            //dt.Columns.Add("ISSUE_DATE");
            //dt.Columns.Add("ISSUE_DATE_MASK");
            //dt.Columns.Add("ISSUE_FEE", typeof(decimal));
            //dt.Columns.Add("END_DATE");
            //dt.Columns.Add("END_DATE_MASK");
            //dt.Columns.Add("USE_YN");
            //dt.Columns.Add("RMRK");

            dt.Columns.Add("PRINT_STATUS");
            dt.Columns.Add("DB_STATUS");
            dt.Columns.Add("X_POS");
            dt.Columns.Add("Y_POS");
            dt.Columns.Add("X_SIZE");
            dt.Columns.Add("Y_SIZE");

            dt.PrimaryKey = new System.Data.DataColumn[] { dt.Columns["CARD_ISSUE_NO"] };
            GridStyle gs = new GridStyle(this.grid, this.gridView);

            //gs.AddColumn("선택"      , "CHECK_YN"			     , _ColumnType.CheckBox, 80, _ColumnAlign.Center, true, true);
            gs.AddColumn("사진", "PHOTO", _ColumnType.Picture, 80, _ColumnAlign.Center, true, false, DevExpress.Utils.DefaultBoolean.False);
            gs.AddColumn("카드번호", "CARD_ISSUE_NO", _ColumnType.Default, 80, _ColumnAlign.Center, true);
            gs.AddColumn("회원번호", "MEMBER_NO", _ColumnType.Default, 80, _ColumnAlign.Center, true);
            gs.AddColumn("회원명", "MEMBER_NAME_KOR", _ColumnType.Default, 80, _ColumnAlign.Center, true);
            gs.AddColumn("출력상태", "PRINT_STATUS", _ColumnType.Default, 80, _ColumnAlign.Center, true);
            gs.AddColumn("저장상태", "DB_STATUS", _ColumnType.Default, 80, _ColumnAlign.Center, true);
            RepositoryItemPictureEdit photo = (RepositoryItemPictureEdit)gridView.Columns["PHOTO"].ColumnEdit;

            photo.CustomHeight = 80;
            photo.SizeMode     = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
            this.gridView.OptionsView.RowAutoHeight = true;
            Cls.Grid.Options.SetColumnColor(gridView, StyleFormatConditionType.Row, gridView.Columns["CHECK_YN"], DevExpress.XtraGrid.FormatConditionEnum.Equal, Color.LightPink, "Y");
            Cls.Grid.Options.SelectedRow(this.gridView);
            Cls.Grid.Options.EmbeddedNavigater(this.grid);
            this.grid.DataSource = dt;
        }
Exemplo n.º 9
0
        static void pe_LoadCompleted(object sender, EventArgs e)
        {
            RepositoryItemPictureEdit pe = sender as RepositoryItemPictureEdit;
            NavBarItem item = pe.OwnerEdit.Tag as NavBarItem;

            item.SmallImage = ImageHelper.GetScaleImage(((PictureEdit)pe.OwnerEdit).Image, new Size(16, 16));
            pe.OwnerEdit.Dispose();
            pe.Dispose();
        }
Exemplo n.º 10
0
        private void gridView1_InitNewRow_1(object sender, DevExpress.XtraGrid.Views.Grid.InitNewRowEventArgs e)
        {
            ColumnView View = sender as ColumnView;
            // gridView1.SetRowCellValue(e.RowHandle, "gridColumn1", "1"); //复制最后一行的数据到新行
            RepositoryItemPictureEdit repositoryItemPictureEdit2 = new RepositoryItemPictureEdit();

            repositoryItemPictureEdit2.InitialImage = Image.FromFile(@"G:\test\PRO190726\Images\player-icons_40px_1137045_easyicon.net.png");
            View.SetRowCellValue(e.RowHandle, View.Columns[0], repositoryItemPictureEdit2);
            View.SetRowCellValue(e.RowHandle, View.Columns[1], "12312");
        }
Exemplo n.º 11
0
        public static RepositoryItemPictureEdit CreateTreePictureEdit(this TreeListColumn treeColumn)
        {
            RepositoryItemPictureEdit repositoryItem = new RepositoryItemPictureEdit
            {
                SizeMode = PictureSizeMode.Zoom,
                PictureInterpolationMode = InterpolationMode.High,
                NullText = " "
            };

            treeColumn.TreeList.RepositoryItems.Add(repositoryItem);
            treeColumn.ColumnEdit = repositoryItem;
            return(repositoryItem);
        }
Exemplo n.º 12
0
        /// <summary>
        /// 创建GridView的列编辑为PictureEdit
        /// </summary>
        /// <param name="gridColumn">GridColumn列对象</param>
        /// <returns></returns>
        public static RepositoryItemPictureEdit CreatePictureEdit(this GridColumn gridColumn)
        {
            RepositoryItemPictureEdit repositoryItem = new RepositoryItemPictureEdit
            {
                SizeMode = PictureSizeMode.Zoom,
                PictureInterpolationMode = InterpolationMode.High,
                NullText = " "
            };

            gridColumn.View.GridControl.RepositoryItems.Add(repositoryItem);
            gridColumn.ColumnEdit = repositoryItem;
            return(repositoryItem);
        }
Exemplo n.º 13
0
        private void Form1_Load(object sender, System.EventArgs e)
        {
            gridControl1.DataSource = CreateTable();

            RepositoryItemCheckEdit checkEdit = gridControl1.RepositoryItems.Add("CheckEdit") as RepositoryItemCheckEdit;

            checkEdit.PictureChecked   = GetImageFromResource("Image0");
            checkEdit.PictureUnchecked = GetImageFromResource("Image1");
            checkEdit.CheckStyle       = DevExpress.XtraEditors.Controls.CheckStyles.UserDefined;
            gridView1.Columns["CheckEdit"].ColumnEdit = checkEdit;

            RepositoryItemImageComboBox imageCombo = gridControl1.RepositoryItems.Add("ImageComboBoxEdit") as RepositoryItemImageComboBox;

            DevExpress.Utils.ImageCollection images = new DevExpress.Utils.ImageCollection();
            images.AddImage(GetImageFromResource("Image2"));
            images.AddImage(GetImageFromResource("Image3"));
            images.AddImage(GetImageFromResource("Image4"));
            imageCombo.SmallImages = images;
            imageCombo.Items.Add(new ImageComboBoxItem("Minor", 1, 0));
            imageCombo.Items.Add(new ImageComboBoxItem("Moderate", 2, 1));
            imageCombo.Items.Add(new ImageComboBoxItem("Severe", 3, 2));
            imageCombo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridControl1.RepositoryItems.Add(imageCombo);
            gridView1.Columns["ImageComboBox"].ColumnEdit = imageCombo;

            RepositoryItemPictureEdit pictureEdit = gridControl1.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

            pictureEdit.SizeMode = PictureSizeMode.Zoom;
            pictureEdit.NullText = " ";
            gridView1.Columns["PictureEdit"].ColumnEdit = pictureEdit;
            gridControl1.RepositoryItems.Add(pictureEdit);

            RepositoryItemTextEdit textEdit = new RepositoryItemTextEdit();

            //textEdit.ContextImageOptions.Image = GetImageFromResource("Image6");
            gridView1.Columns["ContextImage"].ColumnEdit = textEdit;
            gridControl1.RepositoryItems.Add(textEdit);

            RepositoryItemButtonEdit buttonEdit = new RepositoryItemButtonEdit();

            buttonEdit.TextEditStyle = TextEditStyles.DisableTextEditor;
            buttonEdit.AllowHtmlDraw = DevExpress.Utils.DefaultBoolean.True;
            var collection = new DevExpress.Utils.ImageCollection();

            collection.AddImage(GetImageFromResource("Image7"));
            collection.Images.SetKeyName(0, "Image7.png");
            buttonEdit.HtmlImages = collection;
            gridView1.Columns["HTMLImage"].ColumnEdit = buttonEdit;
            gridControl1.RepositoryItems.Add(buttonEdit);
        }
Exemplo n.º 14
0
        void CreateUnboundColumns()
        {
            RepositoryItemPictureEdit pictureEdit = new RepositoryItemPictureEdit();
            int count = gridView1.Columns.Count;

            for (int i = 0; i < count - 2; i++)
            {
                GridColumn column = gridView1.Columns.Add();
                column.FieldName    = String.Format("unbound{0}", i);
                column.UnboundType  = DevExpress.Data.UnboundColumnType.Object;
                column.ColumnEdit   = pictureEdit;
                column.VisibleIndex = (2 * i) + 2;
            }
        }
		private void InitEditors()
		{
			RepositoryItemPictureEdit itemPictureEdit = new RepositoryItemPictureEdit();
			RepositoryItemRadioGroup itemRadioGroup = new RepositoryItemRadioGroup();
			RepositoryItemSpinEdit itemSpinEdit = new RepositoryItemSpinEdit();
			RepositoryItemCalcEdit itemCalcEdit = new RepositoryItemCalcEdit();
			RepositoryItemImageComboBox itemImageComboBox = new RepositoryItemImageComboBox();
			itemPictureEdit.Name = "repositoryItemPictureEdit1";
			itemSpinEdit.Name = "repositoryItemSpinEdit1";
			itemCalcEdit.Name = "repositoryItemCalcEdit1";
			itemRadioGroup.Name = "repositoryItemRadioGroup1";
			itemImageComboBox.Name = "repositoryItemImageComboBox1";
			itemImageComboBox.Items.AddRange(new object[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Sports", "SPORTS", -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Saloon", "SALOON", -1), new DevExpress.XtraEditors.Controls.ImageComboBoxItem("Truck", "TRUCK", -1)});
			itemRadioGroup.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] { new DevExpress.XtraEditors.Controls.RadioGroupItem("Yes", "Yes"), new DevExpress.XtraEditors.Controls.RadioGroupItem("No", "No")});
			this.gridControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { itemPictureEdit, itemRadioGroup, itemSpinEdit, itemCalcEdit, itemImageComboBox});
		}
        public SimulationCompoundProcessView()
        {
            InitializeComponent();
            _compoundMoleculeRepository = new UxRepositoryItemComboBox(gridViewPartialProcesses);
            _systemicProcessRepository  = new UxRepositoryItemComboBox(gridViewSystemicProcesses);
            _imageRepository            = new RepositoryItemPictureEdit();
            gridViewSystemicProcesses.AllowsFiltering      = false;
            gridViewSystemicProcesses.HorzScrollVisibility = ScrollVisibility.Never;
            gridViewPartialProcesses.AllowsFiltering       = false;
            gridViewPartialProcesses.HorzScrollVisibility  = ScrollVisibility.Never;

            gridViewSystemicProcesses.RowStyle += rowSystemicStyle;
            gridViewPartialProcesses.RowStyle  += rowPartialStyle;
            Icon = ApplicationIcons.EmptyIcon;
            _gridViewPartialBinder  = new GridViewBinder <TPartialProcessDTO>(gridViewPartialProcesses);
            _gridViewSystemicBinder = new GridViewBinder <SimulationSystemicProcessSelectionDTO>(gridViewSystemicProcesses);
        }
Exemplo n.º 17
0
        private void InitializeComponentWithValidation()
        {
            gridControlWithValidation.DataSource = CreateDataSourceWithValidation();

            customGridViewWithValidation.PopulateColumns();

            GridColumn columnWithImage;

            if ((columnWithImage = customGridViewWithValidation.Columns.ColumnByFieldName(nameof(TestTable4Types.Image))) != null)
            {
                var riPictureEdit = new RepositoryItemPictureEdit();
                riPictureEdit.SizeMode = PictureSizeMode.Zoom;

                columnWithImage.ColumnEdit = riPictureEdit;
                columnWithImage.OptionsColumn.AllowEdit = false;
            }
        }
Exemplo n.º 18
0
        /// <summary>
        /// 데이터 테이블을 정의 합니다.
        /// </summary>
        private void SetDataTable()
        {
            dt.Columns.Add("PHOTO", typeof(byte[]));
            dt.Columns.Add("MEMBER_NO");
            dt.Columns.Add("MEMBER_NAME_KOR");
            dt.Columns.Add("BIRTH_DAY");
            dt.Columns.Add("ID_NO");
            dt.Columns.Add("HOME_TEL");
            dt.Columns.Add("OFFICE_TEL");
            dt.Columns.Add("MOBILE_TEL");
            dt.Columns.Add("CONT_ITEM1");
            dt.Columns.Add("REM_ITEM1");
            dt.Columns.Add("REM_ITEM2");
            dt.Columns.Add("REM_WEEK");
            dt.Columns.Add("REM_WEEKEND");

            GridStyle gs = new GridStyle(this.grid, this.gridView);

            gs.AddColumn("사진", "PHOTO", _ColumnType.Picture, 90, _ColumnAlign.Center, true, false, DevExpress.Utils.DefaultBoolean.False);
            gs.AddColumn("회원번호", "MEMBER_NO", _ColumnType.Default, 70, _ColumnAlign.Center, true);
            gs.AddColumn("회원명", "MEMBER_NAME_KOR", _ColumnType.Default, 80, _ColumnAlign.Left, true);
            gs.AddColumn("생년월일", "BIRTH_DAY", _ColumnType.Default, 70, _ColumnAlign.Center, false);
            gs.AddColumn("주민/사업", "ID_NO", _ColumnType.Default, 90, _ColumnAlign.Center, true);
            gs.AddColumn("자택전화", "HOME_TEL", _ColumnType.Default, 90, _ColumnAlign.Center, true);
            gs.AddColumn("직장전화", "OFFICE_TEL", _ColumnType.Default, 90, _ColumnAlign.Center, true);
            gs.AddColumn("휴대전화", "MOBILE_TEL", _ColumnType.Default, 90, _ColumnAlign.Center, true);
            gs.AddColumn("G.C여부", "CONT_ITEM1", _ColumnType.Default, 65, _ColumnAlign.Center, true);
            gs.AddColumn("부킹여부", "REM_ITEM2", _ColumnType.Default, 65, _ColumnAlign.Center, true);
            gs.AddColumn("혜택", "REM_ITEM1", _ColumnType.Default, 65, _ColumnAlign.Center, true);
            gs.AddColumn("주중", "REM_WEEK", _ColumnType.Default, 200, _ColumnAlign.Left, true);
            gs.AddColumn("주말", "REM_WEEKEND", _ColumnType.Default, 200, _ColumnAlign.Left, true);

            RepositoryItemPictureEdit photo = (RepositoryItemPictureEdit)gridView.Columns["PHOTO"].ColumnEdit;

            photo.CustomHeight = 100;
            photo.SizeMode     = DevExpress.XtraEditors.Controls.PictureSizeMode.Stretch;
            this.gridView.OptionsView.RowAutoHeight = true;


            Cls.Grid.Options.SelectedRow(this.gridView);
            Cls.Grid.Options.EmbeddedNavigater(this.grid);
            Cls.Grid.Options.FilterRow(this.gridView, false);

            this.grid.DataSource = dt;
        }
Exemplo n.º 19
0
        private void InitializeComponent()
        {
            ComponentResourceManager manager = new ComponentResourceManager(typeof(xucBarcodeEdit));

            this.fProperties = new RepositoryItemPictureEdit();
            this.btnPrint    = new SimpleButton();
            this.fProperties.BeginInit();
            base.SuspendLayout();
            this.fProperties.Name  = "fProperties";
            this.btnPrint.Image    = (Image)manager.GetObject("btnPrint.Image");
            this.btnPrint.Location = new Point(0, 0);
            this.btnPrint.Name     = "btnPrint";
            this.btnPrint.Size     = new Size(0x4b, 0x17);
            this.btnPrint.TabIndex = 0;
            this.btnPrint.Text     = "In";
            this.btnPrint.Visible  = false;
            this.fProperties.EndInit();
            base.ResumeLayout(false);
        }
Exemplo n.º 20
0
        //private RepositoryItemFontEdit repositoryItemFontEdit1;
        public PropertyGridControl()
        {
            if (!DesignMode)
            {
                Dock = DockStyle.Fill;
                //LookAndFeel.SkinName = "Lilian";
                //LookAndFeel.UseDefaultLookAndFeel = false;

                //repositoryItemFontEdit1 = new RepositoryItemFontEdit();
                RepositoryItemPictureEdit repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
                repositoryItemPictureEdit1.CustomHeight = 64;
                repositoryItemPictureEdit1.ReadOnly     = true;
                repositoryItemPictureEdit1.ShowMenu     = false;
                repositoryItemPictureEdit1.SizeMode     = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;

                LineStyleRepositoryItemEdit lineStypeEdit = new LineStyleRepositoryItemEdit();
                RepositoryItemPWColorEdit   colorEditor   = new RepositoryItemPWColorEdit();
                //RepositoryItemColorEdit colorEditor = new RepositoryItemColorEdit();
                colorEditor.ShowSystemColors = false;

                this.DefaultEditors.AddRange(new DevExpress.XtraVerticalGrid.Rows.DefaultEditor[]
                {
                    new DevExpress.XtraVerticalGrid.Rows.DefaultEditor(typeof(System.Drawing.Image),
                                                                       repositoryItemPictureEdit1)
                    , new DefaultEditor(typeof(DashKind), lineStypeEdit)
                    , new DefaultEditor(typeof(Color), colorEditor)
                });

                RepositoryItems.AddRange(new RepositoryItem[]
                {
                    repositoryItemPictureEdit1
                    , lineStypeEdit
                    , colorEditor
                });
                AutoGenerateRows = true;

                TreeButtonStyle = TreeButtonStyle.TreeView;
                lineStypeEdit.SelectedIndexChanged += new EventHandler(lineStypeEdit_SelectedIndexChanged);
                CellValueChanged += new DevExpress.XtraVerticalGrid.Events.CellValueChangedEventHandler(PropertyGridControl_CellValueChanged);
            }
            RegisterHelp();
        }
Exemplo n.º 21
0
        private void getAllFichierContrat()
        {
            gridControl5.DataSource = null;
            gridView5.Columns.Clear();
            gridControl5.DataSource = fun.get_retour3();
            RepositoryItemPictureEdit pictureEdit = gridControl5.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

            pictureEdit.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Squeeze;

            gridView5.Columns["extension"].ColumnEdit = pictureEdit;
            this.gridView5.Columns[0].Visible         = false;
            this.gridView5.Columns[1].Caption         = "Description";
            this.gridView5.Columns[2].Caption         = "Fournisseur";
            this.gridView5.Columns[3].Caption         = "Date de retour";
            this.gridView5.Columns[4].Caption         = "Commentaire";
            this.gridView5.Columns[6].Caption         = "Type de fichier";
            this.gridView5.Columns[7].Visible         = false;

            gridView5.Columns[4].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            gridView5.Columns[6].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
        }
Exemplo n.º 22
0
        /// <summary>
        /// Tạo cột xóa
        /// </summary>
        /// <param name="gv"></param>
        /// <returns></returns>
        public static GridColumn CreateColumnDelete(this GridView gv, RepositoryItemPictureEdit ripDelete, bool isAddToGridView = true)
        {
            // Khởi tạo một cột
            var gc = gv.CreateNewGridColumn("Xóa", isAddToGridView);

            // Độ rộng
            gc.Width = 40;

            // Field Name
            gc.FieldName = "Delete";

            // Unbound
            gc.UnboundType = UnboundColumnType.String;

            gc.Fixed = FixedStyle.Right;

            // RepositoryItemPictureEdit
            gc.ColumnEdit = ripDelete;

            //
            return(gc);
        }
Exemplo n.º 23
0
        private void GridView_CustomDrawCell(object sender, RowCellCustomDrawEventArgs e)
        {
            if (e.Column.FieldName == "IconSetField")
            {
                var vi = (e.Cell as GridCellInfo).ViewInfo as ImageComboBoxEditViewInfo;
                if (vi == null)
                {
                    return;
                }

                GridColumn gc = IconSetGridColumn;

                RepositoryItemImageComboBox riicb = ColorSetImageComboBoxRepositoryItem;
                int    ii     = vi.ImageIndex;
                object images = vi.Images;
                System.Drawing.Size imageSize = vi.ImageSize;
                return;
            }

            else if (e.Column.FieldName == "PictureEditField")
            {
                var vi2 = (e.Cell as GridCellInfo).ViewInfo as PictureEditViewInfo;
                if (vi2 == null)
                {
                    return;
                }

                GridColumn gc = PictureEditColumn;

                RepositoryItemPictureEdit ripe = BitmapsPictureEditRepositoryItem;

                if (vi2.Image == null)
                {
                    vi2.Image = Bitmaps.I.IconSetImages.Images[0];
                }
                return;
            }
        }
Exemplo n.º 24
0
 public NotificationView(IImageListRetriever imageListRetriever, IToolTipCreator toolTipCreator, IStartOptions runOptions)
 {
     _toolTipCreator = toolTipCreator;
     _runOptions     = runOptions;
     InitializeComponent();
     _barManager.Images = imageListRetriever.AllImages16x16;
     _popupBarManager   = new BarManager {
         Form = this, Images = imageListRetriever.AllImages16x16
     };
     _buttonCache    = new Cache <NotificationType, BarButtonItem>();
     _gridViewBinder = new GridViewBinder <NotificationMessageDTO>(gridViewMessages);
     gridViewMessages.CustomRowFilter += customRowFilter;
     _statusIconRepository             = new RepositoryItemPictureEdit();
     _toolTipController = new ToolTipController {
         ImageList = imageListRetriever.AllImages16x16
     };
     _toolTipController.AutoPopDelay                = AppConstants.NotificationToolTipDelay;
     _toolTipController.GetActiveObjectInfo        += onToolTipControllerGetActiveObjectInfo;
     gridMessages.ToolTipController                 = _toolTipController;
     gridViewMessages.MouseDown                    += (o, e) => this.DoWithinExceptionHandler(() => onGridViewMouseDown(e));
     gridViewMessages.DoubleClick                  += (o, e) => this.DoWithinExceptionHandler(onDoubleClick);
     gridViewMessages.ShouldUseColorForDisabledCell = false;
 }
Exemplo n.º 25
0
        public static void SetupGrid(GridView grd)
        {
            //KF There are lots of places that the grid setup could go
            //I've seen it in configuration files, in the editor, in code on the form, in code in classes ....
            //I prefer doing it this way as I think it is the most maintainable way and is the easiest to find

            grd.OptionsBehavior.Editable = false;

            grd.Columns.Clear();

            grd.Columns.Add(GF.CreateGridColumn("colReferenceNumber", "ReferenceNumber", true, 10));
            grd.Columns.Add(GF.CreateGridColumn("colOrderValue", "OrderValue", true, 10, "", FormatType.Numeric, "LocalMoney"));
            grd.Columns.Add(GF.CreateGridColumn("colOrderDate", "OrderDate", true, 10, "", FormatType.DateTime, "dd-MMM-yyyy"));
            grd.Columns.Add(GF.CreateGridColumn("colCustomerName", "CustomerName", true, 10));

            RepositoryItemPictureEdit pictureEdit = new RepositoryItemPictureEdit();
            GridColumn col = GF.CreatePictureEditColumn(pictureEdit, "colOpenCustomer", "SearchPicture", true, 10, "Edit Customer");

            grd.GridControl.RepositoryItems.Add(pictureEdit);
            grd.Columns.Add(col);

            grd.Columns.Add(GF.CreateGridColumn("colCustomerId", "CustomerId", false, 0));
        }
Exemplo n.º 26
0
        private void InitContr()
        {
            if (dsLoad != null)
            {
                return;
            }

            dsLoad = this.GetFrmLoadDs(drBtn["FrmClassName"].ToString());
            dsLoad.AcceptChanges();
            dtShow  = dsLoad.Tables[0];
            dtConst = dsLoad.Tables[1];
            if (drBtn["FrmShowIcon"].ToString() == "True")
            {
                GridColumn gridCol             = new GridColumn();
                RepositoryItemImageEdit repImg = new RepositoryItemImageEdit();
                repImg.AutoHeight = false;
                repImg.Buttons.Clear();
                repImg.Name             = "gridVInfo_repImg";
                repImg.PopupFormMinSize = new System.Drawing.Size(450, 350);
                repImg.ReadOnly         = true;
                repImg.Popup           += new System.EventHandler(this.repImg_Popup);

                gridCol.Caption    = "图片";
                gridCol.ColumnEdit = repImg;
                gridCol.FieldName  = "Icon";
                gridCol.Name       = "gridVInfo_GCol";
                gridCol.OptionsColumn.AllowMove  = false;
                gridCol.OptionsColumn.ReadOnly   = true;
                gridCol.OptionsColumn.FixedWidth = true;
                gridCol.Visible      = true;
                gridCol.VisibleIndex = 0;
                gridCol.Width        = 50;

                this.gridCInfo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                    repImg
                });
                gridVInfo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { gridCol });
            }
            else if (drBtn["FrmShowPicEdit"].ToString() == "True")
            {
                GridColumn gridCol = new GridColumn();
                RepositoryItemPictureEdit repPic = new RepositoryItemPictureEdit();
                repPic.Name        = "gridVInfo_repPic";
                repPic.ReadOnly    = true;
                repPic.ShowMenu    = false;
                repPic.SizeMode    = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
                repPic.MouseLeave += new System.EventHandler(this.repPic_MouseLeave);
                repPic.MouseHover += new EventHandler(repPic_MouseHover);

                gridCol.Caption    = "图片";
                gridCol.ColumnEdit = repPic;
                gridCol.FieldName  = "Icon";
                gridCol.Name       = "gridVInfo_GCol";
                gridCol.OptionsColumn.AllowMove  = false;
                gridCol.OptionsColumn.ReadOnly   = true;
                gridCol.OptionsColumn.FixedWidth = true;
                gridCol.Visible      = true;
                gridCol.VisibleIndex = 0;
                gridCol.Width        = int.Parse(drBtn["FrmPicGvWidth"].ToString());

                this.gridCInfo.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
                    repPic
                });
                gridVInfo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { gridCol });

                this.gridVInfo.RowHeight = int.Parse(drBtn["FrmPicGvRowHeight"].ToString());
                this.gridVInfo.OptionsView.ShowAutoFilterRow = false;
                this.picEdit.Location = new System.Drawing.Point(int.Parse(drBtn["FrmPicX"].ToString()), int.Parse(drBtn["FrmPicY"].ToString()));
            }
            Rectangle rect = SystemInformation.VirtualScreen;

            StaticFunctions.ShowGridControl(gridVInfo, dtShow, dtConst, out strFileds);
            IsAddChildGv = this.drBtn["IsAddChildGv"].ToString() == "True";
            if (IsAddChildGv)
            {
                gvChild = StaticFunctions.ShowGridVChildGv("gridVCom", gridCInfo, dtShow, dtConst, out strFiledsInfo);
            }
        }
Exemplo n.º 27
0
 private void InitializeComponent()
 {
     this.gpgAdhocGrid = new GPGChatGrid();
     this.gvAdhoc = new GridView();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.gpgAdhocGrid.BeginInit();
     this.gvAdhoc.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.rimMemoEdit3.BeginInit();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     this.gpgAdhocGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgAdhocGrid.CustomizeStyle = false;
     this.gpgAdhocGrid.EmbeddedNavigator.Name = "";
     this.gpgAdhocGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgAdhocGrid.IgnoreMouseWheel = false;
     this.gpgAdhocGrid.Location = new Point(12, 0x67);
     this.gpgAdhocGrid.LookAndFeel.SkinName = "Money Twins";
     this.gpgAdhocGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgAdhocGrid.MainView = this.gvAdhoc;
     this.gpgAdhocGrid.Name = "gpgAdhocGrid";
     this.gpgAdhocGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgAdhocGrid.ShowOnlyPredefinedDetails = true;
     this.gpgAdhocGrid.Size = new Size(0x268, 0x13b);
     this.gpgAdhocGrid.TabIndex = 12;
     this.gpgAdhocGrid.ViewCollection.AddRange(new BaseView[] { this.gvAdhoc });
     this.gvAdhoc.ActiveFilterString = "";
     this.gvAdhoc.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvAdhoc.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.Empty.BackColor = Color.Black;
     this.gvAdhoc.Appearance.Empty.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvAdhoc.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvAdhoc.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvAdhoc.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseFont = true;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvAdhoc.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.FocusedRow.Font = new Font("Arial", 9.75f);
     this.gvAdhoc.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupButton.BackColor = Color.Black;
     this.gvAdhoc.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.GroupButton.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvAdhoc.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvAdhoc.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.GroupPanel.BackColor2 = Color.Black;
     this.gvAdhoc.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvAdhoc.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvAdhoc.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.GroupRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gvAdhoc.Appearance.HeaderPanel.ForeColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvAdhoc.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HorzLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Preview.BackColor = Color.White;
     this.gvAdhoc.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.Preview.ForeColor = Color.Purple;
     this.gvAdhoc.Appearance.Preview.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Preview.Options.UseFont = true;
     this.gvAdhoc.Appearance.Preview.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.Row.BackColor = Color.Black;
     this.gvAdhoc.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0xb2);
     this.gvAdhoc.Appearance.Row.ForeColor = Color.White;
     this.gvAdhoc.Appearance.Row.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Row.Options.UseFont = true;
     this.gvAdhoc.Appearance.Row.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.RowSeparator.BackColor = Color.White;
     this.gvAdhoc.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvAdhoc.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvAdhoc.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvAdhoc.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.TopNewRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.VertLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAdhoc.BorderStyle = BorderStyles.NoBorder;
     this.gvAdhoc.GridControl = this.gpgAdhocGrid;
     this.gvAdhoc.Name = "gvAdhoc";
     this.gvAdhoc.OptionsDetail.AllowZoomDetail = false;
     this.gvAdhoc.OptionsDetail.EnableMasterViewMode = false;
     this.gvAdhoc.OptionsDetail.ShowDetailTabs = false;
     this.gvAdhoc.OptionsDetail.SmartDetailExpand = false;
     this.gvAdhoc.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAdhoc.OptionsSelection.MultiSelect = true;
     this.gvAdhoc.OptionsView.RowAutoHeight = true;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(640, 480);
     base.Controls.Add(this.gpgAdhocGrid);
     base.Location = new Point(0, 0);
     base.Name = "DlgServerForm";
     this.Text = "DlgServerForm";
     base.Controls.SetChildIndex(this.gpgAdhocGrid, 0);
     this.gpgAdhocGrid.EndInit();
     this.gvAdhoc.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.rimMemoEdit3.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 28
0
        public void Load_QC(string sDate)
        {
            sSelectedDate  = sDate;
            iSamplePercent = ((frmMain)ParantForm).txtQCSamplePecent.Value;
            if (GV.sAccessTo == "TR")
            {
                sDateColumn = "TR_DATECALLED";
            }
            else
            {
                sDateColumn = "WR_DATE_OF_PROCESS";
            }



            if (((frmMain)ParantForm).switchQCProcessTable.Value)
            {
                sProcessTable = "Company";
            }
            else
            {
                sProcessTable = "Contact";
            }



            if (((frmMain)ParantForm).switchQCProcessType.Value)
            {
                sProcessType = "Reprocessed";
            }
            else
            {
                sProcessType = "Fresh";
            }

            lblProcessDate.Text   = "       Process Date :" + sDate;
            lblProcessTable.Text  = "       Process Table :" + sProcessTable;
            lblSamplePercent.Text = "       Sample Percent :" + iSamplePercent;
            lblProcessType.Text   = "       Process Type :" + sProcessType;


            splitQC.Panel2Collapsed = true;
            if (GV.sUserType == "QC" || GV.sUserType == "Admin")
            {
                gControl.DataSource = null;
                string sQuery = string.Empty;
                string sValidContactStatus = string.Empty;

                if (GV.sAccessTo == "TR")
                {
                    sValidContactStatus = GV.sTRContactstatusTobeValidated;
                }
                else
                {
                    sValidContactStatus = GV.sWRContactstatusTobeValidated;
                }

                string sProcessed = string.Empty;
                if (sProcessType == "Reprocessed")
                {
                    sProcessed = " WHERE (SendBack > 0 OR Reprocessed >0) ";
                }

                if (sProcessTable == "Contact")
                {
                    //sQuery = "SELECT T.AgentName,Processed, ROUND(((Pass + Fail)/Processed)*100,2,1) Sampled,ROUND((Pass/Processed)*100,2,1) Pass,ROUND((Fail/Processed)*100,2,1) Fail, SendBack,Reprocessed FROM (";
                    //sQuery += " SELECT " + GV.sAccessTo + "_AGENT_NAME AgentName,COUNT(*) Processed,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.CONTACT_ID_P AND TABLENAME='Contact' AND QC.ResearchType='" + GV.sAccessTo + "' AND QC.QC_Sample_Status = 1)) Pass,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.CONTACT_ID_P AND TABLENAME='Contact' AND QC.ResearchType='" + GV.sAccessTo + "'  AND QC.QC_Sample_Status = 0)) Fail,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.CONTACT_ID_P AND TABLENAME='Contact' AND QC.ResearchType='" + GV.sAccessTo + "' AND QC.QC_STATUS='SendBack')) SendBack,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.CONTACT_ID_P AND TABLENAME='Contact' AND QC.ResearchType='" + GV.sAccessTo + "'  AND QC.QC_STATUS='Reprocessed')) Reprocessed";
                    //sQuery += " FROM " + GV.sContactTable + "  CM WHERE cm." + GV.sAccessTo + "_CONTACT_STATUS IN (" + sValidContactStatus + ")";
                    //sQuery += " AND CAST(CM." + GV.sAccessTo + "_UPDATED_DATE AS DATE) = '" + sDate + "' GROUP BY " + GV.sAccessTo + "_AGENT_NAME)T " + sProcessed + " Order by T.Processed Desc;";

                    sQuery  = "select T.AgentName,Processed, ROUND(((Pass + Fail) / Processed) * 100, 2, 1) Sampled,ROUND((Pass / Processed) * 100, 2, 1) Pass,ROUND((Fail / Processed) * 100, 2, 1) Fail, SendBack, Reprocessed from (";
                    sQuery += " select cm." + GV.sAccessTo + "_AGENT_NAME agentname, COUNT(*) Processed,";
                    sQuery += " count(case when  QC.QC_Sample_Status = 1 then cm.CONTACT_ID_P end) Pass,";
                    sQuery += " count(case when  QC.QC_Sample_Status = 0 then cm.CONTACT_ID_P end) Fail,";
                    sQuery += " count(case when  QC.QC_STATUS = 'SENDBACK' then cm.CONTACT_ID_P end) SendBack,";
                    sQuery += " count(case when  QC.QC_STATUS = 'Reprocessed' then cm.CONTACT_ID_P end) Reprocessed";
                    sQuery += " from " + GV.sContactTable + " CM left join (select * from " + GV.sQCTable + " where TableName = 'Contact'  AND ResearchType = '" + GV.sAccessTo + "') QC";
                    sQuery += " on QC.RecordID = CM.CONTACT_ID_P WHERE cm." + GV.sAccessTo + "_CONTACT_STATUS IN (" + sValidContactStatus + ")";
                    sQuery += " AND CAST(CM." + GV.sAccessTo + "_UPDATED_DATE AS DATE) = '" + sDate + "' GROUP BY cm." + GV.sAccessTo + "_AGENT_NAME )t Order by T.Processed Desc;";
                }
                else
                {
                    //sQuery = "SELECT T.AgentName,Processed, ROUND(((Pass + Fail)/Processed)*100,2,1) Sampled,ROUND((Pass/Processed)*100,2,1) Pass,ROUND((Fail/Processed)*100,2,1) Fail, SendBack,Reprocessed FROM (";
                    //sQuery += " SELECT " + GV.sAccessTo + "_AGENTNAME AgentName,COUNT(*) Processed,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.MASTER_ID AND TABLENAME='Company' AND QC.ResearchType='" + GV.sAccessTo + "' AND QC.QC_Sample_Status = 1)) Pass,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.MASTER_ID AND TABLENAME='Company' AND QC.ResearchType='" + GV.sAccessTo + "'  AND QC.QC_Sample_Status = 0)) Fail,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.MASTER_ID AND TABLENAME='Company' AND QC.ResearchType='" + GV.sAccessTo + "' AND QC.QC_STATUS='SendBack')) SendBack,";
                    //sQuery += " COUNT((SELECT 1 FROM " + GV.sQCTable + " QC WHERE QC.RecordID=CM.MASTER_ID AND TABLENAME='Company' AND QC.ResearchType='" + GV.sAccessTo + "'  AND QC.QC_STATUS='Reprocessed')) Reprocessed";
                    //sQuery += " FROM " + GV.sCompanyTable + "  CM WHERE ";
                    //sQuery += " CAST(CM." + sDateColumn + " AS DATE) = '" + sDate + "' GROUP BY " + GV.sAccessTo + "_AGENTNAME)T " + sProcessed + " Order by T.Processed Desc;";



                    sQuery  = "select T.AgentName,Processed, ROUND(((Pass + Fail) / Processed) * 100, 2, 1) Sampled,ROUND((Pass / Processed) * 100, 2, 1) Pass,ROUND((Fail / Processed) * 100, 2, 1) Fail, SendBack, Reprocessed from (";
                    sQuery += " select cm." + GV.sAccessTo + "_AGENT_NAME agentname, COUNT(*) Processed,";
                    sQuery += " count(case when  QC.QC_Sample_Status = 1 then cm.CONTACT_ID_P end) Pass,";
                    sQuery += " count(case when  QC.QC_Sample_Status = 0 then cm.CONTACT_ID_P end) Fail,";
                    sQuery += " count(case when  QC.QC_STATUS = 'SENDBACK' then cm.CONTACT_ID_P end) SendBack,";
                    sQuery += " count(case when  QC.QC_STATUS = 'Reprocessed' then cm.CONTACT_ID_P end) Reprocessed";
                    sQuery += " from " + GV.sContactTable + " CM left join (select * from " + GV.sQCTable + " where TableName = 'Contact'  AND ResearchType = '" + GV.sAccessTo + "') QC";
                    sQuery += " on QC.RecordID = CM.CONTACT_ID_P WHERE ";
                    sQuery += " CAST(CM." + sDateColumn + " AS DATE) = '" + sDate + "' GROUP BY cm." + GV.sAccessTo + "_AGENT_NAME )t Order by T.Processed Desc;";
                }



                dtQCTable = GV.MSSQL1.BAL_ExecuteQuery(sQuery);
                if (dtQCTable.Rows.Count > 0)
                {
                    DataColumn dcEmpImage = new DataColumn("EmpImage", typeof(System.Byte[]));
                    dtQCTable.Columns.Add("Random");
                    dtQCTable.Columns.Add("GetSample");
                    dtQCTable.Columns.Add("QCProcessed");
                    dtQCTable.Columns.Add(dcEmpImage);

                    sQuery = "SELECT UserName , EmployeeImage FROM RM..EmployeeImage A INNER JOIN CH1020BD02.Timesheet.dbo.Users B ON A.EmployeeID = B.EmployeeNo WHERE B.Active = 'Y' AND B.UserName IN (" + GM.ColumnToQString("AgentName", dtQCTable, "String") + ");";
                    DataTable dtEmpImage = GV.MSSQL1.BAL_ExecuteQuery(sQuery);

                    Byte[] bDummyImg = GM.imgToByte(Properties.Resources.Misc_User_icon__1_);

                    foreach (DataRow drImage in dtEmpImage.Rows)
                    {
                        string sEmpName = drImage["UserName"].ToString().ToUpper();
                        foreach (DataRow drQCTable in dtQCTable.Rows)
                        {
                            if (drQCTable["AgentName"].ToString().ToUpper() == sEmpName)
                            {
                                drQCTable["EmpImage"] = drImage["EmployeeImage"];
                                break;
                            }
                            if (drQCTable["EmpImage"] == DBNull.Value)
                            {
                                drQCTable["EmpImage"] = bDummyImg;
                            }
                        }
                    }

                    //System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQC));
                    lView = new LayoutView(gControl);


                    gControl.LookAndFeel.SkinName = "Office 2010 Blue";
                    gControl.LookAndFeel.UseDefaultLookAndFeel = false;


                    lView.OptionsSelection.MultiSelect = false;

                    gControl.MainView = lView;

                    DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit btnItemRandom = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
                    btnItemRandom.Name = "btnRandom";
                    btnItemRandom.Buttons[0].Caption = "Random";
                    btnItemRandom.Buttons[0].IsLeft  = false;
                    btnItemRandom.Buttons[0].Width   = 30;
                    btnItemRandom.Buttons[0].Kind    = ButtonPredefines.Glyph;
                    btnItemRandom.Buttons[0].Image   = Properties.Resources.new_icon;
                    btnItemRandom.TextEditStyle      = TextEditStyles.HideTextEditor;
                    // btnItemRandom.AutoHeight = true;
                    btnItemRandom.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Default;
                    btnItemRandom.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnRandom_ButtonClick);

                    DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit btnItemGetSample = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
                    btnItemGetSample.Name = "btnGetSample";
                    btnItemGetSample.Buttons[0].Caption = "Sampled";
                    btnItemGetSample.Buttons[0].IsLeft  = false;
                    btnItemGetSample.Buttons[0].Width   = 30;
                    btnItemGetSample.Buttons[0].Kind    = ButtonPredefines.Glyph;
                    btnItemGetSample.Buttons[0].Image   = Properties.Resources.contacts_3_icon;
                    btnItemGetSample.TextEditStyle      = TextEditStyles.HideTextEditor;
                    //btnItemGetSample.AutoHeight = true;
                    btnItemGetSample.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Default;
                    btnItemGetSample.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnGetSample_ButtonClick);

                    DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit btnItemQCProcessed = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
                    btnItemQCProcessed.Name = "btnQCProcessed";
                    btnItemQCProcessed.Buttons[0].Caption = "QC Processed";
                    btnItemQCProcessed.Buttons[0].IsLeft  = false;
                    btnItemQCProcessed.Buttons[0].Width   = 30;
                    btnItemQCProcessed.Buttons[0].Kind    = ButtonPredefines.Glyph;
                    btnItemQCProcessed.Buttons[0].Image   = Properties.Resources.folder_icon__1_;
                    btnItemQCProcessed.TextEditStyle      = TextEditStyles.HideTextEditor;
                    //btnItemQCProcessed.AutoHeight = true;
                    btnItemQCProcessed.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Default;
                    btnItemQCProcessed.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.btnShowProcessed_ButtonClick);


                    lView.OptionsBehavior.AutoPopulateColumns = false;
                    splitQC.Panel1.Controls.Add(gControl);
                    splitQC.Panel1.Controls.Add(panelQCInfo);
                    gControl.Dock    = DockStyle.Fill;
                    panelQCInfo.Dock = DockStyle.Top;



                    LayoutViewColumn colAgentName    = lView.Columns.AddField("AgentName");
                    LayoutViewColumn colProcessCount = lView.Columns.AddField("Processed");
                    LayoutViewColumn colSampled      = lView.Columns.AddField("Sampled");
                    LayoutViewColumn colPass;
                    LayoutViewColumn colFail;

                    if (sProcessType == "Fresh")
                    {
                        colPass = lView.Columns.AddField("Pass");
                        colFail = lView.Columns.AddField("Fail");
                    }
                    else
                    {
                        colPass = lView.Columns.AddField("SendBack");
                        colFail = lView.Columns.AddField("Reprocessed");
                    }

                    LayoutViewColumn colbtnRandom      = lView.Columns.AddField("Random");
                    LayoutViewColumn colbtnGetSample   = lView.Columns.AddField("GetSample");
                    LayoutViewColumn colbtnQCProcessed = lView.Columns.AddField("QCProcessed");
                    LayoutViewColumn colPhoto          = lView.Columns.AddField("EmpImage");


                    //colbtnRandom.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowAlways;

                    LayoutViewField fieldAgentName      = colAgentName.LayoutViewField;
                    LayoutViewField fieldProcessCount   = colProcessCount.LayoutViewField;
                    LayoutViewField fieldSampled        = colSampled.LayoutViewField;
                    LayoutViewField fieldPass           = colPass.LayoutViewField;
                    LayoutViewField fieldFail           = colFail.LayoutViewField;
                    LayoutViewField fieldbtnRandom      = colbtnRandom.LayoutViewField;
                    LayoutViewField fieldbtnGetSample   = colbtnGetSample.LayoutViewField;
                    LayoutViewField fieldbtnQCProcessed = colbtnQCProcessed.LayoutViewField;
                    LayoutViewField fieldEmpPhoto       = colPhoto.LayoutViewField;
                    fieldEmpPhoto.SizeConstraintsType = SizeConstraintsType.Custom;
                    //fieldEmpPhoto.MaxSize = new System.Drawing.Size(20, 20);
                    fieldEmpPhoto.MinSize  = new System.Drawing.Size(100, 100);
                    fieldEmpPhoto.TextSize = new System.Drawing.Size(0, 0);
                    fieldEmpPhoto.TextToControlDistance = 0;
                    fieldEmpPhoto.TextVisible           = false;

                    fieldAgentName.MinSize  = new System.Drawing.Size(100, 100);
                    fieldAgentName.TextSize = new System.Drawing.Size(0, 0);
                    fieldAgentName.TextToControlDistance = 0;
                    fieldAgentName.TextVisible           = false;

                    colAgentName.AppearanceCell.Font = new System.Drawing.Font(colAgentName.AppearanceCell.Font.FontFamily, 12, FontStyle.Bold);

                    colPhoto.Visible = true;

                    //RepositoryItemPictureEdit riPictureEdit = grid.RepositoryItems.Add("PictureEdit") as RepositoryItemPictureEdit;

                    RepositoryItemPictureEdit riPictureEdit = new RepositoryItemPictureEdit();
                    riPictureEdit.SizeMode = PictureSizeMode.Zoom;

                    colPhoto.ColumnEdit = riPictureEdit;

                    lView.OptionsView.ShowHeaderPanel = false;
                    lView.OptionsView.ViewMode        = LayoutViewMode.MultiColumn;

                    colAgentName.OptionsColumn.AllowFocus    = false;
                    colProcessCount.OptionsColumn.AllowFocus = false;
                    colSampled.OptionsColumn.AllowFocus      = false;
                    colPass.OptionsColumn.AllowFocus         = false;
                    colFail.OptionsColumn.AllowFocus         = false;
                    colPhoto.OptionsColumn.AllowFocus        = false;

                    colAgentName.OptionsColumn.AllowEdit    = false;
                    colProcessCount.OptionsColumn.AllowEdit = false;
                    colSampled.OptionsColumn.AllowEdit      = false;
                    colPass.OptionsColumn.AllowEdit         = false;
                    colFail.OptionsColumn.AllowEdit         = false;
                    colPhoto.OptionsColumn.AllowEdit        = false;

                    colAgentName.OptionsFilter.AllowFilter      = false;
                    colProcessCount.OptionsFilter.AllowFilter   = false;
                    colSampled.OptionsFilter.AllowFilter        = false;
                    colPass.OptionsFilter.AllowFilter           = false;
                    colFail.OptionsFilter.AllowFilter           = false;
                    colbtnRandom.OptionsFilter.AllowFilter      = false;
                    colbtnGetSample.OptionsFilter.AllowFilter   = false;
                    colbtnQCProcessed.OptionsFilter.AllowFilter = false;
                    colPhoto.OptionsFilter.AllowFilter          = false;

                    colAgentName.OptionsColumn.AllowSort      = DevExpress.Utils.DefaultBoolean.False;
                    colProcessCount.OptionsColumn.AllowSort   = DevExpress.Utils.DefaultBoolean.False;
                    colSampled.OptionsColumn.AllowSort        = DevExpress.Utils.DefaultBoolean.False;
                    colPass.OptionsColumn.AllowSort           = DevExpress.Utils.DefaultBoolean.False;
                    colFail.OptionsColumn.AllowSort           = DevExpress.Utils.DefaultBoolean.False;
                    colbtnRandom.OptionsColumn.AllowSort      = DevExpress.Utils.DefaultBoolean.False;
                    colbtnGetSample.OptionsColumn.AllowSort   = DevExpress.Utils.DefaultBoolean.False;
                    colbtnQCProcessed.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
                    colPhoto.OptionsColumn.AllowSort          = DevExpress.Utils.DefaultBoolean.False;

                    colAgentName.OptionsColumn.ReadOnly      = true;
                    colProcessCount.OptionsColumn.ReadOnly   = true;
                    colSampled.OptionsColumn.ReadOnly        = true;
                    colPass.OptionsColumn.ReadOnly           = true;
                    colFail.OptionsColumn.ReadOnly           = true;
                    colbtnRandom.OptionsColumn.ReadOnly      = true;
                    colbtnGetSample.OptionsColumn.ReadOnly   = true;
                    colbtnQCProcessed.OptionsColumn.ReadOnly = true;
                    colPhoto.OptionsColumn.ReadOnly          = true;

                    colbtnRandom.ColumnEdit      = btnItemRandom;
                    colbtnGetSample.ColumnEdit   = btnItemGetSample;
                    colbtnQCProcessed.ColumnEdit = btnItemQCProcessed;

                    DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();

                    styleFormatCondition1.Appearance.BackColor            = Color.RosyBrown;
                    styleFormatCondition1.Appearance.Options.UseBackColor = true;
                    styleFormatCondition1.ApplyToRow = false;
                    styleFormatCondition1.Column     = colProcessCount;
                    styleFormatCondition1.Condition  = DevExpress.XtraGrid.FormatConditionEnum.Expression;
                    styleFormatCondition1.Expression = "[Processed] > 20";
                    lView.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] { styleFormatCondition1 });


                    fieldAgentName.Move(new LayoutItemDragController(fieldAgentName, fieldEmpPhoto, InsertLocation.After, LayoutType.Horizontal));

                    LayoutControlGroup groupAgentInfo = lView.TemplateCard.AddGroup("Agent Info", fieldAgentName, InsertType.Bottom);
                    //groupAddress.Add(colPhoto.LayoutViewField);
                    //groupAddress.Add(colAgentName.LayoutViewField);
                    groupAgentInfo.Add(colProcessCount.LayoutViewField);
                    groupAgentInfo.Add(colSampled.LayoutViewField);
                    groupAgentInfo.Add(colPass.LayoutViewField);
                    groupAgentInfo.Add(colFail.LayoutViewField);
                    groupAgentInfo.Add(colbtnRandom.LayoutViewField);
                    groupAgentInfo.Add(colbtnGetSample.LayoutViewField);
                    groupAgentInfo.Add(colbtnQCProcessed.LayoutViewField);


                    //LayoutControlGroup groupRecords = lView.TemplateCard.AddGroup("Record", groupAgentInfo, InsertType.Bottom);
                    //groupRecords.Add(colbtnRandom.LayoutViewField);
                    //groupRecords.Add(colbtnGetSample.LayoutViewField);
                    //groupRecords.Add(colbtnQCProcessed.LayoutViewField);

                    colAgentName.Caption    = "Agent Name";
                    colProcessCount.Caption = "Total Processed";
                    colSampled.Caption      = "Sampled %";
                    if (sProcessType == "Fresh")
                    {
                        colPass.Caption = "Pass %";
                        colFail.Caption = "Fail %";
                    }
                    else
                    {
                        colPass.Caption = "Send Back";
                        colFail.Caption = "Reprocessed";
                    }
                    colbtnRandom.Caption      = "Get a Random Record";
                    colbtnGetSample.Caption   = "Get " + iSamplePercent + "% sample";
                    colbtnQCProcessed.Caption = "Show Sampled Records";


                    //lView.Items[9].TextVisible = false;
                    lView.CardMinSize = new Size(60, 250);

                    gControl.DataSource = dtQCTable;
                }
                else
                {
                    gControl.DataSource = null;
                }

                dgvQCList.BackgroundColor = GV.pnlGlobalColor.Style.BackColor2.Color;
            }
        }
Exemplo n.º 29
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(DlgSupcomMapOptions));
     this.gpgMapSelectGrid = new GPGChatGrid();
     this.cardView1 = new CardView();
     this.colMapTitle = new GridColumn();
     this.colStatus = new GridColumn();
     this.riPriority = new RepositoryItemImageComboBox();
     this.ilThumbs = new ImageList(this.components);
     this.colMap = new GridColumn();
     this.riMap = new RepositoryItemPictureEdit();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.riPopup = new RepositoryItemPopupContainerEdit();
     this.repositoryItemTimeEdit1 = new RepositoryItemTimeEdit();
     this.repositoryItemTextEdit1 = new RepositoryItemTextEdit();
     this.riPictureStatus = new RepositoryItemPictureEdit();
     this.riButtonStatus = new RepositoryItemButtonEdit();
     this.riTextPriority = new RepositoryItemTextEdit();
     this.colTime = new GridColumn();
     this.colType = new GridColumn();
     this.colDescription = new GridColumn();
     this.colData = new GridColumn();
     this.rbAeon = new RadioButton();
     this.rbCybran = new RadioButton();
     this.rbUEF = new RadioButton();
     this.rbRandom = new RadioButton();
     this.lMapPrefs = new GPGLabel();
     this.gpgLabel1 = new GPGLabel();
     this.skinButtonCancel = new SkinButton();
     this.skinButtonSearch = new SkinButton();
     this.rbSeraphim = new RadioButton();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgMapSelectGrid.BeginInit();
     this.cardView1.BeginInit();
     this.riPriority.BeginInit();
     this.riMap.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.riPopup.BeginInit();
     this.repositoryItemTimeEdit1.BeginInit();
     this.repositoryItemTextEdit1.BeginInit();
     this.riPictureStatus.BeginInit();
     this.riButtonStatus.BeginInit();
     this.riTextPriority.BeginInit();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x3c5, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgMapSelectGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgMapSelectGrid.CustomizeStyle = false;
     this.gpgMapSelectGrid.EmbeddedNavigator.Name = "";
     this.gpgMapSelectGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgMapSelectGrid.IgnoreMouseWheel = false;
     this.gpgMapSelectGrid.Location = new Point(12, 0x55);
     this.gpgMapSelectGrid.LookAndFeel.SkinName = "Money Twins";
     this.gpgMapSelectGrid.LookAndFeel.Style = LookAndFeelStyle.Office2003;
     this.gpgMapSelectGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgMapSelectGrid.MainView = this.cardView1;
     this.gpgMapSelectGrid.Name = "gpgMapSelectGrid";
     this.gpgMapSelectGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3, this.riPopup, this.repositoryItemTimeEdit1, this.riPriority, this.riMap, this.repositoryItemTextEdit1, this.riPictureStatus, this.riButtonStatus, this.riTextPriority });
     this.gpgMapSelectGrid.ShowOnlyPredefinedDetails = true;
     this.gpgMapSelectGrid.Size = new Size(0x3e8, 0x12b);
     this.gpgMapSelectGrid.TabIndex = 0x1d;
     this.gpgMapSelectGrid.ViewCollection.AddRange(new BaseView[] { this.cardView1 });
     this.cardView1.Appearance.Card.BackColor = Color.Black;
     this.cardView1.Appearance.Card.ForeColor = Color.White;
     this.cardView1.Appearance.Card.Options.UseBackColor = true;
     this.cardView1.Appearance.Card.Options.UseForeColor = true;
     this.cardView1.Appearance.EmptySpace.BackColor = Color.Black;
     this.cardView1.Appearance.EmptySpace.Options.UseBackColor = true;
     this.cardView1.Appearance.FieldCaption.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cardView1.Appearance.FieldCaption.ForeColor = Color.FromArgb(0x8f, 0xbd, 0xd1);
     this.cardView1.Appearance.FieldCaption.Options.UseFont = true;
     this.cardView1.Appearance.FieldCaption.Options.UseForeColor = true;
     this.cardView1.Appearance.FieldValue.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.cardView1.Appearance.FieldValue.ForeColor = Color.White;
     this.cardView1.Appearance.FieldValue.Options.UseFont = true;
     this.cardView1.Appearance.FieldValue.Options.UseForeColor = true;
     this.cardView1.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.cardView1.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.cardView1.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.cardView1.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.cardView1.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.cardView1.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.cardView1.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.cardView1.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.cardView1.Appearance.FilterPanel.BackColor = Color.Black;
     this.cardView1.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.cardView1.Appearance.FilterPanel.ForeColor = Color.White;
     this.cardView1.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.cardView1.Appearance.FilterPanel.Options.UseBackColor = true;
     this.cardView1.Appearance.FilterPanel.Options.UseForeColor = true;
     this.cardView1.Appearance.SeparatorLine.BackColor = Color.Black;
     this.cardView1.Appearance.SeparatorLine.Options.UseBackColor = true;
     this.cardView1.BorderStyle = BorderStyles.NoBorder;
     this.cardView1.Columns.AddRange(new GridColumn[] { this.colMapTitle, this.colStatus, this.colMap });
     this.cardView1.DetailHeight = 400;
     this.cardView1.FocusedCardTopFieldIndex = 0;
     this.cardView1.GridControl = this.gpgMapSelectGrid;
     this.cardView1.Name = "cardView1";
     this.cardView1.OptionsBehavior.AllowExpandCollapse = false;
     this.cardView1.OptionsBehavior.AutoPopulateColumns = false;
     this.cardView1.OptionsBehavior.FieldAutoHeight = true;
     this.cardView1.OptionsBehavior.Sizeable = false;
     this.cardView1.OptionsSelection.MultiSelect = true;
     this.cardView1.OptionsView.ShowCardCaption = false;
     this.cardView1.OptionsView.ShowFieldCaptions = false;
     this.cardView1.OptionsView.ShowQuickCustomizeButton = false;
     this.cardView1.VertScrollVisibility = ScrollVisibility.Auto;
     this.cardView1.CustomDrawCardField += new RowCellCustomDrawEventHandler(this.cardView1_CustomDrawCardField);
     this.cardView1.Click += new EventHandler(this.cardView1_Click);
     this.colMapTitle.AppearanceCell.BackColor = Color.FromArgb(0x1b, 0x2e, 0x4a);
     this.colMapTitle.AppearanceCell.BackColor2 = Color.FromArgb(12, 0x17, 0x29);
     this.colMapTitle.AppearanceCell.Font = new Font("Arial", 10f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.colMapTitle.AppearanceCell.ForeColor = Color.FromArgb(0x8f, 0xbd, 0xd1);
     this.colMapTitle.AppearanceCell.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.colMapTitle.AppearanceCell.Options.UseBackColor = true;
     this.colMapTitle.AppearanceCell.Options.UseFont = true;
     this.colMapTitle.AppearanceCell.Options.UseForeColor = true;
     this.colMapTitle.AppearanceCell.Options.UseTextOptions = true;
     this.colMapTitle.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Center;
     this.colMapTitle.AppearanceCell.TextOptions.Trimming = Trimming.None;
     this.colMapTitle.AppearanceCell.TextOptions.VAlignment = VertAlignment.Top;
     this.colMapTitle.AppearanceHeader.Font = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.colMapTitle.AppearanceHeader.Options.UseFont = true;
     this.colMapTitle.Caption = "Map Name";
     this.colMapTitle.FieldName = "Description";
     this.colMapTitle.Name = "colMapTitle";
     this.colMapTitle.OptionsColumn.AllowEdit = false;
     this.colMapTitle.Visible = true;
     this.colMapTitle.VisibleIndex = 0;
     this.colStatus.AppearanceCell.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.colStatus.AppearanceCell.Options.UseFont = true;
     this.colStatus.AppearanceCell.Options.UseTextOptions = true;
     this.colStatus.AppearanceCell.TextOptions.Trimming = Trimming.None;
     this.colStatus.AppearanceCell.TextOptions.VAlignment = VertAlignment.Center;
     this.colStatus.Caption = "Priority";
     this.colStatus.ColumnEdit = this.riPriority;
     this.colStatus.FieldName = "Priority";
     this.colStatus.Name = "colStatus";
     this.colStatus.OptionsColumn.AllowEdit = false;
     this.colStatus.OptionsColumn.AllowFocus = false;
     this.colStatus.OptionsColumn.ReadOnly = true;
     this.colStatus.ShowButtonMode = ShowButtonModeEnum.ShowOnlyInEditor;
     this.colStatus.Visible = true;
     this.colStatus.VisibleIndex = 1;
     this.riPriority.AllowNullInput = DefaultBoolean.True;
     this.riPriority.Appearance.BackColor = Color.Black;
     this.riPriority.Appearance.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.riPriority.Appearance.ForeColor = Color.White;
     this.riPriority.Appearance.Options.UseBackColor = true;
     this.riPriority.Appearance.Options.UseFont = true;
     this.riPriority.Appearance.Options.UseForeColor = true;
     this.riPriority.AppearanceDropDown.BackColor = Color.Black;
     this.riPriority.AppearanceDropDown.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.riPriority.AppearanceDropDown.ForeColor = Color.White;
     this.riPriority.AppearanceDropDown.Options.UseBackColor = true;
     this.riPriority.AppearanceDropDown.Options.UseFont = true;
     this.riPriority.AppearanceDropDown.Options.UseForeColor = true;
     this.riPriority.AutoHeight = false;
     this.riPriority.DropDownRows = 3;
     this.riPriority.HideSelection = false;
     this.riPriority.Items.AddRange(new ImageComboBoxItem[] { new ImageComboBoxItem("<LOC>Neutral", null, 0), new ImageComboBoxItem("<LOC>Thumbs Up", true, 1), new ImageComboBoxItem("<LOC>Thumbs Down", false, 2) });
     this.riPriority.LargeImages = this.ilThumbs;
     this.riPriority.Name = "riPriority";
     this.riPriority.Validating += new CancelEventHandler(this.riPriority_Validating);
     this.ilThumbs.ImageStream = (ImageListStreamer) manager.GetObject("ilThumbs.ImageStream");
     this.ilThumbs.TransparentColor = Color.Transparent;
     this.ilThumbs.Images.SetKeyName(0, "neutral.png");
     this.ilThumbs.Images.SetKeyName(1, "thumbsup.png");
     this.ilThumbs.Images.SetKeyName(2, "thumbsdown.png");
     this.colMap.Caption = "Image";
     this.colMap.ColumnEdit = this.riMap;
     this.colMap.FieldName = "Thumbnail";
     this.colMap.Name = "colMap";
     this.colMap.OptionsColumn.AllowEdit = false;
     this.colMap.Visible = true;
     this.colMap.VisibleIndex = 2;
     this.riMap.CustomHeight = 200;
     this.riMap.Name = "riMap";
     this.riMap.SizeMode = PictureSizeMode.Stretch;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.riPopup.AutoHeight = false;
     this.riPopup.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.riPopup.Name = "riPopup";
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton() });
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     this.repositoryItemTextEdit1.Appearance.Font = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.repositoryItemTextEdit1.Appearance.Options.UseFont = true;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.riPictureStatus.Name = "riPictureStatus";
     this.riPictureStatus.PictureAlignment = ContentAlignment.MiddleLeft;
     this.riPictureStatus.ReadOnly = true;
     this.riPictureStatus.Click += new EventHandler(this.riTextPriority_Click);
     this.riButtonStatus.AllowFocused = false;
     this.riButtonStatus.AllowNullInput = DefaultBoolean.True;
     this.riButtonStatus.AutoHeight = false;
     this.riButtonStatus.Name = "riButtonStatus";
     this.riButtonStatus.ReadOnly = true;
     this.riButtonStatus.TextEditStyle = TextEditStyles.DisableTextEditor;
     this.riButtonStatus.Click += new EventHandler(this.riTextPriority_Click);
     this.riButtonStatus.ButtonClick += new ButtonPressedEventHandler(this.riButtonStatus_ButtonClick);
     this.riTextPriority.AutoHeight = false;
     this.riTextPriority.Name = "riTextPriority";
     this.riTextPriority.ReadOnly = true;
     this.riTextPriority.Click += new EventHandler(this.riTextPriority_Click);
     this.colTime.Caption = "Time";
     this.colTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colTime.FieldName = "DateTime";
     this.colTime.Name = "colTime";
     this.colTime.OptionsColumn.AllowEdit = false;
     this.colTime.Visible = true;
     this.colTime.VisibleIndex = 0;
     this.colType.Caption = "Type";
     this.colType.FieldName = "LogType";
     this.colType.Name = "colType";
     this.colType.OptionsColumn.AllowEdit = false;
     this.colType.Visible = true;
     this.colType.VisibleIndex = 1;
     this.colDescription.Caption = "Description";
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.AllowEdit = false;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 2;
     this.colData.Caption = "Data";
     this.colData.ColumnEdit = this.riPopup;
     this.colData.FieldName = "Data";
     this.colData.Name = "colData";
     this.colData.Visible = true;
     this.colData.VisibleIndex = 3;
     this.rbAeon.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.rbAeon.CheckAlign = ContentAlignment.BottomCenter;
     this.rbAeon.FlatStyle = FlatStyle.Flat;
     this.rbAeon.Image = Resources.aeon1;
     this.rbAeon.ImageAlign = ContentAlignment.TopCenter;
     this.rbAeon.Location = new Point(12, 0x1a7);
     this.rbAeon.Name = "rbAeon";
     this.rbAeon.Size = new Size(0xc6, 0xf5);
     base.ttDefault.SetSuperTip(this.rbAeon, null);
     this.rbAeon.TabIndex = 0x25;
     this.rbAeon.Text = "Aeon";
     this.rbAeon.TextAlign = ContentAlignment.BottomCenter;
     this.rbAeon.TextImageRelation = TextImageRelation.TextAboveImage;
     this.rbAeon.UseVisualStyleBackColor = true;
     this.rbAeon.Paint += new PaintEventHandler(this.rbRandom_Paint);
     this.rbAeon.CheckedChanged += new EventHandler(this.rbAeon_CheckedChanged);
     this.rbCybran.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.rbCybran.CheckAlign = ContentAlignment.BottomCenter;
     this.rbCybran.FlatStyle = FlatStyle.Flat;
     this.rbCybran.Image = Resources.cybran1;
     this.rbCybran.ImageAlign = ContentAlignment.TopCenter;
     this.rbCybran.Location = new Point(0xd0, 0x1a7);
     this.rbCybran.Name = "rbCybran";
     this.rbCybran.Size = new Size(0xc6, 0xf5);
     base.ttDefault.SetSuperTip(this.rbCybran, null);
     this.rbCybran.TabIndex = 0x26;
     this.rbCybran.Text = "Cybran";
     this.rbCybran.TextAlign = ContentAlignment.BottomCenter;
     this.rbCybran.TextImageRelation = TextImageRelation.TextAboveImage;
     this.rbCybran.UseVisualStyleBackColor = true;
     this.rbCybran.Paint += new PaintEventHandler(this.rbRandom_Paint);
     this.rbCybran.CheckedChanged += new EventHandler(this.rbAeon_CheckedChanged);
     this.rbUEF.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.rbUEF.CheckAlign = ContentAlignment.BottomCenter;
     this.rbUEF.FlatStyle = FlatStyle.Flat;
     this.rbUEF.Image = Resources.uef1;
     this.rbUEF.ImageAlign = ContentAlignment.TopCenter;
     this.rbUEF.Location = new Point(410, 0x1a7);
     this.rbUEF.Name = "rbUEF";
     this.rbUEF.Size = new Size(0xc6, 0xf5);
     base.ttDefault.SetSuperTip(this.rbUEF, null);
     this.rbUEF.TabIndex = 0x27;
     this.rbUEF.Text = "UEF";
     this.rbUEF.TextAlign = ContentAlignment.BottomCenter;
     this.rbUEF.TextImageRelation = TextImageRelation.TextAboveImage;
     this.rbUEF.UseVisualStyleBackColor = true;
     this.rbUEF.Paint += new PaintEventHandler(this.rbRandom_Paint);
     this.rbUEF.CheckedChanged += new EventHandler(this.rbAeon_CheckedChanged);
     this.rbRandom.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.rbRandom.BackColor = Color.Black;
     this.rbRandom.CheckAlign = ContentAlignment.BottomCenter;
     this.rbRandom.Checked = true;
     this.rbRandom.FlatStyle = FlatStyle.Flat;
     this.rbRandom.Image = Resources.random1;
     this.rbRandom.ImageAlign = ContentAlignment.TopCenter;
     this.rbRandom.Location = new Point(0x329, 0x1a7);
     this.rbRandom.Name = "rbRandom";
     this.rbRandom.Size = new Size(0xc6, 0xf5);
     base.ttDefault.SetSuperTip(this.rbRandom, null);
     this.rbRandom.TabIndex = 40;
     this.rbRandom.TabStop = true;
     this.rbRandom.Text = "<LOC>Random";
     this.rbRandom.TextAlign = ContentAlignment.BottomCenter;
     this.rbRandom.TextImageRelation = TextImageRelation.TextAboveImage;
     this.rbRandom.UseVisualStyleBackColor = false;
     this.rbRandom.Paint += new PaintEventHandler(this.rbRandom_Paint);
     this.rbRandom.CheckedChanged += new EventHandler(this.rbAeon_CheckedChanged);
     this.lMapPrefs.AutoGrowDirection = GrowDirections.None;
     this.lMapPrefs.AutoSize = true;
     this.lMapPrefs.AutoStyle = true;
     this.lMapPrefs.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.lMapPrefs.ForeColor = Color.White;
     this.lMapPrefs.IgnoreMouseWheel = false;
     this.lMapPrefs.IsStyled = false;
     this.lMapPrefs.Location = new Point(0x15, 0x3e);
     this.lMapPrefs.Name = "lMapPrefs";
     this.lMapPrefs.Size = new Size(0x263, 0x10);
     base.ttDefault.SetSuperTip(this.lMapPrefs, null);
     this.lMapPrefs.TabIndex = 0x29;
     this.lMapPrefs.Text = "<LOC>Step 1: Select your map preferences -- you may have only one thumbs up and one thumbs down.";
     this.lMapPrefs.TextStyle = TextStyles.Default;
     this.gpgLabel1.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgLabel1.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel1.AutoSize = true;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(12, 0x189);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0xcc, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 0x2a;
     this.gpgLabel1.Text = "<LOC>Step 2: Select your faction";
     this.gpgLabel1.TextStyle = TextStyles.Default;
     this.skinButtonCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonCancel.AutoStyle = true;
     this.skinButtonCancel.BackColor = Color.Black;
     this.skinButtonCancel.ButtonState = 0;
     this.skinButtonCancel.DialogResult = DialogResult.OK;
     this.skinButtonCancel.DisabledForecolor = Color.Gray;
     this.skinButtonCancel.DrawColor = Color.White;
     this.skinButtonCancel.DrawEdges = true;
     this.skinButtonCancel.FocusColor = Color.Yellow;
     this.skinButtonCancel.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonCancel.ForeColor = Color.White;
     this.skinButtonCancel.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonCancel.IsStyled = true;
     this.skinButtonCancel.Location = new Point(870, 0x2a2);
     this.skinButtonCancel.Name = "skinButtonCancel";
     this.skinButtonCancel.Size = new Size(0x61, 0x17);
     this.skinButtonCancel.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonCancel, null);
     this.skinButtonCancel.TabIndex = 0x2d;
     this.skinButtonCancel.TabStop = true;
     this.skinButtonCancel.Text = "<LOC>Cancel";
     this.skinButtonCancel.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonCancel.TextPadding = new Padding(0);
     this.skinButtonCancel.Click += new EventHandler(this.skinButtonCancel_Click);
     this.skinButtonSearch.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonSearch.AutoStyle = true;
     this.skinButtonSearch.BackColor = Color.Black;
     this.skinButtonSearch.ButtonState = 0;
     this.skinButtonSearch.DialogResult = DialogResult.OK;
     this.skinButtonSearch.DisabledForecolor = Color.Gray;
     this.skinButtonSearch.DrawColor = Color.White;
     this.skinButtonSearch.DrawEdges = true;
     this.skinButtonSearch.FocusColor = Color.Yellow;
     this.skinButtonSearch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearch.ForeColor = Color.White;
     this.skinButtonSearch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearch.IsStyled = true;
     this.skinButtonSearch.Location = new Point(0x2ff, 0x2a2);
     this.skinButtonSearch.Name = "skinButtonSearch";
     this.skinButtonSearch.Size = new Size(0x61, 0x17);
     this.skinButtonSearch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonSearch, null);
     this.skinButtonSearch.TabIndex = 0x2e;
     this.skinButtonSearch.TabStop = true;
     this.skinButtonSearch.Text = "<LOC>Start Search";
     this.skinButtonSearch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearch.TextPadding = new Padding(0);
     this.skinButtonSearch.Click += new EventHandler(this.skinButton1_Click);
     this.rbSeraphim.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.rbSeraphim.BackColor = Color.Black;
     this.rbSeraphim.CheckAlign = ContentAlignment.BottomCenter;
     this.rbSeraphim.FlatStyle = FlatStyle.Flat;
     this.rbSeraphim.Image = Resources.seraphim;
     this.rbSeraphim.ImageAlign = ContentAlignment.TopCenter;
     this.rbSeraphim.Location = new Point(610, 0x1a7);
     this.rbSeraphim.Name = "rbSeraphim";
     this.rbSeraphim.Size = new Size(0xc6, 0xf5);
     base.ttDefault.SetSuperTip(this.rbSeraphim, null);
     this.rbSeraphim.TabIndex = 0x2f;
     this.rbSeraphim.Text = "Seraphim";
     this.rbSeraphim.TextAlign = ContentAlignment.BottomCenter;
     this.rbSeraphim.TextImageRelation = TextImageRelation.TextAboveImage;
     this.rbSeraphim.UseVisualStyleBackColor = false;
     this.rbSeraphim.Paint += new PaintEventHandler(this.rbRandom_Paint);
     this.rbSeraphim.CheckedChanged += new EventHandler(this.rbSeraphim_CheckedChanged);
     base.AcceptButton = this.skinButtonSearch;
     base.AutoScaleMode = AutoScaleMode.None;
     base.CancelButton = this.skinButtonCancel;
     base.ClientSize = new Size(0x400, 740);
     base.Controls.Add(this.rbSeraphim);
     base.Controls.Add(this.skinButtonSearch);
     base.Controls.Add(this.skinButtonCancel);
     base.Controls.Add(this.gpgLabel1);
     base.Controls.Add(this.lMapPrefs);
     base.Controls.Add(this.rbRandom);
     base.Controls.Add(this.rbUEF);
     base.Controls.Add(this.rbCybran);
     base.Controls.Add(this.rbAeon);
     base.Controls.Add(this.gpgMapSelectGrid);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x400, 740);
     base.Name = "DlgSupcomMapOptions";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Ranked Match Preferences";
     base.Controls.SetChildIndex(this.gpgMapSelectGrid, 0);
     base.Controls.SetChildIndex(this.rbAeon, 0);
     base.Controls.SetChildIndex(this.rbCybran, 0);
     base.Controls.SetChildIndex(this.rbUEF, 0);
     base.Controls.SetChildIndex(this.rbRandom, 0);
     base.Controls.SetChildIndex(this.lMapPrefs, 0);
     base.Controls.SetChildIndex(this.gpgLabel1, 0);
     base.Controls.SetChildIndex(this.skinButtonCancel, 0);
     base.Controls.SetChildIndex(this.skinButtonSearch, 0);
     base.Controls.SetChildIndex(this.rbSeraphim, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgMapSelectGrid.EndInit();
     this.cardView1.EndInit();
     this.riPriority.EndInit();
     this.riMap.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.rimMemoEdit3.EndInit();
     this.riPopup.EndInit();
     this.repositoryItemTimeEdit1.EndInit();
     this.repositoryItemTextEdit1.EndInit();
     this.riPictureStatus.EndInit();
     this.riButtonStatus.EndInit();
     this.riTextPriority.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 30
0
        private void BuildVisibleColumnsProc()
        {
            int iGroupIndexCount = -1;
            int i = 0;
            GridColumn[] grdCol = new GridColumn[m_dtTableData.Columns.Count];

            RepositoryItemTextEdit txtEdit = new RepositoryItemTextEdit();
            txtEdit.MouseWheel -= txtEdit_MouseWheel;
            txtEdit.MouseWheel += txtEdit_MouseWheel;
            rpeNumberMask.MouseWheel -= txtEdit_MouseWheel;
            rpeNumberMask.MouseWheel += txtEdit_MouseWheel;
            foreach (DataColumn dc in m_dtTableData.Columns)
            {

                GridColumn colAdd = new GridColumn() { FieldName = dc.Caption, Caption = dc.Caption, Name = dc.Caption };
                foreach (string readOnl in strColumnReadOnly)
                {
                    if (readOnl.ToLower().Equals(dc.Caption.ToLower()))
                    {
                        m_dtTableData.Columns[readOnl].ReadOnly = true;
                        break;
                    }
                }
                switch (dc.DataType.Name.ToLower())
                {
                    case "boolean":
                        RepositoryItemCheckEdit colBool = new RepositoryItemCheckEdit() { AllowFocused = false, BorderStyle = BorderStyles.NoBorder, ValueChecked = true, ValueUnchecked = false };

                        isShowCheckAllBtn = true;
                        if (colAdd.Name.ToLower().Contains("modifed"))
                            isContainModifedColumn = true;
                        colAdd.ColumnEdit = colBool;
                        colAdd.VisibleIndex = i;
                        colBool.MouseWheel -= txtEdit_MouseWheel;
                        colBool.MouseWheel += txtEdit_MouseWheel;
                        break;
                    case strDATETIME:
                        if (colAdd.Name.ToLower().Contains("time"))
                        {
                            colAdd.ColumnEdit = rpeDateTimeMask;
                        }
                        else
                        {
                            RepositoryItemDateEdit colDate = new RepositoryItemDateEdit(){
                                EditMask = UIMessage.DATE_FORMAT_PATTEN,
                                AllowFocused = false,
                                BorderStyle = BorderStyles.NoBorder};
                            colDate.Mask.UseMaskAsDisplayFormat = true;
                            colDate.MouseWheel -= txtEdit_MouseWheel;
                            colDate.MouseWheel += txtEdit_MouseWheel;
                            colAdd.ColumnEdit = colDate;
                        }
                        colAdd.VisibleIndex = i;
                        break;
                    case strFLOAT:
                    case strREAL:
                        colAdd.DisplayFormat.FormatString = "f";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.ColumnEdit = txtEdit;
                        colAdd.VisibleIndex = i;
                        break;
                    case strBIGINT:
                    case strINT:
                    case strNUMERIC:
                    case strSMALLINT:
                    case strTINYINT:
                    case strDecimal:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strMONEY:
                    case strSMALLMONEY:
                        colAdd.DisplayFormat.FormatString = "n0";
                        colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                        colAdd.ColumnEdit = this.rpeNumberMask;
                        colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                        colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
                        colAdd.VisibleIndex = i;
                        break;
                    case strIMAGE:
                    case "byte[]":
                        RepositoryItemPictureEdit colPhoto = new RepositoryItemPictureEdit();
                        colAdd.ColumnEdit = colPhoto;
                        colAdd.VisibleIndex = i;
                        break;
                    default:
                        colAdd.ColumnEdit = txtEdit;
                        colAdd.VisibleIndex = i;
                        break;
                }
                if (colAdd.Name.ToLower().Equals(CommonConst.EmployeeID.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.ColumnEdit = null;//this.rpeNumberMask;
                    colAdd.SummaryItem.DisplayFormat = "{0:#,##0;(#,##0);Zero}";
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count;
                    colAdd.Fixed = FixedStyle.Left;

                }
                if (colAdd.Name.ToLower().Equals(CommonConst.FullName.ToLower()))
                {
                    //colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
                    colAdd.Fixed = FixedStyle.Left;
                }
                if (strColumnFormatFont != null && strColumnFormatFont.Length > 0 && strColumnFormatFont[0] != "")
                {
                    foreach (string strPairs in strColumnFormatFont)
                    {
                        if (colAdd.FieldName.Equals(strPairs.Split('#')[0]))
                        {
                            switch (strPairs.Split('#')[1].ToLower())
                            {
                                case "b":
                                    colAdd.AppearanceCell.Font = new Font("Tahoma", 8.25F, FontStyle.Bold);
                                    break;
                                case "i":
                                    colAdd.AppearanceCell.Font = new Font("Tahoma", 8.25F, FontStyle.Italic);
                                    break;
                                case "s":
                                    colAdd.AppearanceCell.Font = new Font("Tahoma", 8.25F, FontStyle.Strikeout);
                                    break;
                                case "u":
                                    colAdd.AppearanceCell.Font = new Font("Tahoma", 8.25F, FontStyle.Underline);
                                    break;
                            }
                        }
                    }
                }
                if (colAdd.Name.ToLower().Equals("month") || colAdd.Name.ToLower().Equals("year"))
                {
                    colAdd.DisplayFormat.FormatType = DevExpress.Utils.FormatType.None;
                    colAdd.ColumnEdit = null;
                    colAdd.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.None;
                }
                //Set list box columns
                RepositoryItemLookUpEdit repCom = new RepositoryItemLookUpEdit();
                //set combobox value data
                if (strColumnCombobox.Length > 0)
                {
                    foreach (string com in strColumnCombobox)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (dc.Caption == comboCol[0])
                        {
                            DataTable dtCom = DBEngine.execReturnDataTable(comboCol[1]);
                            if (dtCom != null && dtCom.Rows.Count > 0)
                            {
                                repCom.DataSource = dtCom;
                                repCom.ValueMember = dtCom.Columns[0].Caption;
                                if(dtCom.Columns.Count>1)
                                    repCom.DisplayMember = dtCom.Columns[1].Caption;
                                else
                                    repCom.DisplayMember = dtCom.Columns[0].Caption;
                                repCom.NullText = string.Empty;
                                repCom.CloseUp += new CloseUpEventHandler(repCom_CloseUp);
                                colAdd.ColumnEdit = repCom;
                                break;
                            }
                        }
                    }
                }
                if (strColumnHide != null && strColumnHide.Length > 0)
                {
                    foreach (string com in strColumnHide)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.VisibleIndex = -1;
                        }
                    }
                }
                if (strColumnFixed != null && strColumnFixed.Length > 0)
                {
                    foreach (string com in strColumnFixed)
                    {
                        if (colAdd.Name.ToLower() == com.ToLower())
                        {
                            colAdd.Fixed = FixedStyle.Left;
                        }
                    }
                }
                if (strColumnOrderBy != null && strColumnOrderBy.Length > 0)
                {
                    foreach (string com in strColumnOrderBy)
                    {
                        string[] comboCol = com.Split('&');
                        if (comboCol.Length < 2)
                            continue;
                        if (colAdd.Name.ToLower() == comboCol[0].ToLower())
                        {
                            colAdd.VisibleIndex = Convert.ToInt32(comboCol[1]);
                            break;
                        }
                    }
                }
                //int intWidth = Convert.ToInt16(dc.MaxLength) * 4;
                //colAdd.Width = (intWidth > 100 ? intWidth : 100);
                //colAdd.OptionsColumn.AllowEdit = !isReadOnly;
                grdCol[i++] = colAdd;
            }
            this.grvTableEditor.Columns.Clear();
            this.grvTableEditor.Columns.AddRange(grdCol);
            if (!isAllowAdd)
            {
                btnFWAdd.Enabled = false;
                btnFWDelete.Enabled = false;
            }
            m_dtTableData.DefaultView.AllowEdit = !isReadOnly;
            btnFWDelete.Visible = btnFWAdd.Visible = btnFWSave.Visible = btnFWReset.Visible = !isReadOnly;
            grvTableEditor.BestFitColumns();
            if (strGroupColumns != null && strGroupColumns.Length > 0)
            {
                grvTableEditor.OptionsView.ShowGroupPanel = true;
                foreach (string com in strGroupColumns)
                {
                    foreach (GridColumn colGroup in grvTableEditor.Columns)
                        if (colGroup.Name.ToLower() == com.ToLower())
                        {
                            colGroup.GroupIndex = ++iGroupIndexCount;
                        }
                }
                grvTableEditor.ExpandAllGroups();
            }
            if(grvTableEditor.GroupCount<=0)
                grvTableEditor.OptionsView.ShowGroupPanel = false;
        }
Exemplo n.º 31
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(FrmLadderView));
     this.gpgLabelType = new GPGLabel();
     this.gpgLabelDates = new GPGLabel();
     this.msQuickButtons = new GPGMenuStrip(this.components);
     this.btnToggleChallengers = new ToolStripMenuItem();
     this.btnToggleMyChallenges = new ToolStripMenuItem();
     this.btnAutomatch = new ToolStripMenuItem();
     this.btnSearchSelf = new ToolStripMenuItem();
     this.btnSearchOther = new ToolStripMenuItem();
     this.btnComments = new ToolStripMenuItem();
     this.btnAuditTrail = new ToolStripMenuItem();
     this.btnChallenge = new ToolStripMenuItem();
     this.btnJoinLeave = new ToolStripMenuItem();
     this.btnHelp = new ToolStripMenuItem();
     this.btnMore = new ToolStripMenuItem();
     this.gpgDataGridLadder = new GPGDataGrid();
     this.gvLadder = new GridView();
     this.gcRank = new GridColumn();
     this.gcPrevRank = new GridColumn();
     this.gcName = new GridColumn();
     this.gcWins = new GridColumn();
     this.gcLosses = new GridColumn();
     this.gcDraws = new GridColumn();
     this.gcWinPercentage = new GridColumn();
     this.gcNonReports = new GridColumn();
     this.gcConflicts = new GridColumn();
     this.gcCurrentStreak = new GridColumn();
     this.gcRecordStreak = new GridColumn();
     this.gcDaysSinceChallenge = new GridColumn();
     this.gcDaysUntilDegrade = new GridColumn();
     this.gcRepRating = new GridColumn();
     this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
     this.gcRepRater = new GridColumn();
     this.repositoryItemPictureEdit2 = new RepositoryItemPictureEdit();
     this.gpgPanelLinkPages = new GPGPanel();
     this.skinButtonEnd = new SkinButton();
     this.skinButtonStart = new SkinButton();
     this.skinButtonNext = new SkinButton();
     this.skinButtonLast = new SkinButton();
     this.backLabelTitle = new SkinLabel();
     this.gpgLabelDescription = new GPGLabel();
     this.skinGroupPanel1 = new SkinGroupPanel();
     this.gpgLabel3 = new GPGLabel();
     this.gpgLabelRules = new GPGLabel();
     this.gpgLabel4 = new GPGLabel();
     this.gpgLabel2 = new GPGLabel();
     this.gpgLabel1 = new GPGLabel();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.msQuickButtons.SuspendLayout();
     this.gpgDataGridLadder.BeginInit();
     this.gvLadder.BeginInit();
     this.repositoryItemPictureEdit1.BeginInit();
     this.repositoryItemPictureEdit2.BeginInit();
     this.skinGroupPanel1.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x31f, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgLabelType.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelType.AutoSize = true;
     this.gpgLabelType.AutoStyle = true;
     this.gpgLabelType.BackColor = Color.Transparent;
     this.gpgLabelType.Font = new Font("Arial", 9.75f);
     this.gpgLabelType.ForeColor = Color.White;
     this.gpgLabelType.IgnoreMouseWheel = false;
     this.gpgLabelType.IsStyled = false;
     this.gpgLabelType.Location = new Point(3, 0x2e);
     this.gpgLabelType.Name = "gpgLabelType";
     this.gpgLabelType.Size = new Size(0x21, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelType, null);
     this.gpgLabelType.TabIndex = 9;
     this.gpgLabelType.Text = "type";
     this.gpgLabelType.TextStyle = TextStyles.Default;
     this.gpgLabelDates.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelDates.AutoSize = true;
     this.gpgLabelDates.AutoStyle = true;
     this.gpgLabelDates.BackColor = Color.Transparent;
     this.gpgLabelDates.Font = new Font("Arial", 9.75f);
     this.gpgLabelDates.ForeColor = Color.White;
     this.gpgLabelDates.IgnoreMouseWheel = false;
     this.gpgLabelDates.IsStyled = false;
     this.gpgLabelDates.Location = new Point(0xba, 0x2e);
     this.gpgLabelDates.Name = "gpgLabelDates";
     this.gpgLabelDates.Size = new Size(40, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelDates, null);
     this.gpgLabelDates.TabIndex = 12;
     this.gpgLabelDates.Text = "dates";
     this.gpgLabelDates.TextStyle = TextStyles.Default;
     this.msQuickButtons.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.msQuickButtons.AutoSize = false;
     this.msQuickButtons.BackgroundImage = (Image) manager.GetObject("msQuickButtons.BackgroundImage");
     this.msQuickButtons.Dock = DockStyle.None;
     this.msQuickButtons.GripMargin = new Padding(0);
     this.msQuickButtons.ImageScalingSize = new Size(0x2d, 0x2d);
     this.msQuickButtons.Items.AddRange(new ToolStripItem[] { this.btnToggleChallengers, this.btnToggleMyChallenges, this.btnAutomatch, this.btnSearchSelf, this.btnSearchOther, this.btnComments, this.btnAuditTrail, this.btnChallenge, this.btnJoinLeave, this.btnHelp, this.btnMore });
     this.msQuickButtons.Location = new Point(9, 0x26e);
     this.msQuickButtons.Name = "msQuickButtons";
     this.msQuickButtons.Padding = new Padding(0, 0, 10, 0);
     this.msQuickButtons.RenderMode = ToolStripRenderMode.Professional;
     this.msQuickButtons.ShowItemToolTips = true;
     this.msQuickButtons.Size = new Size(840, 0x34);
     base.ttDefault.SetSuperTip(this.msQuickButtons, null);
     this.msQuickButtons.TabIndex = 13;
     this.msQuickButtons.Paint += new PaintEventHandler(this.msQuickButtons_Paint);
     this.msQuickButtons.SizeChanged += new EventHandler(this.msQuickButtons_SizeChanged);
     this.btnToggleChallengers.AutoSize = false;
     this.btnToggleChallengers.AutoToolTip = true;
     this.btnToggleChallengers.Enabled = false;
     this.btnToggleChallengers.Image = (Image) manager.GetObject("btnToggleChallengers.Image");
     this.btnToggleChallengers.ImageScaling = ToolStripItemImageScaling.None;
     this.btnToggleChallengers.Name = "btnToggleChallengers";
     this.btnToggleChallengers.ShortcutKeys = Keys.F8;
     this.btnToggleChallengers.Size = new Size(0x25, 0x34);
     this.btnToggleChallengers.ToolTipText = "<LOC>Show only participants who are accepting challenges";
     this.btnToggleChallengers.Click += new EventHandler(this.btnToggleChallengers_Click);
     this.btnToggleMyChallenges.AutoSize = false;
     this.btnToggleMyChallenges.AutoToolTip = true;
     this.btnToggleMyChallenges.Enabled = false;
     this.btnToggleMyChallenges.Image = (Image) manager.GetObject("btnToggleMyChallenges.Image");
     this.btnToggleMyChallenges.ImageScaling = ToolStripItemImageScaling.None;
     this.btnToggleMyChallenges.Name = "btnToggleMyChallenges";
     this.btnToggleMyChallenges.ShortcutKeys = Keys.F8;
     this.btnToggleMyChallenges.Size = new Size(0x25, 0x34);
     this.btnToggleMyChallenges.Click += new EventHandler(this.btnToggleMyChallenges_Click);
     this.btnAutomatch.AutoSize = false;
     this.btnAutomatch.AutoToolTip = true;
     this.btnAutomatch.Enabled = false;
     this.btnAutomatch.Image = (Image) manager.GetObject("btnAutomatch.Image");
     this.btnAutomatch.ImageScaling = ToolStripItemImageScaling.None;
     this.btnAutomatch.Name = "btnAutomatch";
     this.btnAutomatch.ShortcutKeys = Keys.F8;
     this.btnAutomatch.Size = new Size(0x25, 0x34);
     this.btnAutomatch.ToolTipText = "<LOC>Play Automatch";
     this.btnAutomatch.Click += new EventHandler(this.btnAutomatch_Click);
     this.btnSearchSelf.AutoSize = false;
     this.btnSearchSelf.AutoToolTip = true;
     this.btnSearchSelf.Enabled = false;
     this.btnSearchSelf.Image = (Image) manager.GetObject("btnSearchSelf.Image");
     this.btnSearchSelf.ImageScaling = ToolStripItemImageScaling.None;
     this.btnSearchSelf.Name = "btnSearchSelf";
     this.btnSearchSelf.ShortcutKeys = Keys.F8;
     this.btnSearchSelf.Size = new Size(0x25, 0x34);
     this.btnSearchSelf.ToolTipText = "<LOC>Search for yourself";
     this.btnSearchSelf.Click += new EventHandler(this.btnSearchSelf_Click);
     this.btnSearchOther.AutoSize = false;
     this.btnSearchOther.AutoToolTip = true;
     this.btnSearchOther.Enabled = false;
     this.btnSearchOther.Image = (Image) manager.GetObject("btnSearchOther.Image");
     this.btnSearchOther.ImageScaling = ToolStripItemImageScaling.None;
     this.btnSearchOther.Name = "btnSearchOther";
     this.btnSearchOther.ShortcutKeys = Keys.F8;
     this.btnSearchOther.Size = new Size(0x25, 0x34);
     this.btnSearchOther.ToolTipText = "<LOC>Search for a participant";
     this.btnSearchOther.Click += new EventHandler(this.btnSearchOther_Click);
     this.btnComments.AutoSize = false;
     this.btnComments.AutoToolTip = true;
     this.btnComments.Enabled = false;
     this.btnComments.Image = (Image) manager.GetObject("btnComments.Image");
     this.btnComments.ImageScaling = ToolStripItemImageScaling.None;
     this.btnComments.Name = "btnComments";
     this.btnComments.ShortcutKeys = Keys.F7;
     this.btnComments.Size = new Size(0x25, 0x34);
     this.btnComments.ToolTipText = "<LOC>View comments about this player";
     this.btnComments.Click += new EventHandler(this.btnComments_Click);
     this.btnAuditTrail.AutoSize = false;
     this.btnAuditTrail.AutoToolTip = true;
     this.btnAuditTrail.Enabled = false;
     this.btnAuditTrail.Image = (Image) manager.GetObject("btnAuditTrail.Image");
     this.btnAuditTrail.ImageScaling = ToolStripItemImageScaling.None;
     this.btnAuditTrail.Name = "btnAuditTrail";
     this.btnAuditTrail.ShortcutKeys = Keys.F7;
     this.btnAuditTrail.Size = new Size(0x25, 0x34);
     this.btnAuditTrail.ToolTipText = "<LOC>View this players ladder history";
     this.btnAuditTrail.Click += new EventHandler(this.btnAuditTrail_Click);
     this.btnChallenge.AutoSize = false;
     this.btnChallenge.AutoToolTip = true;
     this.btnChallenge.Enabled = false;
     this.btnChallenge.Image = (Image) manager.GetObject("btnChallenge.Image");
     this.btnChallenge.ImageScaling = ToolStripItemImageScaling.None;
     this.btnChallenge.Name = "btnChallenge";
     this.btnChallenge.ShortcutKeys = Keys.F2;
     this.btnChallenge.Size = new Size(0x25, 0x34);
     this.btnChallenge.ToolTipText = "<LOC>Challenge Selected Participant";
     this.btnChallenge.Click += new EventHandler(this.btnChallenge_Click);
     this.btnJoinLeave.AutoSize = false;
     this.btnJoinLeave.AutoToolTip = true;
     this.btnJoinLeave.Enabled = false;
     this.btnJoinLeave.Image = (Image) manager.GetObject("btnJoinLeave.Image");
     this.btnJoinLeave.ImageScaling = ToolStripItemImageScaling.None;
     this.btnJoinLeave.Name = "btnJoinLeave";
     this.btnJoinLeave.ShortcutKeys = Keys.F2;
     this.btnJoinLeave.Size = new Size(0x25, 0x34);
     this.btnJoinLeave.Click += new EventHandler(this.btnJoinLeave_Click);
     this.btnHelp.AutoSize = false;
     this.btnHelp.AutoToolTip = true;
     this.btnHelp.Image = (Image) manager.GetObject("btnHelp.Image");
     this.btnHelp.ImageScaling = ToolStripItemImageScaling.None;
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.ShortcutKeys = Keys.F2;
     this.btnHelp.Size = new Size(0x25, 0x34);
     this.btnHelp.ToolTipText = "<LOC>Help";
     this.btnHelp.Click += new EventHandler(this.btnHelp_Click);
     this.btnMore.AutoSize = false;
     this.btnMore.AutoToolTip = true;
     this.btnMore.Image = (Image) manager.GetObject("btnMore.Image");
     this.btnMore.ImageScaling = ToolStripItemImageScaling.None;
     this.btnMore.Name = "btnMore";
     this.btnMore.ShortcutKeys = Keys.F6;
     this.btnMore.Size = new Size(20, 0x34);
     this.btnMore.ToolTipText = "<LOC>More...";
     this.btnMore.Visible = false;
     this.gpgDataGridLadder.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgDataGridLadder.CustomizeStyle = false;
     this.gpgDataGridLadder.EmbeddedNavigator.Name = "";
     this.gpgDataGridLadder.Location = new Point(9, 0x106);
     this.gpgDataGridLadder.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgDataGridLadder.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgDataGridLadder.MainView = this.gvLadder;
     this.gpgDataGridLadder.Name = "gpgDataGridLadder";
     this.gpgDataGridLadder.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemPictureEdit1, this.repositoryItemPictureEdit2 });
     this.gpgDataGridLadder.ShowOnlyPredefinedDetails = true;
     this.gpgDataGridLadder.Size = new Size(840, 340);
     this.gpgDataGridLadder.TabIndex = 14;
     this.gpgDataGridLadder.ViewCollection.AddRange(new BaseView[] { this.gvLadder });
     this.gvLadder.Appearance.Empty.BackColor = Color.Black;
     this.gvLadder.Appearance.Empty.Options.UseBackColor = true;
     this.gvLadder.Appearance.EvenRow.BackColor = Color.Black;
     this.gvLadder.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvLadder.Appearance.FocusedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvLadder.Appearance.FocusedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvLadder.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvLadder.Appearance.FocusedRow.Options.UseFont = true;
     this.gvLadder.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvLadder.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvLadder.Appearance.HideSelectionRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvLadder.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvLadder.Appearance.OddRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvLadder.Appearance.OddRow.Options.UseBackColor = true;
     this.gvLadder.Appearance.Preview.BackColor = Color.Black;
     this.gvLadder.Appearance.Preview.Options.UseBackColor = true;
     this.gvLadder.Appearance.Row.BackColor = Color.Black;
     this.gvLadder.Appearance.Row.ForeColor = Color.White;
     this.gvLadder.Appearance.Row.Options.UseBackColor = true;
     this.gvLadder.Appearance.RowSeparator.BackColor = Color.Black;
     this.gvLadder.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvLadder.Appearance.SelectedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvLadder.Appearance.SelectedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvLadder.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvLadder.Appearance.SelectedRow.Options.UseFont = true;
     this.gvLadder.AppearancePrint.Row.ForeColor = Color.White;
     this.gvLadder.AppearancePrint.Row.Options.UseForeColor = true;
     this.gvLadder.BorderStyle = BorderStyles.NoBorder;
     this.gvLadder.ColumnPanelRowHeight = 30;
     this.gvLadder.Columns.AddRange(new GridColumn[] { this.gcRank, this.gcPrevRank, this.gcName, this.gcWins, this.gcLosses, this.gcDraws, this.gcWinPercentage, this.gcNonReports, this.gcConflicts, this.gcCurrentStreak, this.gcRecordStreak, this.gcDaysSinceChallenge, this.gcDaysUntilDegrade, this.gcRepRating, this.gcRepRater });
     this.gvLadder.GridControl = this.gpgDataGridLadder;
     this.gvLadder.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvLadder.Name = "gvLadder";
     this.gvLadder.OptionsMenu.EnableColumnMenu = false;
     this.gvLadder.OptionsMenu.EnableFooterMenu = false;
     this.gvLadder.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvLadder.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvLadder.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gvLadder.OptionsView.EnableAppearanceEvenRow = true;
     this.gvLadder.OptionsView.EnableAppearanceOddRow = true;
     this.gvLadder.OptionsView.ShowHorzLines = false;
     this.gvLadder.OptionsView.ShowIndicator = false;
     this.gvLadder.OptionsView.ShowVertLines = false;
     this.gvLadder.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvLadder_CustomDrawCell);
     this.gvLadder.FocusedRowChanged += new FocusedRowChangedEventHandler(this.gvLadder_FocusedRowChanged);
     this.gcRank.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRank.AppearanceCell.ForeColor = Color.Gold;
     this.gcRank.AppearanceCell.Options.UseFont = true;
     this.gcRank.AppearanceCell.Options.UseForeColor = true;
     this.gcRank.AppearanceCell.Options.UseTextOptions = true;
     this.gcRank.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRank.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRank.AppearanceHeader.Options.UseFont = true;
     this.gcRank.Caption = "<LOC>Rank";
     this.gcRank.FieldName = "Rank";
     this.gcRank.Name = "gcRank";
     this.gcRank.OptionsColumn.AllowEdit = false;
     this.gcRank.Visible = true;
     this.gcRank.VisibleIndex = 0;
     this.gcPrevRank.AppearanceCell.ForeColor = Color.White;
     this.gcPrevRank.AppearanceCell.Options.UseForeColor = true;
     this.gcPrevRank.AppearanceCell.Options.UseTextOptions = true;
     this.gcPrevRank.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcPrevRank.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcPrevRank.AppearanceHeader.Options.UseFont = true;
     this.gcPrevRank.Caption = "<LOC>Prev Rank";
     this.gcPrevRank.FieldName = "LastRank";
     this.gcPrevRank.Name = "gcPrevRank";
     this.gcPrevRank.OptionsColumn.AllowEdit = false;
     this.gcPrevRank.Visible = true;
     this.gcPrevRank.VisibleIndex = 1;
     this.gcName.AppearanceCell.ForeColor = Color.White;
     this.gcName.AppearanceCell.Options.UseForeColor = true;
     this.gcName.AppearanceCell.Options.UseTextOptions = true;
     this.gcName.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcName.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcName.AppearanceHeader.Options.UseFont = true;
     this.gcName.Caption = "<LOC>Name";
     this.gcName.FieldName = "EntityName";
     this.gcName.Name = "gcName";
     this.gcName.OptionsColumn.AllowEdit = false;
     this.gcName.Visible = true;
     this.gcName.VisibleIndex = 2;
     this.gcWins.AppearanceCell.ForeColor = Color.SeaGreen;
     this.gcWins.AppearanceCell.Options.UseForeColor = true;
     this.gcWins.AppearanceCell.Options.UseTextOptions = true;
     this.gcWins.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcWins.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcWins.AppearanceHeader.Options.UseFont = true;
     this.gcWins.Caption = "<LOC>Wins";
     this.gcWins.FieldName = "Wins";
     this.gcWins.Name = "gcWins";
     this.gcWins.OptionsColumn.AllowEdit = false;
     this.gcWins.Visible = true;
     this.gcWins.VisibleIndex = 3;
     this.gcLosses.AppearanceCell.ForeColor = Color.Red;
     this.gcLosses.AppearanceCell.Options.UseForeColor = true;
     this.gcLosses.AppearanceCell.Options.UseTextOptions = true;
     this.gcLosses.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcLosses.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcLosses.AppearanceHeader.Options.UseFont = true;
     this.gcLosses.Caption = "<LOC>Losses";
     this.gcLosses.FieldName = "Losses";
     this.gcLosses.Name = "gcLosses";
     this.gcLosses.OptionsColumn.AllowEdit = false;
     this.gcLosses.Visible = true;
     this.gcLosses.VisibleIndex = 4;
     this.gcDraws.AppearanceCell.ForeColor = Color.White;
     this.gcDraws.AppearanceCell.Options.UseForeColor = true;
     this.gcDraws.AppearanceCell.Options.UseTextOptions = true;
     this.gcDraws.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDraws.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcDraws.AppearanceHeader.Options.UseFont = true;
     this.gcDraws.Caption = "<LOC>Draws";
     this.gcDraws.FieldName = "Draws";
     this.gcDraws.Name = "gcDraws";
     this.gcDraws.OptionsColumn.AllowEdit = false;
     this.gcDraws.Visible = true;
     this.gcDraws.VisibleIndex = 5;
     this.gcWinPercentage.AppearanceCell.ForeColor = Color.White;
     this.gcWinPercentage.AppearanceCell.Options.UseForeColor = true;
     this.gcWinPercentage.AppearanceCell.Options.UseTextOptions = true;
     this.gcWinPercentage.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcWinPercentage.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcWinPercentage.AppearanceHeader.Options.UseFont = true;
     this.gcWinPercentage.Caption = "<LOC>Win %";
     this.gcWinPercentage.DisplayFormat.FormatString = "{0}%";
     this.gcWinPercentage.DisplayFormat.FormatType = FormatType.Custom;
     this.gcWinPercentage.FieldName = "WinPercentage";
     this.gcWinPercentage.Name = "gcWinPercentage";
     this.gcWinPercentage.OptionsColumn.AllowEdit = false;
     this.gcWinPercentage.Visible = true;
     this.gcWinPercentage.VisibleIndex = 6;
     this.gcNonReports.AppearanceCell.ForeColor = Color.White;
     this.gcNonReports.AppearanceCell.Options.UseForeColor = true;
     this.gcNonReports.AppearanceCell.Options.UseTextOptions = true;
     this.gcNonReports.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcNonReports.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcNonReports.AppearanceHeader.Options.UseFont = true;
     this.gcNonReports.Caption = "<LOC>NR";
     this.gcNonReports.FieldName = "NonReportCount";
     this.gcNonReports.Name = "gcNonReports";
     this.gcNonReports.OptionsColumn.AllowEdit = false;
     this.gcNonReports.Visible = true;
     this.gcNonReports.VisibleIndex = 7;
     this.gcConflicts.AppearanceCell.ForeColor = Color.White;
     this.gcConflicts.AppearanceCell.Options.UseForeColor = true;
     this.gcConflicts.AppearanceCell.Options.UseTextOptions = true;
     this.gcConflicts.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcConflicts.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcConflicts.AppearanceHeader.Options.UseFont = true;
     this.gcConflicts.Caption = "<LOC>Conflicts";
     this.gcConflicts.FieldName = "ConflictReportCount";
     this.gcConflicts.Name = "gcConflicts";
     this.gcConflicts.OptionsColumn.AllowEdit = false;
     this.gcConflicts.Visible = true;
     this.gcConflicts.VisibleIndex = 8;
     this.gcCurrentStreak.AppearanceCell.ForeColor = Color.White;
     this.gcCurrentStreak.AppearanceCell.Options.UseForeColor = true;
     this.gcCurrentStreak.AppearanceCell.Options.UseTextOptions = true;
     this.gcCurrentStreak.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcCurrentStreak.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcCurrentStreak.AppearanceHeader.Options.UseFont = true;
     this.gcCurrentStreak.Caption = "<LOC>Current Streak";
     this.gcCurrentStreak.FieldName = "CurrentStreak";
     this.gcCurrentStreak.Name = "gcCurrentStreak";
     this.gcCurrentStreak.OptionsColumn.AllowEdit = false;
     this.gcCurrentStreak.Visible = true;
     this.gcCurrentStreak.VisibleIndex = 9;
     this.gcRecordStreak.AppearanceCell.ForeColor = Color.White;
     this.gcRecordStreak.AppearanceCell.Options.UseForeColor = true;
     this.gcRecordStreak.AppearanceCell.Options.UseTextOptions = true;
     this.gcRecordStreak.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRecordStreak.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRecordStreak.AppearanceHeader.Options.UseFont = true;
     this.gcRecordStreak.Caption = "<LOC>Record Streak";
     this.gcRecordStreak.FieldName = "RecordStreak";
     this.gcRecordStreak.Name = "gcRecordStreak";
     this.gcRecordStreak.OptionsColumn.AllowEdit = false;
     this.gcRecordStreak.Visible = true;
     this.gcRecordStreak.VisibleIndex = 10;
     this.gcDaysSinceChallenge.AppearanceCell.ForeColor = Color.White;
     this.gcDaysSinceChallenge.AppearanceCell.Options.UseForeColor = true;
     this.gcDaysSinceChallenge.AppearanceCell.Options.UseTextOptions = true;
     this.gcDaysSinceChallenge.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDaysSinceChallenge.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcDaysSinceChallenge.AppearanceHeader.Options.UseFont = true;
     this.gcDaysSinceChallenge.Caption = "<LOC>Days Since Challenge";
     this.gcDaysSinceChallenge.FieldName = "DaysSinceChallenge";
     this.gcDaysSinceChallenge.Name = "gcDaysSinceChallenge";
     this.gcDaysSinceChallenge.OptionsColumn.AllowEdit = false;
     this.gcDaysSinceChallenge.Visible = true;
     this.gcDaysSinceChallenge.VisibleIndex = 11;
     this.gcDaysUntilDegrade.AppearanceCell.ForeColor = Color.White;
     this.gcDaysUntilDegrade.AppearanceCell.Options.UseForeColor = true;
     this.gcDaysUntilDegrade.AppearanceCell.Options.UseTextOptions = true;
     this.gcDaysUntilDegrade.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDaysUntilDegrade.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcDaysUntilDegrade.AppearanceHeader.Options.UseFont = true;
     this.gcDaysUntilDegrade.Caption = "<LOC>Days Until Degrade";
     this.gcDaysUntilDegrade.FieldName = "DaysUntilDegrade";
     this.gcDaysUntilDegrade.Name = "gcDaysUntilDegrade";
     this.gcDaysUntilDegrade.OptionsColumn.AllowEdit = false;
     this.gcDaysUntilDegrade.Visible = true;
     this.gcDaysUntilDegrade.VisibleIndex = 12;
     this.gcRepRating.AppearanceCell.Options.UseTextOptions = true;
     this.gcRepRating.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRepRating.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRepRating.AppearanceHeader.Options.UseFont = true;
     this.gcRepRating.Caption = "<LOC>Rating Score";
     this.gcRepRating.ColumnEdit = this.repositoryItemPictureEdit1;
     this.gcRepRating.FieldName = "RatingImageSmall";
     this.gcRepRating.Name = "gcRepRating";
     this.gcRepRating.OptionsColumn.AllowEdit = false;
     this.gcRepRating.Visible = true;
     this.gcRepRating.VisibleIndex = 13;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.gcRepRater.AppearanceCell.Options.UseTextOptions = true;
     this.gcRepRater.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRepRater.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRepRater.AppearanceHeader.Options.UseFont = true;
     this.gcRepRater.Caption = "<LOC>Rater Score";
     this.gcRepRater.ColumnEdit = this.repositoryItemPictureEdit2;
     this.gcRepRater.FieldName = "RaterImageSmall";
     this.gcRepRater.Name = "gcRepRater";
     this.gcRepRater.OptionsColumn.AllowEdit = false;
     this.gcRepRater.Visible = true;
     this.gcRepRater.VisibleIndex = 14;
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     this.gpgPanelLinkPages.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgPanelLinkPages.BackColor = Color.DarkGray;
     this.gpgPanelLinkPages.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelLinkPages.BorderThickness = 2;
     this.gpgPanelLinkPages.DrawBorder = false;
     this.gpgPanelLinkPages.Location = new Point(0x58, 0x260);
     this.gpgPanelLinkPages.Margin = new Padding(0);
     this.gpgPanelLinkPages.Name = "gpgPanelLinkPages";
     this.gpgPanelLinkPages.Size = new Size(0x2aa, 0x16);
     base.ttDefault.SetSuperTip(this.gpgPanelLinkPages, null);
     this.gpgPanelLinkPages.TabIndex = 0x17;
     this.skinButtonEnd.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonEnd.AutoStyle = true;
     this.skinButtonEnd.BackColor = Color.Black;
     this.skinButtonEnd.ButtonState = 0;
     this.skinButtonEnd.DialogResult = DialogResult.OK;
     this.skinButtonEnd.DisabledForecolor = Color.Gray;
     this.skinButtonEnd.DrawColor = Color.White;
     this.skinButtonEnd.DrawEdges = false;
     this.skinButtonEnd.FocusColor = Color.Yellow;
     this.skinButtonEnd.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonEnd.ForeColor = Color.White;
     this.skinButtonEnd.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonEnd.IsStyled = true;
     this.skinButtonEnd.Location = new Point(0x329, 0x260);
     this.skinButtonEnd.Name = "skinButtonEnd";
     this.skinButtonEnd.Size = new Size(40, 0x16);
     this.skinButtonEnd.SkinBasePath = @"Controls\Button\Last";
     base.ttDefault.SetSuperTip(this.skinButtonEnd, null);
     this.skinButtonEnd.TabIndex = 0x16;
     this.skinButtonEnd.TabStop = true;
     this.skinButtonEnd.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonEnd.TextPadding = new Padding(0);
     this.skinButtonEnd.Click += new EventHandler(this.skinButtonEnd_Click);
     this.skinButtonStart.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonStart.AutoStyle = true;
     this.skinButtonStart.BackColor = Color.Black;
     this.skinButtonStart.ButtonState = 0;
     this.skinButtonStart.DialogResult = DialogResult.OK;
     this.skinButtonStart.DisabledForecolor = Color.Gray;
     this.skinButtonStart.DrawColor = Color.White;
     this.skinButtonStart.DrawEdges = false;
     this.skinButtonStart.FocusColor = Color.Yellow;
     this.skinButtonStart.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonStart.ForeColor = Color.White;
     this.skinButtonStart.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonStart.IsStyled = true;
     this.skinButtonStart.Location = new Point(9, 0x260);
     this.skinButtonStart.Name = "skinButtonStart";
     this.skinButtonStart.Size = new Size(40, 0x16);
     this.skinButtonStart.SkinBasePath = @"Controls\Button\First";
     base.ttDefault.SetSuperTip(this.skinButtonStart, null);
     this.skinButtonStart.TabIndex = 0x15;
     this.skinButtonStart.TabStop = true;
     this.skinButtonStart.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonStart.TextPadding = new Padding(0);
     this.skinButtonStart.Click += new EventHandler(this.skinButtonStart_Click);
     this.skinButtonNext.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonNext.AutoStyle = true;
     this.skinButtonNext.BackColor = Color.Black;
     this.skinButtonNext.ButtonState = 0;
     this.skinButtonNext.DialogResult = DialogResult.OK;
     this.skinButtonNext.DisabledForecolor = Color.Gray;
     this.skinButtonNext.DrawColor = Color.White;
     this.skinButtonNext.DrawEdges = false;
     this.skinButtonNext.FocusColor = Color.Yellow;
     this.skinButtonNext.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonNext.ForeColor = Color.White;
     this.skinButtonNext.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonNext.IsStyled = true;
     this.skinButtonNext.Location = new Point(0x301, 0x260);
     this.skinButtonNext.Name = "skinButtonNext";
     this.skinButtonNext.Size = new Size(40, 0x16);
     this.skinButtonNext.SkinBasePath = @"Controls\Button\Next";
     base.ttDefault.SetSuperTip(this.skinButtonNext, null);
     this.skinButtonNext.TabIndex = 20;
     this.skinButtonNext.TabStop = true;
     this.skinButtonNext.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonNext.TextPadding = new Padding(0);
     this.skinButtonNext.Click += new EventHandler(this.skinButtonNext_Click);
     this.skinButtonLast.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonLast.AutoStyle = true;
     this.skinButtonLast.BackColor = Color.Black;
     this.skinButtonLast.ButtonState = 0;
     this.skinButtonLast.DialogResult = DialogResult.OK;
     this.skinButtonLast.DisabledForecolor = Color.Gray;
     this.skinButtonLast.DrawColor = Color.White;
     this.skinButtonLast.DrawEdges = false;
     this.skinButtonLast.FocusColor = Color.Yellow;
     this.skinButtonLast.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonLast.ForeColor = Color.White;
     this.skinButtonLast.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonLast.IsStyled = true;
     this.skinButtonLast.Location = new Point(0x31, 0x260);
     this.skinButtonLast.Name = "skinButtonLast";
     this.skinButtonLast.Size = new Size(40, 0x16);
     this.skinButtonLast.SkinBasePath = @"Controls\Button\Previous";
     base.ttDefault.SetSuperTip(this.skinButtonLast, null);
     this.skinButtonLast.TabIndex = 0x13;
     this.skinButtonLast.TabStop = true;
     this.skinButtonLast.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonLast.TextPadding = new Padding(0);
     this.skinButtonLast.Click += new EventHandler(this.skinButtonLast_Click);
     this.backLabelTitle.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.backLabelTitle.AutoStyle = false;
     this.backLabelTitle.BackColor = Color.Transparent;
     this.backLabelTitle.DrawEdges = true;
     this.backLabelTitle.Font = new Font("Arial", 20f, FontStyle.Bold);
     this.backLabelTitle.ForeColor = Color.White;
     this.backLabelTitle.HorizontalScalingMode = ScalingModes.Tile;
     this.backLabelTitle.IsStyled = false;
     this.backLabelTitle.Location = new Point(7, 0x3e);
     this.backLabelTitle.Name = "backLabelTitle";
     this.backLabelTitle.Size = new Size(0x34e, 0x3b);
     this.backLabelTitle.SkinBasePath = @"Controls\Background Label\Ladders";
     base.ttDefault.SetSuperTip(this.backLabelTitle, null);
     this.backLabelTitle.TabIndex = 0x18;
     this.backLabelTitle.Text = "<LOC>Ladder Ratings";
     this.backLabelTitle.TextAlign = ContentAlignment.MiddleLeft;
     this.backLabelTitle.TextPadding = new Padding(10, 0, 0, 0);
     this.gpgLabelDescription.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelDescription.AutoStyle = true;
     this.gpgLabelDescription.BackColor = Color.Transparent;
     this.gpgLabelDescription.Font = new Font("Arial", 9.75f);
     this.gpgLabelDescription.ForeColor = Color.White;
     this.gpgLabelDescription.IgnoreMouseWheel = false;
     this.gpgLabelDescription.IsStyled = false;
     this.gpgLabelDescription.Location = new Point(3, 0x59);
     this.gpgLabelDescription.Name = "gpgLabelDescription";
     this.gpgLabelDescription.Size = new Size(410, 0x23);
     base.ttDefault.SetSuperTip(this.gpgLabelDescription, null);
     this.gpgLabelDescription.TabIndex = 0x19;
     this.gpgLabelDescription.Text = "description";
     this.gpgLabelDescription.TextStyle = TextStyles.Default;
     this.skinGroupPanel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinGroupPanel1.AutoStyle = false;
     this.skinGroupPanel1.BackColor = Color.Black;
     this.skinGroupPanel1.Controls.Add(this.gpgLabel3);
     this.skinGroupPanel1.Controls.Add(this.gpgLabelRules);
     this.skinGroupPanel1.Controls.Add(this.gpgLabel4);
     this.skinGroupPanel1.Controls.Add(this.gpgLabel2);
     this.skinGroupPanel1.Controls.Add(this.gpgLabel1);
     this.skinGroupPanel1.Controls.Add(this.gpgLabelDescription);
     this.skinGroupPanel1.Controls.Add(this.gpgLabelType);
     this.skinGroupPanel1.Controls.Add(this.gpgLabelDates);
     this.skinGroupPanel1.CutCorner = true;
     this.skinGroupPanel1.Font = new Font("Verdana", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.skinGroupPanel1.HeaderImage = GroupPanelImages.blue_gradient;
     this.skinGroupPanel1.IsStyled = true;
     this.skinGroupPanel1.Location = new Point(13, 0x83);
     this.skinGroupPanel1.Margin = new Padding(4, 3, 4, 3);
     this.skinGroupPanel1.Name = "skinGroupPanel1";
     this.skinGroupPanel1.Size = new Size(0x340, 0x81);
     base.ttDefault.SetSuperTip(this.skinGroupPanel1, null);
     this.skinGroupPanel1.TabIndex = 0x1a;
     this.skinGroupPanel1.Text = "<LOC>Ladder Information";
     this.skinGroupPanel1.TextAlign = ContentAlignment.MiddleLeft;
     this.skinGroupPanel1.TextPadding = new Padding(4, 0, 0, 0);
     this.gpgLabel3.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel3.AutoStyle = true;
     this.gpgLabel3.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel3.Font = new Font("Arial", 9.75f);
     this.gpgLabel3.ForeColor = Color.White;
     this.gpgLabel3.IgnoreMouseWheel = false;
     this.gpgLabel3.IsStyled = false;
     this.gpgLabel3.Location = new Point(3, 0x43);
     this.gpgLabel3.Name = "gpgLabel3";
     this.gpgLabel3.Size = new Size(410, 0x12);
     base.ttDefault.SetSuperTip(this.gpgLabel3, null);
     this.gpgLabel3.TabIndex = 0x29;
     this.gpgLabel3.Text = "<LOC>Description";
     this.gpgLabel3.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel3.TextStyle = TextStyles.Default;
     this.gpgLabelRules.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabelRules.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelRules.AutoStyle = true;
     this.gpgLabelRules.BackColor = Color.Transparent;
     this.gpgLabelRules.Font = new Font("Arial", 9.75f);
     this.gpgLabelRules.ForeColor = Color.White;
     this.gpgLabelRules.IgnoreMouseWheel = false;
     this.gpgLabelRules.IsStyled = false;
     this.gpgLabelRules.Location = new Point(0x1ad, 0x2e);
     this.gpgLabelRules.Name = "gpgLabelRules";
     this.gpgLabelRules.Size = new Size(410, 0x43);
     base.ttDefault.SetSuperTip(this.gpgLabelRules, null);
     this.gpgLabelRules.TabIndex = 0x2b;
     this.gpgLabelRules.Text = "description";
     this.gpgLabelRules.TextStyle = TextStyles.Default;
     this.gpgLabel4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabel4.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel4.AutoStyle = true;
     this.gpgLabel4.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel4.Font = new Font("Arial", 9.75f);
     this.gpgLabel4.ForeColor = Color.White;
     this.gpgLabel4.IgnoreMouseWheel = false;
     this.gpgLabel4.IsStyled = false;
     this.gpgLabel4.Location = new Point(0x1ad, 0x18);
     this.gpgLabel4.Name = "gpgLabel4";
     this.gpgLabel4.Size = new Size(400, 0x12);
     base.ttDefault.SetSuperTip(this.gpgLabel4, null);
     this.gpgLabel4.TabIndex = 0x2a;
     this.gpgLabel4.Text = "<LOC>Rules and Criteria";
     this.gpgLabel4.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel4.TextStyle = TextStyles.Default;
     this.gpgLabel2.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel2.AutoStyle = true;
     this.gpgLabel2.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel2.Font = new Font("Arial", 9.75f);
     this.gpgLabel2.ForeColor = Color.White;
     this.gpgLabel2.IgnoreMouseWheel = false;
     this.gpgLabel2.IsStyled = false;
     this.gpgLabel2.Location = new Point(0xba, 0x18);
     this.gpgLabel2.Name = "gpgLabel2";
     this.gpgLabel2.Size = new Size(0xb3, 0x12);
     base.ttDefault.SetSuperTip(this.gpgLabel2, null);
     this.gpgLabel2.TabIndex = 40;
     this.gpgLabel2.Text = "<LOC>Season Dates";
     this.gpgLabel2.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel2.TextStyle = TextStyles.Default;
     this.gpgLabel1.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel1.Font = new Font("Arial", 9.75f);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(3, 0x18);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(410, 0x12);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 0x27;
     this.gpgLabel1.Text = "<LOC>Type";
     this.gpgLabel1.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel1.TextStyle = TextStyles.Default;
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x35a, 0x2ad);
     base.Controls.Add(this.skinGroupPanel1);
     base.Controls.Add(this.backLabelTitle);
     base.Controls.Add(this.gpgPanelLinkPages);
     base.Controls.Add(this.skinButtonEnd);
     base.Controls.Add(this.skinButtonStart);
     base.Controls.Add(this.skinButtonNext);
     base.Controls.Add(this.skinButtonLast);
     base.Controls.Add(this.gpgDataGridLadder);
     base.Controls.Add(this.msQuickButtons);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x1c8, 0x180);
     base.Name = "FrmLadderView";
     base.Opacity = 1.0;
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Ladder View";
     base.Controls.SetChildIndex(this.msQuickButtons, 0);
     base.Controls.SetChildIndex(this.gpgDataGridLadder, 0);
     base.Controls.SetChildIndex(this.skinButtonLast, 0);
     base.Controls.SetChildIndex(this.skinButtonNext, 0);
     base.Controls.SetChildIndex(this.skinButtonStart, 0);
     base.Controls.SetChildIndex(this.skinButtonEnd, 0);
     base.Controls.SetChildIndex(this.gpgPanelLinkPages, 0);
     base.Controls.SetChildIndex(this.backLabelTitle, 0);
     base.Controls.SetChildIndex(this.skinGroupPanel1, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.msQuickButtons.ResumeLayout(false);
     this.msQuickButtons.PerformLayout();
     this.gpgDataGridLadder.EndInit();
     this.gvLadder.EndInit();
     this.repositoryItemPictureEdit1.EndInit();
     this.repositoryItemPictureEdit2.EndInit();
     this.skinGroupPanel1.ResumeLayout(false);
     this.skinGroupPanel1.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 32
0
 private void InitializeComponent()
 {
     this.gpgAdhocGrid = new GPGChatGrid();
     this.gvAdhoc = new GridView();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.meQuery = new MemoEdit();
     this.btnExecute = new GPGButton();
     this.lStatus = new GPGLabel();
     this.btnSaveQuery = new GPGButton();
     this.btnExport = new GPGButton();
     this.btnImport = new GPGButton();
     this.btnGetDBSchema = new GPGButton();
     this.btnCreateForm = new GPGButton();
     this.gpgAdhocGrid.BeginInit();
     this.gvAdhoc.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.meQuery.Properties.BeginInit();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     this.gpgAdhocGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgAdhocGrid.CustomizeStyle = false;
     this.gpgAdhocGrid.EmbeddedNavigator.Name = "";
     this.gpgAdhocGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgAdhocGrid.IgnoreMouseWheel = false;
     this.gpgAdhocGrid.Location = new Point(12, 0x53);
     this.gpgAdhocGrid.LookAndFeel.SkinName = "Money Twins";
     this.gpgAdhocGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgAdhocGrid.MainView = this.gvAdhoc;
     this.gpgAdhocGrid.Name = "gpgAdhocGrid";
     this.gpgAdhocGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgAdhocGrid.ShowOnlyPredefinedDetails = true;
     this.gpgAdhocGrid.Size = new Size(700, 0xf2);
     this.gpgAdhocGrid.TabIndex = 11;
     this.gpgAdhocGrid.ViewCollection.AddRange(new BaseView[] { this.gvAdhoc });
     this.gvAdhoc.ActiveFilterString = "";
     this.gvAdhoc.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvAdhoc.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.Empty.BackColor = Color.Black;
     this.gvAdhoc.Appearance.Empty.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvAdhoc.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvAdhoc.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvAdhoc.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseFont = true;
     this.gvAdhoc.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvAdhoc.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.FocusedRow.Font = new Font("Arial", 9.75f);
     this.gvAdhoc.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupButton.BackColor = Color.Black;
     this.gvAdhoc.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.GroupButton.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvAdhoc.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvAdhoc.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.GroupPanel.BackColor2 = Color.Black;
     this.gvAdhoc.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvAdhoc.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvAdhoc.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.GroupRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.GroupRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gvAdhoc.Appearance.HeaderPanel.ForeColor = Color.Black;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvAdhoc.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvAdhoc.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.HorzLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Preview.BackColor = Color.White;
     this.gvAdhoc.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.Preview.ForeColor = Color.Purple;
     this.gvAdhoc.Appearance.Preview.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Preview.Options.UseFont = true;
     this.gvAdhoc.Appearance.Preview.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.Row.BackColor = Color.Black;
     this.gvAdhoc.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0xb2);
     this.gvAdhoc.Appearance.Row.ForeColor = Color.White;
     this.gvAdhoc.Appearance.Row.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.Row.Options.UseFont = true;
     this.gvAdhoc.Appearance.Row.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.RowSeparator.BackColor = Color.White;
     this.gvAdhoc.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvAdhoc.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvAdhoc.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvAdhoc.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvAdhoc.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvAdhoc.Appearance.TopNewRow.Options.UseFont = true;
     this.gvAdhoc.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvAdhoc.Appearance.VertLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvAdhoc.Appearance.VertLine.Options.UseBackColor = true;
     this.gvAdhoc.BorderStyle = BorderStyles.NoBorder;
     this.gvAdhoc.GridControl = this.gpgAdhocGrid;
     this.gvAdhoc.Name = "gvAdhoc";
     this.gvAdhoc.OptionsDetail.AllowZoomDetail = false;
     this.gvAdhoc.OptionsDetail.EnableMasterViewMode = false;
     this.gvAdhoc.OptionsDetail.ShowDetailTabs = false;
     this.gvAdhoc.OptionsDetail.SmartDetailExpand = false;
     this.gvAdhoc.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvAdhoc.OptionsSelection.MultiSelect = true;
     this.gvAdhoc.OptionsView.RowAutoHeight = true;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.meQuery.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.meQuery.EditValue = "show tables;";
     this.meQuery.Location = new Point(13, 0x14b);
     this.meQuery.Name = "meQuery";
     this.meQuery.Properties.Appearance.BackColor = Color.Black;
     this.meQuery.Properties.Appearance.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.meQuery.Properties.Appearance.ForeColor = Color.White;
     this.meQuery.Properties.Appearance.Options.UseBackColor = true;
     this.meQuery.Properties.Appearance.Options.UseFont = true;
     this.meQuery.Properties.Appearance.Options.UseForeColor = true;
     this.meQuery.Size = new Size(700, 0x66);
     this.meQuery.TabIndex = 12;
     this.meQuery.KeyUp += new KeyEventHandler(this.meQuery_KeyUp);
     this.btnExecute.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnExecute.Appearance.ForeColor = Color.Black;
     this.btnExecute.Appearance.Options.UseForeColor = true;
     this.btnExecute.Location = new Point(0x261, 0x1b7);
     this.btnExecute.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnExecute.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnExecute.Name = "btnExecute";
     this.btnExecute.Size = new Size(0x68, 0x17);
     this.btnExecute.TabIndex = 13;
     this.btnExecute.Text = "Execute";
     this.btnExecute.UseVisualStyleBackColor = true;
     this.btnExecute.Click += new EventHandler(this.btnExecute_Click);
     this.lStatus.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.lStatus.AutoStyle = true;
     this.lStatus.Font = new Font("Arial", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.lStatus.ForeColor = Color.White;
     this.lStatus.IgnoreMouseWheel = false;
     this.lStatus.IsStyled = false;
     this.lStatus.Location = new Point(0x19, 0x3b);
     this.lStatus.Name = "lStatus";
     this.lStatus.Size = new Size(0x2a2, 0x15);
     this.lStatus.TabIndex = 0x17;
     this.lStatus.Text = "Executing Query";
     this.lStatus.TextAlign = ContentAlignment.TopCenter;
     this.lStatus.TextStyle = TextStyles.Default;
     this.lStatus.Visible = false;
     this.btnSaveQuery.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnSaveQuery.Appearance.ForeColor = Color.Black;
     this.btnSaveQuery.Appearance.Options.UseForeColor = true;
     this.btnSaveQuery.Location = new Point(0x1f3, 0x1b7);
     this.btnSaveQuery.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnSaveQuery.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnSaveQuery.Name = "btnSaveQuery";
     this.btnSaveQuery.Size = new Size(0x68, 0x17);
     this.btnSaveQuery.TabIndex = 0x18;
     this.btnSaveQuery.Text = "Save Query";
     this.btnSaveQuery.UseVisualStyleBackColor = true;
     this.btnSaveQuery.Click += new EventHandler(this.btnSaveQuery_Click);
     this.btnExport.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnExport.Appearance.ForeColor = Color.Black;
     this.btnExport.Appearance.Options.UseForeColor = true;
     this.btnExport.Location = new Point(0x185, 0x1b7);
     this.btnExport.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnExport.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new Size(0x68, 0x17);
     this.btnExport.TabIndex = 0x19;
     this.btnExport.Text = "Export Results";
     this.btnExport.UseVisualStyleBackColor = true;
     this.btnExport.Click += new EventHandler(this.btnExport_Click);
     this.btnImport.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnImport.Appearance.ForeColor = Color.Black;
     this.btnImport.Appearance.Options.UseForeColor = true;
     this.btnImport.Location = new Point(0x117, 0x1b7);
     this.btnImport.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnImport.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnImport.Name = "btnImport";
     this.btnImport.Size = new Size(0x68, 0x17);
     this.btnImport.TabIndex = 0x1a;
     this.btnImport.Text = "Import Results";
     this.btnImport.UseVisualStyleBackColor = true;
     this.btnImport.Click += new EventHandler(this.btnImport_Click);
     this.btnGetDBSchema.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnGetDBSchema.Appearance.ForeColor = Color.Black;
     this.btnGetDBSchema.Appearance.Options.UseForeColor = true;
     this.btnGetDBSchema.Location = new Point(0xa9, 0x1b7);
     this.btnGetDBSchema.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnGetDBSchema.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnGetDBSchema.Name = "btnGetDBSchema";
     this.btnGetDBSchema.Size = new Size(0x68, 0x17);
     this.btnGetDBSchema.TabIndex = 0x1b;
     this.btnGetDBSchema.Text = "Get Schema";
     this.btnGetDBSchema.UseVisualStyleBackColor = true;
     this.btnGetDBSchema.Click += new EventHandler(this.btnGetDBSchema_Click);
     this.btnCreateForm.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnCreateForm.Appearance.ForeColor = Color.Black;
     this.btnCreateForm.Appearance.Options.UseForeColor = true;
     this.btnCreateForm.Location = new Point(0x3b, 0x1b7);
     this.btnCreateForm.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnCreateForm.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCreateForm.Name = "btnCreateForm";
     this.btnCreateForm.Size = new Size(0x68, 0x17);
     this.btnCreateForm.TabIndex = 0x1c;
     this.btnCreateForm.Text = "Create Form";
     this.btnCreateForm.UseVisualStyleBackColor = true;
     this.btnCreateForm.Click += new EventHandler(this.btnCreateForm_Click);
     base.AutoScaleMode = AutoScaleMode.None;
     base.ClientSize = new Size(0x2d4, 0x1fd);
     base.Controls.Add(this.btnCreateForm);
     base.Controls.Add(this.btnGetDBSchema);
     base.Controls.Add(this.btnImport);
     base.Controls.Add(this.btnExport);
     base.Controls.Add(this.btnSaveQuery);
     base.Controls.Add(this.btnExecute);
     base.Controls.Add(this.meQuery);
     base.Controls.Add(this.gpgAdhocGrid);
     base.Controls.Add(this.lStatus);
     base.Location = new Point(0, 0);
     base.Name = "DlgAdhocSQL";
     this.Text = "Adhoc SQL Query";
     base.Controls.SetChildIndex(this.lStatus, 0);
     base.Controls.SetChildIndex(this.gpgAdhocGrid, 0);
     base.Controls.SetChildIndex(this.meQuery, 0);
     base.Controls.SetChildIndex(this.btnExecute, 0);
     base.Controls.SetChildIndex(this.btnSaveQuery, 0);
     base.Controls.SetChildIndex(this.btnExport, 0);
     base.Controls.SetChildIndex(this.btnImport, 0);
     base.Controls.SetChildIndex(this.btnGetDBSchema, 0);
     base.Controls.SetChildIndex(this.btnCreateForm, 0);
     this.gpgAdhocGrid.EndInit();
     this.gvAdhoc.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.rimMemoEdit3.EndInit();
     this.meQuery.Properties.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 33
0
        private void InitializeComponent()
        {
            this.components = new Container();
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FormMain));

            this.panelControl1              = new PanelControl();
            this.panelControl5              = new PanelControl();
            this.labelControl2              = new LabelControl();
            this.labelControl1              = new LabelControl();
            this.panelControl3              = new PanelControl();
            this.labelControl6              = new LabelControl();
            this.labelControl5              = new LabelControl();
            this.ribbonControl1             = new RibbonControl();
            this.ribbonGalleryBarItem1      = new RibbonGalleryBarItem();
            this.barButtonItem1             = new BarButtonItem();
            this.barButtonItem2             = new BarButtonItem();
            this.ribbonPage1                = new RibbonPage();
            this.ribbonPageGroup1           = new RibbonPageGroup();
            this.ribbonPageGroup2           = new RibbonPageGroup();
            this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
            this.repositoryItemPictureEdit2 = new RepositoryItemPictureEdit();
            this.repositoryItemPictureEdit3 = new RepositoryItemPictureEdit();
            this.repositoryItemPictureEdit4 = new RepositoryItemPictureEdit();
            this.panelControl6              = new PanelControl();
            this.panelControl2              = new PanelControl();
            this.pictureEdit9               = new PictureEdit();
            this.panelControl4              = new PanelControl();
            this.simpleButton5              = new SimpleButton();
            this.simpleButton2              = new SimpleButton();
            this.textEdit1             = new TextEdit();
            this.simpleButton1         = new SimpleButton();
            this.simpleButton4         = new SimpleButton();
            this.simpleButton3         = new SimpleButton();
            this.imageCollection1      = new ImageCollection(this.components);
            this.timer1                = new System.Windows.Forms.Timer(this.components);
            this.navBarControl1        = new NavBarControl();
            this.navBarGroup1          = new NavBarGroup();
            this.navBarItem8           = new NavBarItem();
            this.navBarItem1           = new NavBarItem();
            this.navBarItem2           = new NavBarItem();
            this.navBarItem3           = new NavBarItem();
            this.navBarItem4           = new NavBarItem();
            this.navBarItem5           = new NavBarItem();
            this.navBarItem6           = new NavBarItem();
            this.navBarItem7           = new NavBarItem();
            this.xtraTabbedMdiManager1 = new XtraTabbedMdiManager(this.components);
            this.barManager1           = new BarManager(this.components);
            this.bar3                 = new Bar();
            this.barStaticItem1       = new BarStaticItem();
            this.barStaticItem2       = new BarStaticItem();
            this.barDockControlTop    = new BarDockControl();
            this.barDockControlBottom = new BarDockControl();
            this.barDockControlLeft   = new BarDockControl();
            this.barDockControlRight  = new BarDockControl();
            this.timer2               = new System.Windows.Forms.Timer(this.components);
            ((ISupportInitialize)this.panelControl1).BeginInit();
            this.panelControl1.SuspendLayout();
            ((ISupportInitialize)this.panelControl5).BeginInit();
            this.panelControl5.SuspendLayout();
            ((ISupportInitialize)this.panelControl3).BeginInit();
            this.panelControl3.SuspendLayout();
            ((ISupportInitialize)this.ribbonControl1).BeginInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit1).BeginInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit2).BeginInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit3).BeginInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit4).BeginInit();
            ((ISupportInitialize)this.panelControl6).BeginInit();
            this.panelControl6.SuspendLayout();
            ((ISupportInitialize)this.panelControl2).BeginInit();
            this.panelControl2.SuspendLayout();
            ((ISupportInitialize)this.pictureEdit9.Properties).BeginInit();
            ((ISupportInitialize)this.panelControl4).BeginInit();
            this.panelControl4.SuspendLayout();
            ((ISupportInitialize)this.textEdit1.Properties).BeginInit();
            ((ISupportInitialize)this.imageCollection1).BeginInit();
            ((ISupportInitialize)this.navBarControl1).BeginInit();
            ((ISupportInitialize)this.xtraTabbedMdiManager1).BeginInit();
            ((ISupportInitialize)this.barManager1).BeginInit();
            base.SuspendLayout();
            this.panelControl1.Controls.Add(this.panelControl5);
            this.panelControl1.Controls.Add(this.panelControl3);
            this.panelControl1.Controls.Add(this.ribbonControl1);
            this.panelControl1.Dock     = DockStyle.Top;
            this.panelControl1.Location = new Point(0, 0);
            this.panelControl1.Name     = "panelControl1";
            this.panelControl1.Size     = new Size(826, 99);
            this.panelControl1.TabIndex = 3;
            this.panelControl5.Anchor   = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right);
            this.panelControl5.Controls.Add(this.labelControl2);
            this.panelControl5.Controls.Add(this.labelControl1);
            this.panelControl5.Location = new Point(635, 6);
            this.panelControl5.Name     = "panelControl5";
            this.panelControl5.Size     = new Size(167, 88);
            this.panelControl5.TabIndex = 8;
            this.labelControl2.Anchor   = (AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
            this.labelControl2.Appearance.TextOptions.HAlignment = HorzAlignment.Near;
            this.labelControl2.Location = new Point(24, 55);
            this.labelControl2.Name     = "labelControl2";
            this.labelControl2.Size     = new Size(84, 14);
            this.labelControl2.TabIndex = 1;
            this.labelControl2.Text     = "发动机转速:无";
            this.labelControl1.Anchor   = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
            this.labelControl1.Location = new Point(22, 17);
            this.labelControl1.Name     = "labelControl1";
            this.labelControl1.Size     = new Size(120, 14);
            this.labelControl1.TabIndex = 0;
            this.labelControl1.Text     = "发动机冷却液温度:无";
            this.panelControl3.Anchor   = (AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right);
            this.panelControl3.Controls.Add(this.labelControl6);
            this.panelControl3.Controls.Add(this.labelControl5);
            this.panelControl3.Location             = new Point(319, 5);
            this.panelControl3.Name                 = "panelControl3";
            this.panelControl3.Size                 = new Size(225, 88);
            this.panelControl3.TabIndex             = 2;
            this.panelControl3.Resize              += new EventHandler(this.panelControl3_Resize);
            this.labelControl6.Appearance.Font      = new Font("Tahoma", 10.5f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.labelControl6.Location             = new Point(83, 34);
            this.labelControl6.Name                 = "labelControl6";
            this.labelControl6.Size                 = new Size(79, 17);
            this.labelControl6.TabIndex             = 1;
            this.labelControl6.Text                 = "labelControl6";
            this.labelControl5.Anchor               = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right);
            this.labelControl5.Appearance.Font      = new Font("Tahoma", 15f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.labelControl5.Appearance.ForeColor = Color.Orange;
            this.labelControl5.Appearance.TextOptions.HAlignment = HorzAlignment.Center;
            this.labelControl5.Appearance.TextOptions.VAlignment = VertAlignment.Center;
            this.labelControl5.Location                          = new Point(60, 5);
            this.labelControl5.Name                              = "labelControl5";
            this.labelControl5.Size                              = new Size(135, 24);
            this.labelControl5.TabIndex                          = 0;
            this.labelControl5.Text                              = "labelControl5";
            this.ribbonControl1.AllowKeyTips                     = false;
            this.ribbonControl1.AllowMdiChildButtons             = false;
            this.ribbonControl1.AllowMinimizeRibbon              = false;
            this.ribbonControl1.AllowTrimPageText                = false;
            this.ribbonControl1.ApplicationButtonDropDownControl = this.barDockControlRight;
            this.ribbonControl1.ExpandCollapseItem.Id            = 0;
            this.ribbonControl1.Items.AddRange(new BarItem[]
            {
                this.ribbonControl1.ExpandCollapseItem,
                this.ribbonGalleryBarItem1,
                this.barButtonItem1,
                this.barButtonItem2
            });
            this.ribbonControl1.Location  = new Point(2, 2);
            this.ribbonControl1.MaxItemId = 1;
            this.ribbonControl1.Name      = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new RibbonPage[]
            {
                this.ribbonPage1
            });
            this.ribbonControl1.RepositoryItems.AddRange(new RepositoryItem[]
            {
                this.repositoryItemPictureEdit1,
                this.repositoryItemPictureEdit2,
                this.repositoryItemPictureEdit3,
                this.repositoryItemPictureEdit4
            });
            this.ribbonControl1.RightToLeft              = RightToLeft.Yes;
            this.ribbonControl1.ShowCategoryInCaption    = false;
            this.ribbonControl1.ShowExpandCollapseButton = DefaultBoolean.False;
            this.ribbonControl1.ShowFullScreenButton     = DefaultBoolean.False;
            this.ribbonControl1.ShowPageHeadersMode      = ShowPageHeadersMode.Hide;
            this.ribbonControl1.ShowToolbarCustomizeItem = false;
            this.ribbonControl1.Size = new Size(822, 98);
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            this.ribbonControl1.ToolbarLocation           = RibbonQuickAccessToolbarLocation.Hidden;
            this.ribbonGalleryBarItem1.Caption            = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.CategoryGuid       = new Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.ribbonGalleryBarItem1.Gallery.ItemClick += new GalleryItemClickEventHandler(this.ribbonGalleryBarItem1_GalleryItemClick);
            this.ribbonGalleryBarItem1.Id                = 1;
            this.ribbonGalleryBarItem1.Name              = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.GalleryItemClick += new GalleryItemClickEventHandler(this.ribbonGalleryBarItem1_GalleryItemClick);
            this.barButtonItem1.Caption      = "最小化";
            this.barButtonItem1.CategoryGuid = new Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem1.Glyph        = (Image)componentResourceManager.GetObject("barButtonItem1.Glyph");
            this.barButtonItem1.Id           = 12;
            this.barButtonItem1.LargeGlyph   = (Image)componentResourceManager.GetObject("barButtonItem1.LargeGlyph");
            this.barButtonItem1.Name         = "barButtonItem1";
            this.barButtonItem1.ItemClick   += new ItemClickEventHandler(this.barButtonItem1_ItemClick);
            this.barButtonItem2.Caption      = "关闭";
            this.barButtonItem2.CategoryGuid = new Guid("6ffddb2b-9015-4d97-a4c1-91613e0ef537");
            this.barButtonItem2.Glyph        = (Image)componentResourceManager.GetObject("barButtonItem2.Glyph");
            this.barButtonItem2.Id           = 13;
            this.barButtonItem2.LargeGlyph   = (Image)componentResourceManager.GetObject("barButtonItem2.LargeGlyph");
            this.barButtonItem2.Name         = "barButtonItem2";
            this.barButtonItem2.ItemClick   += new ItemClickEventHandler(this.barButtonItem2_ItemClick);
            this.ribbonPage1.Groups.AddRange(new RibbonPageGroup[]
            {
                this.ribbonPageGroup1,
                this.ribbonPageGroup2
            });
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "ribbonPage1";
            this.ribbonPageGroup1.AllowTextClipping = false;
            this.ribbonPageGroup1.ItemLinks.Add(this.ribbonGalleryBarItem1);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text              = "换肤";
            this.ribbonPageGroup2.AllowMinimize     = false;
            this.ribbonPageGroup2.AllowTextClipping = false;
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem1);
            this.ribbonPageGroup2.ItemLinks.Add(this.barButtonItem2);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton          = false;
            this.repositoryItemPictureEdit1.Name             = "repositoryItemPictureEdit1";
            this.repositoryItemPictureEdit2.Name             = "repositoryItemPictureEdit2";
            this.repositoryItemPictureEdit3.Name             = "repositoryItemPictureEdit3";
            this.repositoryItemPictureEdit3.PictureAlignment = ContentAlignment.MiddleLeft;
            this.repositoryItemPictureEdit4.Name             = "repositoryItemPictureEdit4";
            this.panelControl6.Controls.Add(this.panelControl2);
            this.panelControl6.Controls.Add(this.panelControl4);
            this.panelControl6.Dock     = DockStyle.Bottom;
            this.panelControl6.Location = new Point(167, 189);
            this.panelControl6.Name     = "panelControl6";
            this.panelControl6.Size     = new Size(659, 391);
            this.panelControl6.TabIndex = 2;
            this.panelControl6.Visible  = false;
            this.panelControl2.Controls.Add(this.pictureEdit9);
            this.panelControl2.Dock               = DockStyle.Fill;
            this.panelControl2.Location           = new Point(2, 2);
            this.panelControl2.Name               = "panelControl2";
            this.panelControl2.Size               = new Size(655, 348);
            this.panelControl2.TabIndex           = 2;
            this.pictureEdit9.BackgroundImage     = (Image)componentResourceManager.GetObject("pictureEdit9.BackgroundImage");
            this.pictureEdit9.Dock                = DockStyle.Fill;
            this.pictureEdit9.Location            = new Point(2, 2);
            this.pictureEdit9.Name                = "pictureEdit9";
            this.pictureEdit9.Properties.ShowMenu = false;
            this.pictureEdit9.Properties.SizeMode = PictureSizeMode.Stretch;
            this.pictureEdit9.Size                = new Size(651, 344);
            this.pictureEdit9.TabIndex            = 0;
            this.panelControl4.Controls.Add(this.simpleButton5);
            this.panelControl4.Controls.Add(this.simpleButton2);
            this.panelControl4.Controls.Add(this.textEdit1);
            this.panelControl4.Controls.Add(this.simpleButton1);
            this.panelControl4.Controls.Add(this.simpleButton4);
            this.panelControl4.Controls.Add(this.simpleButton3);
            this.panelControl4.Dock           = DockStyle.Bottom;
            this.panelControl4.Location       = new Point(2, 350);
            this.panelControl4.Name           = "panelControl4";
            this.panelControl4.Size           = new Size(655, 39);
            this.panelControl4.TabIndex       = 1;
            this.simpleButton5.Anchor         = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left);
            this.simpleButton5.Enabled        = false;
            this.simpleButton5.Location       = new Point(81, 2);
            this.simpleButton5.Name           = "simpleButton5";
            this.simpleButton5.Size           = new Size(78, 35);
            this.simpleButton5.TabIndex       = 16;
            this.simpleButton5.Text           = "关闭仪表显示";
            this.simpleButton5.Visible        = false;
            this.simpleButton5.Click         += new EventHandler(this.simpleButton5_Click);
            this.simpleButton2.Dock           = DockStyle.Left;
            this.simpleButton2.Location       = new Point(2, 2);
            this.simpleButton2.Name           = "simpleButton2";
            this.simpleButton2.Size           = new Size(78, 35);
            this.simpleButton2.TabIndex       = 15;
            this.simpleButton2.Text           = "打开仪表显示";
            this.simpleButton2.Visible        = false;
            this.simpleButton2.Click         += new EventHandler(this.simpleButton2_Click);
            this.textEdit1.Location           = new Point(224, 1);
            this.textEdit1.MenuManager        = this.ribbonControl1;
            this.textEdit1.Name               = "textEdit1";
            this.textEdit1.Size               = new Size(90, 20);
            this.textEdit1.TabIndex           = 14;
            this.textEdit1.Visible            = false;
            this.simpleButton1.Location       = new Point(320, 0);
            this.simpleButton1.Name           = "simpleButton1";
            this.simpleButton1.Size           = new Size(86, 23);
            this.simpleButton1.TabIndex       = 13;
            this.simpleButton1.Text           = "定位(测试)";
            this.simpleButton1.Visible        = false;
            this.simpleButton1.Click         += new EventHandler(this.simpleButton1_Click);
            this.simpleButton4.Dock           = DockStyle.Right;
            this.simpleButton4.Enabled        = false;
            this.simpleButton4.Location       = new Point(570, 2);
            this.simpleButton4.Name           = "simpleButton4";
            this.simpleButton4.Size           = new Size(83, 35);
            this.simpleButton4.TabIndex       = 12;
            this.simpleButton4.Text           = "关闭检测显示";
            this.simpleButton4.Click         += new EventHandler(this.simpleButton4_Click);
            this.simpleButton3.Anchor         = (AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Right);
            this.simpleButton3.Location       = new Point(491, 2);
            this.simpleButton3.Name           = "simpleButton3";
            this.simpleButton3.Size           = new Size(78, 35);
            this.simpleButton3.TabIndex       = 11;
            this.simpleButton3.Text           = "打开检测显示";
            this.simpleButton3.Click         += new EventHandler(this.simpleButton3_Click);
            this.imageCollection1.ImageStream = (ImageCollectionStreamer)componentResourceManager.GetObject("imageCollection1.ImageStream");
            this.imageCollection1.Images.SetKeyName(0, "close.png");
            this.imageCollection1.Images.SetKeyName(1, "close-01.png");
            this.imageCollection1.Images.SetKeyName(2, "small.png");
            this.imageCollection1.Images.SetKeyName(3, "small-01.png");
            this.imageCollection1.Images.SetKeyName(4, "NoSchematic.png");
            this.timer1.Interval            = 1000;
            this.timer1.Tick               += new EventHandler(this.timer1_Tick);
            this.navBarControl1.ActiveGroup = this.navBarGroup1;
            this.navBarControl1.Dock        = DockStyle.Left;
            this.navBarControl1.Groups.AddRange(new NavBarGroup[]
            {
                this.navBarGroup1
            });
            this.navBarControl1.Items.AddRange(new NavBarItem[]
            {
                this.navBarItem1,
                this.navBarItem2,
                this.navBarItem3,
                this.navBarItem4,
                this.navBarItem5,
                this.navBarItem6,
                this.navBarItem7,
                this.navBarItem8
            });
            this.navBarControl1.Location = new Point(0, 99);
            this.navBarControl1.Name     = "navBarControl1";
            this.navBarControl1.OptionsNavPane.ExpandedWidth          = 167;
            this.navBarControl1.OptionsNavPane.ShowGroupImageInHeader = true;
            this.navBarControl1.OptionsNavPane.ShowOverflowButton     = false;
            this.navBarControl1.PaintStyleKind = NavBarViewKind.NavigationPane;
            this.navBarControl1.Size           = new Size(167, 481);
            this.navBarControl1.TabIndex       = 7;
            this.navBarControl1.Text           = " ";
            this.navBarGroup1.Caption          = "功能导航";
            this.navBarGroup1.Expanded         = true;
            this.navBarGroup1.GroupStyle       = NavBarGroupStyle.LargeIconsText;
            this.navBarGroup1.ItemLinks.AddRange(new NavBarItemLink[]
            {
                new NavBarItemLink(this.navBarItem8),
                new NavBarItemLink(this.navBarItem1),
                new NavBarItemLink(this.navBarItem2),
                new NavBarItemLink(this.navBarItem3),
                new NavBarItemLink(this.navBarItem4),
                new NavBarItemLink(this.navBarItem5),
                new NavBarItemLink(this.navBarItem6),
                new NavBarItemLink(this.navBarItem7)
            });
            this.navBarGroup1.LargeImage          = (Image)componentResourceManager.GetObject("navBarGroup1.LargeImage");
            this.navBarGroup1.Name                = "navBarGroup1";
            this.navBarGroup1.TopVisibleLinkIndex = 1;
            this.navBarItem8.Caption              = "模块信息";
            this.navBarItem8.LargeImage           = (Image)componentResourceManager.GetObject("navBarItem8.LargeImage");
            this.navBarItem8.Name                            = "navBarItem8";
            this.navBarItem8.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem8_LinkClicked);
            this.navBarItem1.Appearance.Image                = (Image)componentResourceManager.GetObject("navBarItem1.Appearance.Image");
            this.navBarItem1.Appearance.Options.UseImage     = true;
            this.navBarItem1.Caption                         = "历史数据";
            this.navBarItem1.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem1.LargeImage");
            this.navBarItem1.Name                            = "navBarItem1";
            this.navBarItem1.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem1_LinkClicked);
            this.navBarItem2.Caption                         = "实训考核";
            this.navBarItem2.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem2.LargeImage");
            this.navBarItem2.Name                            = "navBarItem2";
            this.navBarItem2.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem2_LinkClicked);
            this.navBarItem3.Caption                         = "波形监控";
            this.navBarItem3.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem3.LargeImage");
            this.navBarItem3.Name                            = "navBarItem3";
            this.navBarItem3.Visible                         = false;
            this.navBarItem3.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem3_LinkClicked);
            this.navBarItem4.Caption                         = "历史波形";
            this.navBarItem4.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem4.LargeImage");
            this.navBarItem4.Name                            = "navBarItem4";
            this.navBarItem4.Visible                         = false;
            this.navBarItem4.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem4_LinkClicked);
            this.navBarItem5.Caption                         = "资料共享";
            this.navBarItem5.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem5.LargeImage");
            this.navBarItem5.Name                            = "navBarItem5";
            this.navBarItem5.Visible                         = false;
            this.navBarItem5.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem5_LinkClicked);
            this.navBarItem6.Caption                         = "参数设置";
            this.navBarItem6.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem6.LargeImage");
            this.navBarItem6.Name                            = "navBarItem6";
            this.navBarItem6.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem6_LinkClicked);
            this.navBarItem7.Caption                         = "查看电路图";
            this.navBarItem7.LargeImage                      = (Image)componentResourceManager.GetObject("navBarItem7.LargeImage");
            this.navBarItem7.Name                            = "navBarItem7";
            this.navBarItem7.LinkClicked                    += new NavBarLinkEventHandler(this.navBarItem7_LinkClicked);
            this.xtraTabbedMdiManager1.HeaderButtons         = TabButtons.None;
            this.xtraTabbedMdiManager1.HeaderButtonsShowMode = TabButtonShowMode.Never;
            this.xtraTabbedMdiManager1.MdiParent             = this;
            this.barManager1.Bars.AddRange(new Bar[]
            {
                this.bar3
            });
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new BarItem[]
            {
                this.barStaticItem1,
                this.barStaticItem2
            });
            this.barManager1.MaxItemId = 2;
            this.barManager1.StatusBar = this.bar3;
            this.bar3.BarName          = "Status bar";
            this.bar3.CanDockStyle     = BarCanDockStyle.Bottom;
            this.bar3.DockCol          = 0;
            this.bar3.DockRow          = 0;
            this.bar3.DockStyle        = BarDockStyle.Bottom;
            this.bar3.LinksPersistInfo.AddRange(new LinkPersistInfo[]
            {
                new LinkPersistInfo(this.barStaticItem1),
                new LinkPersistInfo(this.barStaticItem2)
            });
            this.bar3.OptionsBar.AllowQuickCustomization = false;
            this.bar3.OptionsBar.DrawDragBorder          = false;
            this.bar3.OptionsBar.UseWholeRow             = true;
            this.bar3.Text = "Status bar";
            this.barStaticItem1.Caption                = "当前登录用户:";
            this.barStaticItem1.Id                     = 0;
            this.barStaticItem1.Name                   = "barStaticItem1";
            this.barStaticItem1.TextAlignment          = StringAlignment.Near;
            this.barStaticItem2.Alignment              = BarItemLinkAlignment.Right;
            this.barStaticItem2.Caption                = "系统时间:";
            this.barStaticItem2.Id                     = 1;
            this.barStaticItem2.Name                   = "barStaticItem2";
            this.barStaticItem2.TextAlignment          = StringAlignment.Near;
            this.barDockControlTop.CausesValidation    = false;
            this.barDockControlTop.Dock                = DockStyle.Top;
            this.barDockControlTop.Location            = new Point(0, 0);
            this.barDockControlTop.Size                = new Size(826, 0);
            this.barDockControlBottom.CausesValidation = false;
            this.barDockControlBottom.Dock             = DockStyle.Bottom;
            this.barDockControlBottom.Location         = new Point(0, 580);
            this.barDockControlBottom.Size             = new Size(826, 27);
            this.barDockControlLeft.CausesValidation   = false;
            this.barDockControlLeft.Dock               = DockStyle.Left;
            this.barDockControlLeft.Location           = new Point(0, 0);
            this.barDockControlLeft.Size               = new Size(0, 580);
            this.barDockControlRight.CausesValidation  = false;
            this.barDockControlRight.Dock              = DockStyle.Right;
            this.barDockControlRight.Location          = new Point(826, 0);
            this.barDockControlRight.Size              = new Size(0, 580);
            this.timer2.Interval     = 500;
            this.timer2.Tick        += new EventHandler(this.timer2_Tick);
            base.AutoScaleDimensions = new SizeF(7f, 14f);
            base.AutoScaleMode       = AutoScaleMode.Font;
            base.ClientSize          = new Size(826, 607);
            base.Controls.Add(this.panelControl6);
            base.Controls.Add(this.navBarControl1);
            base.Controls.Add(this.panelControl1);
            base.Controls.Add(this.barDockControlLeft);
            base.Controls.Add(this.barDockControlRight);
            base.Controls.Add(this.barDockControlBottom);
            base.Controls.Add(this.barDockControlTop);
            base.FormBorderStyle = FormBorderStyle.None;
            base.Icon            = (Icon)componentResourceManager.GetObject("$this.Icon");
            base.IsMdiContainer  = true;
            base.Name            = "FormMain";
            this.Text            = "整车设故考核系统";
            base.WindowState     = FormWindowState.Maximized;
            base.Load           += new EventHandler(this.FrmMain_Load);
            ((ISupportInitialize)this.panelControl1).EndInit();
            this.panelControl1.ResumeLayout(false);
            ((ISupportInitialize)this.panelControl5).EndInit();
            this.panelControl5.ResumeLayout(false);
            this.panelControl5.PerformLayout();
            ((ISupportInitialize)this.panelControl3).EndInit();
            this.panelControl3.ResumeLayout(false);
            this.panelControl3.PerformLayout();
            ((ISupportInitialize)this.ribbonControl1).EndInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit1).EndInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit2).EndInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit3).EndInit();
            ((ISupportInitialize)this.repositoryItemPictureEdit4).EndInit();
            ((ISupportInitialize)this.panelControl6).EndInit();
            this.panelControl6.ResumeLayout(false);
            ((ISupportInitialize)this.panelControl2).EndInit();
            this.panelControl2.ResumeLayout(false);
            ((ISupportInitialize)this.pictureEdit9.Properties).EndInit();
            ((ISupportInitialize)this.panelControl4).EndInit();
            this.panelControl4.ResumeLayout(false);
            ((ISupportInitialize)this.textEdit1.Properties).EndInit();
            ((ISupportInitialize)this.imageCollection1).EndInit();
            ((ISupportInitialize)this.navBarControl1).EndInit();
            ((ISupportInitialize)this.xtraTabbedMdiManager1).EndInit();
            ((ISupportInitialize)this.barManager1).EndInit();
            base.ResumeLayout(false);
        }
Exemplo n.º 34
0
 private void InitializeComponent()
 {
     GridLevelNode node = new GridLevelNode();
     this.gvFriend_Member = new GridView();
     this.gcFriend_Icon = new GridColumn();
     this.repositoryItemPictureEdit4 = new RepositoryItemPictureEdit();
     this.gcFriend_Text = new GridColumn();
     this.gpgGridFriends = new GPGChatGrid();
     this.gvFriend_Container = new GridView();
     this.gcFriend_Title = new GridColumn();
     this.gcFriend_Count = new GridColumn();
     this.repositoryItemTextEdit2 = new RepositoryItemTextEdit();
     this.splitContainer1 = new SplitContainer();
     this.splitContainer2 = new SplitContainer();
     this.gpgLinkLabelClan = new SkinLabel();
     this.gpgLabelName = new SkinLabel();
     this.pictureBoxClanIcon = new PictureBox();
     this.pictureBoxClanRank = new PictureBox();
     this.pictureBoxPlayerIcon = new PictureBox();
     this.gpgPanelStats = new GPGPanel();
     this.gpgPanel2 = new GPGPanel();
     this.gpgStatRow3 = new GPGStatRow();
     this.gpgStatRow2 = new GPGStatRow();
     this.gpgLabelDescription = new GPGLabel();
     this.gpgStatRow1 = new GPGStatRow();
     this.backLabelStats = new SkinLabel();
     this.gpgPanelEdit = new SplitContainer();
     this.skinButtonEdit = new SkinButton();
     this.skinButtonCancelEdit = new SkinButton();
     this.skinButtonSaveEdit = new SkinButton();
     this.gpgTextAreaDescription = new GPGTextArea();
     this.splitContainerFriends = new SplitContainer();
     this.backLabelFriends = new SkinLabel();
     this.gpgScrollPanelFriends = new GPGScrollPanel();
     this.skinButtonClose = new SkinButton();
     this.skinButtonNext = new SkinButton();
     this.skinButtonLast = new SkinButton();
     this.gpgContextMenuChat = new GPGContextMenu();
     this.ciChat_WhisperPlayer = new MenuItem();
     this.ciChat_WebStats = new MenuItem();
     this.ciChat_ViewPlayer = new MenuItem();
     this.ciChat_IgnorePlayer = new MenuItem();
     this.ciChat_UnignorePlayer = new MenuItem();
     this.menuItem10 = new MenuItem();
     this.ciChat_InviteFriend = new MenuItem();
     this.ciChat_RemoveFriend = new MenuItem();
     this.menuItem8 = new MenuItem();
     this.ciChat_InviteToClan = new MenuItem();
     this.ciChat_RequestClanInvite = new MenuItem();
     this.ciChat_ViewClan = new MenuItem();
     this.gvFriend_Member.BeginInit();
     this.repositoryItemPictureEdit4.BeginInit();
     this.gpgGridFriends.BeginInit();
     this.gvFriend_Container.BeginInit();
     this.repositoryItemTextEdit2.BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.gpgLabelName.SuspendLayout();
     ((ISupportInitialize) this.pictureBoxClanIcon).BeginInit();
     ((ISupportInitialize) this.pictureBoxClanRank).BeginInit();
     ((ISupportInitialize) this.pictureBoxPlayerIcon).BeginInit();
     this.gpgPanelStats.SuspendLayout();
     this.gpgPanel2.SuspendLayout();
     this.gpgPanelEdit.Panel1.SuspendLayout();
     this.gpgPanelEdit.Panel2.SuspendLayout();
     this.gpgPanelEdit.SuspendLayout();
     this.gpgTextAreaDescription.Properties.BeginInit();
     this.splitContainerFriends.Panel1.SuspendLayout();
     this.splitContainerFriends.Panel2.SuspendLayout();
     this.splitContainerFriends.SuspendLayout();
     this.gpgScrollPanelFriends.SuspendLayout();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gvFriend_Member.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvFriend_Member.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvFriend_Member.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvFriend_Member.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.Empty.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.Empty.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Member.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvFriend_Member.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Member.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvFriend_Member.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Member.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Member.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Member.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvFriend_Member.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FocusedCell.Options.UseFont = true;
     this.gvFriend_Member.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvFriend_Member.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvFriend_Member.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Member.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Member.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FocusedRow.Options.UseFont = true;
     this.gvFriend_Member.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvFriend_Member.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.FooterPanel.Options.UseFont = true;
     this.gvFriend_Member.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.GroupButton.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvFriend_Member.Appearance.GroupButton.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvFriend_Member.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvFriend_Member.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.GroupPanel.BackColor2 = Color.White;
     this.gvFriend_Member.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvFriend_Member.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.GroupPanel.Options.UseFont = true;
     this.gvFriend_Member.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvFriend_Member.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.GroupRow.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.GroupRow.Options.UseFont = true;
     this.gvFriend_Member.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvFriend_Member.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvFriend_Member.Appearance.HeaderPanel.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvFriend_Member.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvFriend_Member.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvFriend_Member.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Member.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvFriend_Member.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.HorzLine.BackColor = Color.Yellow;
     this.gvFriend_Member.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.Preview.BackColor = Color.White;
     this.gvFriend_Member.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.Preview.ForeColor = Color.Purple;
     this.gvFriend_Member.Appearance.Preview.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.Preview.Options.UseFont = true;
     this.gvFriend_Member.Appearance.Preview.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.Row.BackColor = Color.Black;
     this.gvFriend_Member.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Member.Appearance.Row.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.Row.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.Row.Options.UseFont = true;
     this.gvFriend_Member.Appearance.Row.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.RowSeparator.BackColor = Color.White;
     this.gvFriend_Member.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvFriend_Member.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvFriend_Member.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvFriend_Member.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Member.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Member.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvFriend_Member.Appearance.SelectedRow.Options.UseFont = true;
     this.gvFriend_Member.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Member.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvFriend_Member.Appearance.TopNewRow.Options.UseFont = true;
     this.gvFriend_Member.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvFriend_Member.Appearance.VertLine.BackColor = Color.Yellow;
     this.gvFriend_Member.Appearance.VertLine.Options.UseBackColor = true;
     this.gvFriend_Member.BorderStyle = BorderStyles.NoBorder;
     this.gvFriend_Member.Columns.AddRange(new GridColumn[] { this.gcFriend_Icon, this.gcFriend_Text });
     this.gvFriend_Member.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvFriend_Member.GridControl = this.gpgGridFriends;
     this.gvFriend_Member.HorzScrollVisibility = ScrollVisibility.Never;
     this.gvFriend_Member.LevelIndent = 0;
     this.gvFriend_Member.Name = "gvFriend_Member";
     this.gvFriend_Member.OptionsBehavior.SmartVertScrollBar = false;
     this.gvFriend_Member.OptionsLayout.Columns.AddNewColumns = false;
     this.gvFriend_Member.OptionsLayout.Columns.RemoveOldColumns = false;
     this.gvFriend_Member.OptionsLayout.Columns.StoreLayout = false;
     this.gvFriend_Member.OptionsLayout.StoreDataSettings = false;
     this.gvFriend_Member.OptionsLayout.StoreVisualOptions = false;
     this.gvFriend_Member.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvFriend_Member.OptionsView.ShowColumnHeaders = false;
     this.gvFriend_Member.OptionsView.ShowDetailButtons = false;
     this.gvFriend_Member.OptionsView.ShowGroupPanel = false;
     this.gvFriend_Member.OptionsView.ShowHorzLines = false;
     this.gvFriend_Member.OptionsView.ShowIndicator = false;
     this.gvFriend_Member.OptionsView.ShowPreviewLines = false;
     this.gvFriend_Member.OptionsView.ShowVertLines = false;
     this.gvFriend_Member.ScrollStyle = ScrollStyleFlags.None;
     this.gvFriend_Member.VertScrollVisibility = ScrollVisibility.Never;
     this.gvFriend_Member.RowCountChanged += new EventHandler(this.gvFriend_Member_RowCountChanged);
     this.gcFriend_Icon.Caption = "gcIcon";
     this.gcFriend_Icon.ColumnEdit = this.repositoryItemPictureEdit4;
     this.gcFriend_Icon.FieldName = "Icon";
     this.gcFriend_Icon.Name = "gcFriend_Icon";
     this.gcFriend_Icon.OptionsColumn.AllowEdit = false;
     this.gcFriend_Icon.OptionsColumn.AllowSize = false;
     this.gcFriend_Icon.OptionsColumn.FixedWidth = true;
     this.gcFriend_Icon.Visible = true;
     this.gcFriend_Icon.VisibleIndex = 0;
     this.gcFriend_Icon.Width = 40;
     this.repositoryItemPictureEdit4.Name = "repositoryItemPictureEdit4";
     this.repositoryItemPictureEdit4.SizeMode = PictureSizeMode.Stretch;
     this.gcFriend_Text.Caption = "gcText";
     this.gcFriend_Text.FieldName = "Text";
     this.gcFriend_Text.Name = "gcFriend_Text";
     this.gcFriend_Text.OptionsColumn.AllowEdit = false;
     this.gcFriend_Text.Visible = true;
     this.gcFriend_Text.VisibleIndex = 1;
     this.gpgGridFriends.CustomizeStyle = false;
     this.gpgGridFriends.Dock = DockStyle.Top;
     this.gpgGridFriends.EmbeddedNavigator.Name = "";
     this.gpgGridFriends.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgGridFriends.IgnoreMouseWheel = true;
     node.LevelTemplate = this.gvFriend_Member;
     node.RelationName = "Members";
     this.gpgGridFriends.LevelTree.Nodes.AddRange(new GridLevelNode[] { node });
     this.gpgGridFriends.Location = new Point(0, 0);
     this.gpgGridFriends.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgGridFriends.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgGridFriends.MainView = this.gvFriend_Container;
     this.gpgGridFriends.Name = "gpgGridFriends";
     this.gpgGridFriends.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemPictureEdit4, this.repositoryItemTextEdit2 });
     this.gpgGridFriends.ShowOnlyPredefinedDetails = true;
     this.gpgGridFriends.Size = new Size(0xbc, 0x105);
     this.gpgGridFriends.TabIndex = 5;
     this.gpgGridFriends.ViewCollection.AddRange(new BaseView[] { this.gvFriend_Container, this.gvFriend_Member });
     this.gvFriend_Container.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvFriend_Container.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvFriend_Container.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvFriend_Container.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.Empty.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.Empty.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Container.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvFriend_Container.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Container.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvFriend_Container.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Container.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Container.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Container.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvFriend_Container.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FocusedCell.Options.UseFont = true;
     this.gvFriend_Container.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvFriend_Container.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvFriend_Container.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Container.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Container.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FocusedRow.Options.UseFont = true;
     this.gvFriend_Container.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvFriend_Container.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.FooterPanel.Options.UseFont = true;
     this.gvFriend_Container.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.GroupButton.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvFriend_Container.Appearance.GroupButton.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvFriend_Container.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvFriend_Container.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.GroupPanel.BackColor2 = Color.White;
     this.gvFriend_Container.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvFriend_Container.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.GroupPanel.Options.UseFont = true;
     this.gvFriend_Container.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvFriend_Container.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.GroupRow.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.GroupRow.Options.UseFont = true;
     this.gvFriend_Container.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvFriend_Container.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvFriend_Container.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvFriend_Container.Appearance.HeaderPanel.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvFriend_Container.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvFriend_Container.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvFriend_Container.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvFriend_Container.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvFriend_Container.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.HorzLine.BackColor = Color.Yellow;
     this.gvFriend_Container.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.Preview.BackColor = Color.White;
     this.gvFriend_Container.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.Preview.ForeColor = Color.Purple;
     this.gvFriend_Container.Appearance.Preview.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.Preview.Options.UseFont = true;
     this.gvFriend_Container.Appearance.Preview.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.Row.BackColor = Color.FromArgb(0x10, 0x21, 80);
     this.gvFriend_Container.Appearance.Row.BackColor2 = Color.FromArgb(6, 0x10, 0x29);
     this.gvFriend_Container.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Container.Appearance.Row.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.Row.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Container.Appearance.Row.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.Row.Options.UseFont = true;
     this.gvFriend_Container.Appearance.Row.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.RowSeparator.BackColor = Color.White;
     this.gvFriend_Container.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvFriend_Container.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvFriend_Container.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvFriend_Container.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvFriend_Container.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvFriend_Container.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvFriend_Container.Appearance.SelectedRow.Options.UseFont = true;
     this.gvFriend_Container.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvFriend_Container.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvFriend_Container.Appearance.TopNewRow.Options.UseFont = true;
     this.gvFriend_Container.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvFriend_Container.Appearance.VertLine.BackColor = Color.Yellow;
     this.gvFriend_Container.Appearance.VertLine.Options.UseBackColor = true;
     this.gvFriend_Container.BorderStyle = BorderStyles.NoBorder;
     this.gvFriend_Container.Columns.AddRange(new GridColumn[] { this.gcFriend_Title, this.gcFriend_Count, this.gcFriend_Title, this.gcFriend_Count });
     this.gvFriend_Container.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvFriend_Container.GridControl = this.gpgGridFriends;
     this.gvFriend_Container.HorzScrollVisibility = ScrollVisibility.Never;
     this.gvFriend_Container.LevelIndent = 0;
     this.gvFriend_Container.Name = "gvFriend_Container";
     this.gvFriend_Container.OptionsBehavior.SmartVertScrollBar = false;
     this.gvFriend_Container.OptionsCustomization.AllowGroup = false;
     this.gvFriend_Container.OptionsCustomization.AllowRowSizing = true;
     this.gvFriend_Container.OptionsDetail.ShowDetailTabs = false;
     this.gvFriend_Container.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvFriend_Container.OptionsView.ShowChildrenInGroupPanel = true;
     this.gvFriend_Container.OptionsView.ShowColumnHeaders = false;
     this.gvFriend_Container.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvFriend_Container.OptionsView.ShowGroupPanel = false;
     this.gvFriend_Container.OptionsView.ShowHorzLines = false;
     this.gvFriend_Container.OptionsView.ShowIndicator = false;
     this.gvFriend_Container.OptionsView.ShowVertLines = false;
     this.gvFriend_Container.ScrollStyle = ScrollStyleFlags.None;
     this.gvFriend_Container.VertScrollVisibility = ScrollVisibility.Never;
     this.gvFriend_Container.RowCountChanged += new EventHandler(this.gvFriend_Container_RowCountChanged);
     this.gcFriend_Title.Caption = "gcTitle";
     this.gcFriend_Title.FieldName = "Title";
     this.gcFriend_Title.Name = "gcFriend_Title";
     this.gcFriend_Title.OptionsColumn.AllowEdit = false;
     this.gcFriend_Title.Visible = true;
     this.gcFriend_Title.VisibleIndex = 1;
     this.gcFriend_Count.Caption = "gcCount";
     this.gcFriend_Count.FieldName = "Count";
     this.gcFriend_Count.Name = "gcFriend_Count";
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.splitContainer1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainer1.FixedPanel = FixedPanel.Panel2;
     this.splitContainer1.Location = new Point(12, 0x53);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
     base.ttDefault.SetSuperTip(this.splitContainer1.Panel1, null);
     this.splitContainer1.Panel2.Controls.Add(this.splitContainerFriends);
     base.ttDefault.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new Size(0x22f, 0x11f);
     this.splitContainer1.SplitterDistance = 0x16f;
     base.ttDefault.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 4;
     this.splitContainer2.Dock = DockStyle.Fill;
     this.splitContainer2.FixedPanel = FixedPanel.Panel1;
     this.splitContainer2.Location = new Point(0, 0);
     this.splitContainer2.Margin = new Padding(0);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = Orientation.Horizontal;
     this.splitContainer2.Panel1.Controls.Add(this.gpgLinkLabelClan);
     this.splitContainer2.Panel1.Controls.Add(this.gpgLabelName);
     base.ttDefault.SetSuperTip(this.splitContainer2.Panel1, null);
     this.splitContainer2.Panel2.AutoScroll = true;
     this.splitContainer2.Panel2.Controls.Add(this.gpgPanelStats);
     this.splitContainer2.Panel2.Controls.Add(this.gpgPanelEdit);
     base.ttDefault.SetSuperTip(this.splitContainer2.Panel2, null);
     this.splitContainer2.Size = new Size(0x16f, 0x11f);
     this.splitContainer2.SplitterDistance = 0x19;
     this.splitContainer2.SplitterWidth = 1;
     base.ttDefault.SetSuperTip(this.splitContainer2, null);
     this.splitContainer2.TabIndex = 4;
     this.gpgLinkLabelClan.AutoStyle = false;
     this.gpgLinkLabelClan.BackColor = Color.Black;
     this.gpgLinkLabelClan.Cursor = Cursors.Hand;
     this.gpgLinkLabelClan.DrawEdges = false;
     this.gpgLinkLabelClan.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.gpgLinkLabelClan.ForeColor = Color.Red;
     this.gpgLinkLabelClan.HorizontalScalingMode = ScalingModes.Tile;
     this.gpgLinkLabelClan.IsStyled = false;
     this.gpgLinkLabelClan.Location = new Point(0x33, 0);
     this.gpgLinkLabelClan.Margin = new Padding(0);
     this.gpgLinkLabelClan.Name = "gpgLinkLabelClan";
     this.gpgLinkLabelClan.Size = new Size(0x2f, 20);
     this.gpgLinkLabelClan.SkinBasePath = @"Controls\Background Label\Rectangle";
     base.ttDefault.SetSuperTip(this.gpgLinkLabelClan, null);
     this.gpgLinkLabelClan.TabIndex = 10;
     this.gpgLinkLabelClan.Text = "WWW";
     this.gpgLinkLabelClan.TextAlign = ContentAlignment.TopCenter;
     this.gpgLinkLabelClan.TextPadding = new Padding(0);
     this.gpgLinkLabelClan.Click += new EventHandler(this.gpgLinkLabelClan_Click);
     this.gpgLabelName.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabelName.AutoStyle = false;
     this.gpgLabelName.BackColor = Color.Black;
     this.gpgLabelName.Controls.Add(this.pictureBoxClanIcon);
     this.gpgLabelName.Controls.Add(this.pictureBoxClanRank);
     this.gpgLabelName.Controls.Add(this.pictureBoxPlayerIcon);
     this.gpgLabelName.DrawEdges = true;
     this.gpgLabelName.Font = new Font("Arial", 12f, FontStyle.Bold);
     this.gpgLabelName.ForeColor = Color.White;
     this.gpgLabelName.HorizontalScalingMode = ScalingModes.Tile;
     this.gpgLabelName.IsStyled = false;
     this.gpgLabelName.Location = new Point(0, 0);
     this.gpgLabelName.Name = "gpgLabelName";
     this.gpgLabelName.Size = new Size(350, 20);
     this.gpgLabelName.SkinBasePath = @"Controls\Background Label\Rectangle";
     base.ttDefault.SetSuperTip(this.gpgLabelName, null);
     this.gpgLabelName.TabIndex = 5;
     this.gpgLabelName.Text = "Test";
     this.gpgLabelName.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabelName.TextPadding = new Padding(0);
     this.gpgLabelName.DoubleClick += new EventHandler(this.gpgLabelName_DoubleClick);
     this.gpgLabelName.MouseUp += new MouseEventHandler(this.gpgLabelName_MouseUp);
     this.pictureBoxClanIcon.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pictureBoxClanIcon.Location = new Point(0x108, 0);
     this.pictureBoxClanIcon.Name = "pictureBoxClanIcon";
     this.pictureBoxClanIcon.Size = new Size(40, 20);
     this.pictureBoxClanIcon.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pictureBoxClanIcon, null);
     this.pictureBoxClanIcon.TabIndex = 12;
     this.pictureBoxClanIcon.TabStop = false;
     this.pictureBoxClanRank.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pictureBoxClanRank.Location = new Point(310, 0);
     this.pictureBoxClanRank.Name = "pictureBoxClanRank";
     this.pictureBoxClanRank.Size = new Size(40, 20);
     this.pictureBoxClanRank.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pictureBoxClanRank, null);
     this.pictureBoxClanRank.TabIndex = 11;
     this.pictureBoxClanRank.TabStop = false;
     this.pictureBoxPlayerIcon.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pictureBoxPlayerIcon.Location = new Point(0xd9, 0);
     this.pictureBoxPlayerIcon.Name = "pictureBoxPlayerIcon";
     this.pictureBoxPlayerIcon.Size = new Size(40, 20);
     this.pictureBoxPlayerIcon.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pictureBoxPlayerIcon, null);
     this.pictureBoxPlayerIcon.TabIndex = 9;
     this.pictureBoxPlayerIcon.TabStop = false;
     this.gpgPanelStats.AutoScroll = true;
     this.gpgPanelStats.Controls.Add(this.gpgPanel2);
     this.gpgPanelStats.Dock = DockStyle.Fill;
     this.gpgPanelStats.Location = new Point(0, 150);
     this.gpgPanelStats.Name = "gpgPanelStats";
     this.gpgPanelStats.Size = new Size(0x16f, 0x6f);
     base.ttDefault.SetSuperTip(this.gpgPanelStats, null);
     this.gpgPanelStats.TabIndex = 6;
     this.gpgPanel2.AutoScroll = true;
     this.gpgPanel2.Controls.Add(this.gpgStatRow3);
     this.gpgPanel2.Controls.Add(this.gpgStatRow2);
     this.gpgPanel2.Controls.Add(this.gpgLabelDescription);
     this.gpgPanel2.Controls.Add(this.gpgStatRow1);
     this.gpgPanel2.Controls.Add(this.backLabelStats);
     this.gpgPanel2.Dock = DockStyle.Fill;
     this.gpgPanel2.Location = new Point(0, 0);
     this.gpgPanel2.Name = "gpgPanel2";
     this.gpgPanel2.Size = new Size(0x16f, 0x6f);
     base.ttDefault.SetSuperTip(this.gpgPanel2, null);
     this.gpgPanel2.TabIndex = 10;
     this.gpgStatRow3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgStatRow3.DataBackColor = Color.Black;
     this.gpgStatRow3.DataForeColor = Color.Yellow;
     this.gpgStatRow3.DesignerItemCount = 3;
     this.gpgStatRow3.HeaderBackColor = Color.Gray;
     this.gpgStatRow3.HeaderForeColor = Color.White;
     this.gpgStatRow3.Location = new Point(0, 0x9a);
     this.gpgStatRow3.Margin = new Padding(0);
     this.gpgStatRow3.Name = "gpgStatRow3";
     this.gpgStatRow3.Size = new Size(0x12b, 0x43);
     base.ttDefault.SetSuperTip(this.gpgStatRow3, null);
     this.gpgStatRow3.TabIndex = 10;
     this.gpgStatRow3.Text = "gpgStatRow3";
     this.gpgStatRow2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgStatRow2.DataBackColor = Color.Black;
     this.gpgStatRow2.DataForeColor = Color.Yellow;
     this.gpgStatRow2.DesignerItemCount = 3;
     this.gpgStatRow2.HeaderBackColor = Color.Gray;
     this.gpgStatRow2.HeaderForeColor = Color.White;
     this.gpgStatRow2.Location = new Point(0, 0x68);
     this.gpgStatRow2.Margin = new Padding(0);
     this.gpgStatRow2.Name = "gpgStatRow2";
     this.gpgStatRow2.Size = new Size(0x12b, 50);
     base.ttDefault.SetSuperTip(this.gpgStatRow2, null);
     this.gpgStatRow2.TabIndex = 9;
     this.gpgStatRow2.Text = "gpgStatRow2";
     this.gpgLabelDescription.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabelDescription.AutoStyle = true;
     this.gpgLabelDescription.Font = new Font("Arial", 9.75f);
     this.gpgLabelDescription.ForeColor = Color.White;
     this.gpgLabelDescription.IgnoreMouseWheel = false;
     this.gpgLabelDescription.IsStyled = false;
     this.gpgLabelDescription.Location = new Point(-3, 0);
     this.gpgLabelDescription.Name = "gpgLabelDescription";
     this.gpgLabelDescription.Size = new Size(0x12e, 0x18);
     base.ttDefault.SetSuperTip(this.gpgLabelDescription, null);
     this.gpgLabelDescription.TabIndex = 5;
     this.gpgLabelDescription.Text = "(no description)";
     this.gpgLabelDescription.TextStyle = TextStyles.Default;
     this.gpgLabelDescription.VisibleChanged += new EventHandler(this.gpgLabelDescription_VisibleChanged);
     this.gpgLabelDescription.TextChanged += new EventHandler(this.gpgLabelDescription_TextChanged);
     this.gpgStatRow1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgStatRow1.DataBackColor = Color.Black;
     this.gpgStatRow1.DataForeColor = Color.Yellow;
     this.gpgStatRow1.DesignerItemCount = 3;
     this.gpgStatRow1.HeaderBackColor = Color.Gray;
     this.gpgStatRow1.HeaderForeColor = Color.White;
     this.gpgStatRow1.Location = new Point(0, 0x2c);
     this.gpgStatRow1.Margin = new Padding(0);
     this.gpgStatRow1.Name = "gpgStatRow1";
     this.gpgStatRow1.Size = new Size(0x12b, 60);
     base.ttDefault.SetSuperTip(this.gpgStatRow1, null);
     this.gpgStatRow1.TabIndex = 7;
     this.gpgStatRow1.Text = "gpgStatRow1";
     this.backLabelStats.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.backLabelStats.AutoStyle = false;
     this.backLabelStats.BackColor = Color.Transparent;
     this.backLabelStats.DrawEdges = true;
     this.backLabelStats.Font = new Font("Arial", 12f, FontStyle.Bold);
     this.backLabelStats.ForeColor = Color.White;
     this.backLabelStats.HorizontalScalingMode = ScalingModes.Tile;
     this.backLabelStats.IsStyled = false;
     this.backLabelStats.Location = new Point(0, 0x18);
     this.backLabelStats.Margin = new Padding(0);
     this.backLabelStats.Name = "backLabelStats";
     this.backLabelStats.Size = new Size(0x12b, 20);
     this.backLabelStats.SkinBasePath = @"Controls\Background Label\Rectangle";
     base.ttDefault.SetSuperTip(this.backLabelStats, null);
     this.backLabelStats.TabIndex = 6;
     this.backLabelStats.Text = "<LOC>Statistics";
     this.backLabelStats.TextAlign = ContentAlignment.MiddleLeft;
     this.backLabelStats.TextPadding = new Padding(0);
     this.gpgPanelEdit.Dock = DockStyle.Top;
     this.gpgPanelEdit.FixedPanel = FixedPanel.Panel1;
     this.gpgPanelEdit.IsSplitterFixed = true;
     this.gpgPanelEdit.Location = new Point(0, 0);
     this.gpgPanelEdit.Name = "gpgPanelEdit";
     this.gpgPanelEdit.Orientation = Orientation.Horizontal;
     this.gpgPanelEdit.Panel1.Controls.Add(this.skinButtonEdit);
     this.gpgPanelEdit.Panel1.Controls.Add(this.skinButtonCancelEdit);
     this.gpgPanelEdit.Panel1.Controls.Add(this.skinButtonSaveEdit);
     base.ttDefault.SetSuperTip(this.gpgPanelEdit.Panel1, null);
     this.gpgPanelEdit.Panel2.Controls.Add(this.gpgTextAreaDescription);
     base.ttDefault.SetSuperTip(this.gpgPanelEdit.Panel2, null);
     this.gpgPanelEdit.Size = new Size(0x16f, 150);
     this.gpgPanelEdit.SplitterDistance = 0x19;
     base.ttDefault.SetSuperTip(this.gpgPanelEdit, null);
     this.gpgPanelEdit.TabIndex = 15;
     this.skinButtonEdit.AutoStyle = true;
     this.skinButtonEdit.BackColor = Color.Black;
     this.skinButtonEdit.DialogResult = DialogResult.OK;
     this.skinButtonEdit.DisabledForecolor = Color.Gray;
     this.skinButtonEdit.DrawEdges = true;
     this.skinButtonEdit.FocusColor = Color.Yellow;
     this.skinButtonEdit.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonEdit.ForeColor = Color.White;
     this.skinButtonEdit.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonEdit.IsStyled = true;
     this.skinButtonEdit.Location = new Point(3, 3);
     this.skinButtonEdit.Name = "skinButtonEdit";
     this.skinButtonEdit.Size = new Size(0x51, 20);
     this.skinButtonEdit.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonEdit, null);
     this.skinButtonEdit.TabIndex = 10;
     this.skinButtonEdit.Text = "<LOC>Edit";
     this.skinButtonEdit.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonEdit.TextPadding = new Padding(0);
     this.skinButtonEdit.Click += new EventHandler(this.skinButtonEdit_Click);
     this.skinButtonCancelEdit.AutoStyle = true;
     this.skinButtonCancelEdit.BackColor = Color.Black;
     this.skinButtonCancelEdit.DialogResult = DialogResult.OK;
     this.skinButtonCancelEdit.DisabledForecolor = Color.Gray;
     this.skinButtonCancelEdit.DrawEdges = true;
     this.skinButtonCancelEdit.FocusColor = Color.Yellow;
     this.skinButtonCancelEdit.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonCancelEdit.ForeColor = Color.White;
     this.skinButtonCancelEdit.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonCancelEdit.IsStyled = true;
     this.skinButtonCancelEdit.Location = new Point(90, 3);
     this.skinButtonCancelEdit.Name = "skinButtonCancelEdit";
     this.skinButtonCancelEdit.Size = new Size(0x51, 20);
     this.skinButtonCancelEdit.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonCancelEdit, null);
     this.skinButtonCancelEdit.TabIndex = 14;
     this.skinButtonCancelEdit.Text = "<LOC>Cancel";
     this.skinButtonCancelEdit.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonCancelEdit.TextPadding = new Padding(0);
     this.skinButtonCancelEdit.Visible = false;
     this.skinButtonCancelEdit.Click += new EventHandler(this.skinButtonCancelEdit_Click);
     this.skinButtonSaveEdit.AutoStyle = true;
     this.skinButtonSaveEdit.BackColor = Color.Black;
     this.skinButtonSaveEdit.DialogResult = DialogResult.OK;
     this.skinButtonSaveEdit.DisabledForecolor = Color.Gray;
     this.skinButtonSaveEdit.DrawEdges = true;
     this.skinButtonSaveEdit.FocusColor = Color.Yellow;
     this.skinButtonSaveEdit.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSaveEdit.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSaveEdit.IsStyled = true;
     this.skinButtonSaveEdit.Location = new Point(3, 3);
     this.skinButtonSaveEdit.Name = "skinButtonSaveEdit";
     this.skinButtonSaveEdit.Size = new Size(0x51, 20);
     this.skinButtonSaveEdit.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonSaveEdit, null);
     this.skinButtonSaveEdit.TabIndex = 13;
     this.skinButtonSaveEdit.Text = "<LOC>Save";
     this.skinButtonSaveEdit.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSaveEdit.TextPadding = new Padding(0);
     this.skinButtonSaveEdit.Visible = false;
     this.skinButtonSaveEdit.Click += new EventHandler(this.skinButtonSaveEdit_Click);
     this.gpgTextAreaDescription.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgTextAreaDescription.Location = new Point(0, 0);
     this.gpgTextAreaDescription.Margin = new Padding(0);
     this.gpgTextAreaDescription.Name = "gpgTextAreaDescription";
     this.gpgTextAreaDescription.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextAreaDescription.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextAreaDescription.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextAreaDescription.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextAreaDescription.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextAreaDescription.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextAreaDescription.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextAreaDescription.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextAreaDescription.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextAreaDescription.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextAreaDescription.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextAreaDescription.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextAreaDescription.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextAreaDescription.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextAreaDescription.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextAreaDescription.Size = new Size(350, 0x79);
     this.gpgTextAreaDescription.TabIndex = 3;
     this.gpgTextAreaDescription.Visible = false;
     this.gpgTextAreaDescription.KeyDown += new KeyEventHandler(this.gpgTextAreaDescription_KeyDown);
     this.splitContainerFriends.Dock = DockStyle.Fill;
     this.splitContainerFriends.FixedPanel = FixedPanel.Panel1;
     this.splitContainerFriends.IsSplitterFixed = true;
     this.splitContainerFriends.Location = new Point(0, 0);
     this.splitContainerFriends.Margin = new Padding(3, 0, 0, 0);
     this.splitContainerFriends.Name = "splitContainerFriends";
     this.splitContainerFriends.Orientation = Orientation.Horizontal;
     this.splitContainerFriends.Panel1.Controls.Add(this.backLabelFriends);
     base.ttDefault.SetSuperTip(this.splitContainerFriends.Panel1, null);
     this.splitContainerFriends.Panel2.Controls.Add(this.gpgScrollPanelFriends);
     base.ttDefault.SetSuperTip(this.splitContainerFriends.Panel2, null);
     this.splitContainerFriends.Size = new Size(0xbc, 0x11f);
     this.splitContainerFriends.SplitterDistance = 0x19;
     this.splitContainerFriends.SplitterWidth = 1;
     base.ttDefault.SetSuperTip(this.splitContainerFriends, null);
     this.splitContainerFriends.TabIndex = 0;
     this.backLabelFriends.AutoStyle = false;
     this.backLabelFriends.BackColor = Color.Transparent;
     this.backLabelFriends.Dock = DockStyle.Top;
     this.backLabelFriends.DrawEdges = true;
     this.backLabelFriends.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.backLabelFriends.ForeColor = Color.White;
     this.backLabelFriends.HorizontalScalingMode = ScalingModes.Tile;
     this.backLabelFriends.IsStyled = false;
     this.backLabelFriends.Location = new Point(0, 0);
     this.backLabelFriends.Margin = new Padding(0);
     this.backLabelFriends.Name = "backLabelFriends";
     this.backLabelFriends.Size = new Size(0xbc, 20);
     this.backLabelFriends.SkinBasePath = @"Controls\Background Label\Round Top";
     base.ttDefault.SetSuperTip(this.backLabelFriends, null);
     this.backLabelFriends.TabIndex = 0;
     this.backLabelFriends.Text = "<LOC>Friends";
     this.backLabelFriends.TextAlign = ContentAlignment.BottomCenter;
     this.backLabelFriends.TextPadding = new Padding(0);
     this.gpgScrollPanelFriends.AutoScroll = true;
     this.gpgScrollPanelFriends.BackColor = Color.Black;
     this.gpgScrollPanelFriends.ChildControl = this.gpgGridFriends;
     this.gpgScrollPanelFriends.Controls.Add(this.gpgGridFriends);
     this.gpgScrollPanelFriends.Dock = DockStyle.Fill;
     this.gpgScrollPanelFriends.Location = new Point(0, 0);
     this.gpgScrollPanelFriends.Name = "gpgScrollPanelFriends";
     this.gpgScrollPanelFriends.Size = new Size(0xbc, 0x105);
     base.ttDefault.SetSuperTip(this.gpgScrollPanelFriends, null);
     this.gpgScrollPanelFriends.TabIndex = 6;
     this.skinButtonClose.Anchor = AnchorStyles.Bottom;
     this.skinButtonClose.AutoStyle = true;
     this.skinButtonClose.BackColor = Color.Black;
     this.skinButtonClose.DialogResult = DialogResult.OK;
     this.skinButtonClose.DisabledForecolor = Color.Gray;
     this.skinButtonClose.DrawEdges = true;
     this.skinButtonClose.FocusColor = Color.Yellow;
     this.skinButtonClose.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonClose.ForeColor = Color.White;
     this.skinButtonClose.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonClose.IsStyled = true;
     this.skinButtonClose.Location = new Point(240, 0x178);
     this.skinButtonClose.Name = "skinButtonClose";
     this.skinButtonClose.Size = new Size(0x68, 0x1a);
     this.skinButtonClose.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonClose, null);
     this.skinButtonClose.TabIndex = 9;
     this.skinButtonClose.Text = "<LOC>Close";
     this.skinButtonClose.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonClose.TextPadding = new Padding(0);
     this.skinButtonClose.Click += new EventHandler(this.skinButtonClose_Click);
     this.skinButtonNext.Anchor = AnchorStyles.Bottom;
     this.skinButtonNext.AutoStyle = true;
     this.skinButtonNext.BackColor = Color.Black;
     this.skinButtonNext.DialogResult = DialogResult.OK;
     this.skinButtonNext.DisabledForecolor = Color.Gray;
     this.skinButtonNext.DrawEdges = true;
     this.skinButtonNext.FocusColor = Color.Yellow;
     this.skinButtonNext.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonNext.ForeColor = Color.White;
     this.skinButtonNext.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonNext.IsStyled = true;
     this.skinButtonNext.Location = new Point(0x16a, 0x178);
     this.skinButtonNext.Name = "skinButtonNext";
     this.skinButtonNext.Size = new Size(0x68, 0x1a);
     this.skinButtonNext.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonNext, null);
     this.skinButtonNext.TabIndex = 10;
     this.skinButtonNext.Text = "<LOC>Next";
     this.skinButtonNext.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonNext.TextPadding = new Padding(0);
     this.skinButtonNext.Click += new EventHandler(this.skinButtonNext_Click);
     this.skinButtonLast.Anchor = AnchorStyles.Bottom;
     this.skinButtonLast.AutoStyle = true;
     this.skinButtonLast.BackColor = Color.Black;
     this.skinButtonLast.DialogResult = DialogResult.OK;
     this.skinButtonLast.DisabledForecolor = Color.Gray;
     this.skinButtonLast.DrawEdges = true;
     this.skinButtonLast.FocusColor = Color.Yellow;
     this.skinButtonLast.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonLast.ForeColor = Color.White;
     this.skinButtonLast.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonLast.IsStyled = true;
     this.skinButtonLast.Location = new Point(0x74, 0x178);
     this.skinButtonLast.Name = "skinButtonLast";
     this.skinButtonLast.Size = new Size(0x68, 0x1a);
     this.skinButtonLast.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonLast, null);
     this.skinButtonLast.TabIndex = 11;
     this.skinButtonLast.Text = "<LOC>Last";
     this.skinButtonLast.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonLast.TextPadding = new Padding(0);
     this.skinButtonLast.Click += new EventHandler(this.skinButtonLast_Click);
     this.gpgContextMenuChat.MenuItems.AddRange(new MenuItem[] { this.ciChat_WhisperPlayer, this.ciChat_WebStats, this.ciChat_ViewPlayer, this.ciChat_IgnorePlayer, this.ciChat_UnignorePlayer, this.menuItem10, this.ciChat_InviteFriend, this.ciChat_RemoveFriend, this.menuItem8, this.ciChat_InviteToClan, this.ciChat_RequestClanInvite, this.ciChat_ViewClan });
     this.ciChat_WhisperPlayer.Index = 0;
     this.ciChat_WhisperPlayer.Text = "<LOC>Send private message";
     this.ciChat_WhisperPlayer.Click += new EventHandler(this.ciChat_WhisperPlayer_Click);
     this.ciChat_WebStats.Index = 1;
     this.ciChat_WebStats.Text = "<LOC>View web stats";
     this.ciChat_WebStats.Click += new EventHandler(this.ciChat_WebStats_Click);
     this.ciChat_ViewPlayer.Index = 2;
     this.ciChat_ViewPlayer.Text = "<LOC>View this player's profile";
     this.ciChat_ViewPlayer.Click += new EventHandler(this.ciChat_ViewPlayer_Click);
     this.ciChat_IgnorePlayer.Index = 3;
     this.ciChat_IgnorePlayer.Text = "<LOC>Ignore Player";
     this.ciChat_IgnorePlayer.Click += new EventHandler(this.ciChat_IgnorePlayer_Click);
     this.ciChat_UnignorePlayer.Index = 4;
     this.ciChat_UnignorePlayer.Text = "<LOC>Unignore Player";
     this.ciChat_UnignorePlayer.Click += new EventHandler(this.ciChat_UnignorePlayer_Click);
     this.menuItem10.Index = 5;
     this.menuItem10.Text = "-";
     this.ciChat_InviteFriend.Index = 6;
     this.ciChat_InviteFriend.Text = "<LOC>Invite player to join Friends list";
     this.ciChat_InviteFriend.Click += new EventHandler(this.ciChat_InviteFriend_Click);
     this.ciChat_RemoveFriend.Index = 7;
     this.ciChat_RemoveFriend.Text = "<LOC>Remove player from Friends list";
     this.ciChat_RemoveFriend.Click += new EventHandler(this.ciChat_RemoveFriend_Click);
     this.menuItem8.Index = 8;
     this.menuItem8.Text = "-";
     this.ciChat_InviteToClan.Index = 9;
     this.ciChat_InviteToClan.Text = "<LOC>Invite this player to join clan";
     this.ciChat_InviteToClan.Click += new EventHandler(this.ciChat_InviteToClan_Click);
     this.ciChat_RequestClanInvite.Index = 10;
     this.ciChat_RequestClanInvite.Text = "<LOC>Request to join this player's clan";
     this.ciChat_RequestClanInvite.Click += new EventHandler(this.ciChat_RequestClanInvite_Click);
     this.ciChat_ViewClan.Index = 11;
     this.ciChat_ViewClan.Text = "<LOC>View this clan's profile";
     this.ciChat_ViewClan.Click += new EventHandler(this.ciChat_ViewClan_Click);
     base.AcceptButton = this.skinButtonClose;
     base.AutoScaleMode = AutoScaleMode.None;
     base.CancelButton = this.skinButtonClose;
     base.ClientSize = new Size(0x247, 0x1bf);
     base.Controls.Add(this.skinButtonLast);
     base.Controls.Add(this.skinButtonNext);
     base.Controls.Add(this.skinButtonClose);
     base.Controls.Add(this.splitContainer1);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x178, 0x178);
     base.Name = "DlgPlayerProfile";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "DlgPlayerProfile";
     base.Controls.SetChildIndex(this.splitContainer1, 0);
     base.Controls.SetChildIndex(this.skinButtonClose, 0);
     base.Controls.SetChildIndex(this.skinButtonNext, 0);
     base.Controls.SetChildIndex(this.skinButtonLast, 0);
     this.gvFriend_Member.EndInit();
     this.repositoryItemPictureEdit4.EndInit();
     this.gpgGridFriends.EndInit();
     this.gvFriend_Container.EndInit();
     this.repositoryItemTextEdit2.EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.gpgLabelName.ResumeLayout(false);
     ((ISupportInitialize) this.pictureBoxClanIcon).EndInit();
     ((ISupportInitialize) this.pictureBoxClanRank).EndInit();
     ((ISupportInitialize) this.pictureBoxPlayerIcon).EndInit();
     this.gpgPanelStats.ResumeLayout(false);
     this.gpgPanel2.ResumeLayout(false);
     this.gpgPanelEdit.Panel1.ResumeLayout(false);
     this.gpgPanelEdit.Panel2.ResumeLayout(false);
     this.gpgPanelEdit.ResumeLayout(false);
     this.gpgTextAreaDescription.Properties.EndInit();
     this.splitContainerFriends.Panel1.ResumeLayout(false);
     this.splitContainerFriends.Panel2.ResumeLayout(false);
     this.splitContainerFriends.ResumeLayout(false);
     this.gpgScrollPanelFriends.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 35
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(FrmMain));
     this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
     this.repositoryItemMemoEdit1 = new RepositoryItemMemoEdit();
     this.skinGatheringDisplayChat = new SkinGatheringDisplay();
     this.pnlUserListChat = new PnlUserList();
     this.gridColumnTitle = new GridColumn();
     this.gridColumnMembers = new GridColumn();
     this.btnSend = new Button();
     this.pBottom = new Panel();
     this.skinDropDownStatus = new SkinDropDown();
     this.msQuickButtons = new GPGMenuStrip(this.components);
     this.btnHome = new ToolStripMenuItem();
     this.btnChat = new ToolStripMenuItem();
     this.btnHostGame = new ToolStripMenuItem();
     this.btnJoinGame = new ToolStripMenuItem();
     this.btnRankedGame = new ToolStripMenuItem();
     this.btnArrangedTeam = new ToolStripMenuItem();
     this.btnPlayNow = new ToolStripMenuItem();
     this.btnViewRankings = new ToolStripMenuItem();
     this.btnVault = new ToolStripMenuItem();
     this.btnWorldMap = new ToolStripMenuItem();
     this.btnReplayVault = new ToolStripMenuItem();
     this.btnFeedback = new ToolStripMenuItem();
     this.btnOptions = new ToolStripMenuItem();
     this.btnMore = new ToolStripMenuItem();
     this.pbBottomRight = new PictureBox();
     this.pbBottom = new PictureBox();
     this.pbBottomLeft = new PictureBox();
     this.pTop = new Panel();
     this.msMainMenu = new GPGMenuStrip(this.components);
     this.miMainGroup = new ToolStripMenuItem();
     this.miMain_Logout = new ToolStripMenuItem();
     this.miMain_Exit = new ToolStripMenuItem();
     this.miChangeEmail = new ToolStripMenuItem();
     this.miConsolidateAccounts = new ToolStripMenuItem();
     this.miAdmin = new ToolStripMenuItem();
     this.miCustomAdmin = new ToolStripMenuItem();
     this.miAdhocSQL = new ToolStripMenuItem();
     this.adhocChartsToolStripMenuItem = new ToolStripMenuItem();
     this.miPacketSniffer = new ToolStripMenuItem();
     this.miShowEventLog = new ToolStripMenuItem();
     this.miAdmin_CreateVolunteerEffort = new ToolStripMenuItem();
     this.miAdmin_ViewVolunteers = new ToolStripMenuItem();
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem = new ToolStripMenuItem();
     this.miAdmin_Security = new ToolStripMenuItem();
     this.miAdmin_Avatars = new ToolStripMenuItem();
     this.spaceSiegeLobbyToolStripMenuItem = new ToolStripMenuItem();
     this.manageServerGamesToolStripMenuItem = new ToolStripMenuItem();
     this.miGameGroup = new ToolStripMenuItem();
     this.miCustomGame = new ToolStripMenuItem();
     this.miJoinGame = new ToolStripMenuItem();
     this.miAutomatch = new ToolStripMenuItem();
     this.lOCArrangedTeamGameToolStripMenuItem = new ToolStripMenuItem();
     this.miGame_Vault = new ToolStripMenuItem();
     this.miCreateTournament = new ToolStripMenuItem();
     this.miTournamentSchedule = new ToolStripMenuItem();
     this.miGame_RedeemPrize = new ToolStripMenuItem();
     this.miRankings = new ToolStripMenuItem();
     this.miRankings_1v1 = new ToolStripMenuItem();
     this.lOC2v2RankingsToolStripMenuItem = new ToolStripMenuItem();
     this.lOC3v3RankingsToolStripMenuItem = new ToolStripMenuItem();
     this.lOC4v4RankingsToolStripMenuItem = new ToolStripMenuItem();
     this.lOCClanRankingsToolStripMenuItem = new ToolStripMenuItem();
     this.miLadders = new ToolStripMenuItem();
     this.miLadders_AcceptAll = new ToolStripMenuItem();
     this.miLadders_DeclineAll = new ToolStripMenuItem();
     this.miTools = new ToolStripMenuItem();
     this.miTools_Feedback = new ToolStripMenuItem();
     this.miTools_GameKeys = new ToolStripMenuItem();
     this.miTools_Chat = new ToolStripMenuItem();
     this.miTools_Chat_Emotes = new ToolStripMenuItem();
     this.miTools_ContentManager = new ToolStripMenuItem();
     this.miTools_Options = new ToolStripMenuItem();
     this.miTools_LocPatches = new ToolStripMenuItem();
     this.miManageGames = new ToolStripMenuItem();
     this.miHelp = new ToolStripMenuItem();
     this.miHelp_Solutions = new ToolStripMenuItem();
     this.miHelp_Volunteer = new ToolStripMenuItem();
     this.miHelp_SupComHome = new ToolStripMenuItem();
     this.miHelp_GPGHome = new ToolStripMenuItem();
     this.miForums = new ToolStripMenuItem();
     this.miHelp_ReportIssue = new ToolStripMenuItem();
     this.miHelp_About = new ToolStripMenuItem();
     this.miSpaceSiegeWeb = new ToolStripMenuItem();
     this.pbClose = new PictureBox();
     this.pbRestore = new PictureBox();
     this.pbMinimize = new PictureBox();
     this.pbTopRight = new PictureBox();
     this.pbTop = new PictureBox();
     this.pbTopLeft = new PictureBox();
     this.wbMain = new WebBrowser();
     this.splitContainerFriends = new SplitContainer();
     this.gpgLabelFriendInvites2 = new GPGLabel();
     this.gpgLabelFriendInvitesCount2 = new GPGLabel();
     this.gpgScrollPanelFriends = new GPGScrollPanel();
     this.pnlUserListFriends = new PnlUserList();
     this.gpgLabelNoFriends = new GPGLabel();
     this.splitContainerClan = new SplitContainer();
     this.gpgLabelClanRequests = new GPGLabel();
     this.gpgLabelClanRequestCount = new GPGLabel();
     this.gpgScrollPanelClan = new GPGScrollPanel();
     this.pnlUserListClan = new PnlUserList();
     this.gpgScrollPanelNoClan = new GPGScrollPanel();
     this.gpgLabelClanInvites = new GPGLabel();
     this.gpgLabelCreateClan = new GPGLabel();
     this.gpgLabelClanInviteCount = new GPGLabel();
     this.gpgLabelNoClan = new GPGLabel();
     this.skinLabelClanName = new SkinLabel();
     this.pbLeftBorder = new PictureBox();
     this.pbRightBorder = new PictureBox();
     this.rimPictureEdit = new RepositoryItemPictureEdit();
     this.rimMemoEdit = new RepositoryItemMemoEdit();
     this.rimPictureEdit2 = new RepositoryItemPictureEdit();
     this.rimMemoEdit2 = new RepositoryItemMemoEdit();
     this.gpgChatGrid = new GPGChatGrid();
     this.gvChat = new GridView();
     this.colIcon = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.colPlayer = new GridColumn();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.colText = new GridColumn();
     this.gcVisible = new GridColumn();
     this.colTimeStamp = new GridColumn();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.ilIcons = new ImageList(this.components);
     this.gridColumn1 = new GridColumn();
     this.gridColumn2 = new GridColumn();
     this.gridColumn3 = new GridColumn();
     this.pcTextEntry = new PanelControl();
     this.gpgContextMenuChat = new GPGContextMenu();
     this.ciChat_WhisperPlayer = new MenuItem();
     this.ciChat_IgnorePlayer = new MenuItem();
     this.ciChat_UnignorePlayer = new MenuItem();
     this.ciChat_ViewRank = new MenuItem();
     this.ciChat_WebStats = new MenuItem();
     this.ciChat_ViewPlayer = new MenuItem();
     this.miViewReplays = new MenuItem();
     this.menuItem10 = new MenuItem();
     this.ciChat_InviteFriend = new MenuItem();
     this.ciChat_RemoveFriend = new MenuItem();
     this.menuItem8 = new MenuItem();
     this.ciChat_InviteToClan = new MenuItem();
     this.ciChat_RequestClanInvite = new MenuItem();
     this.ciChat_ViewClan = new MenuItem();
     this.ciChat_PromoteClan = new MenuItem();
     this.ciChat_DemoteClan = new MenuItem();
     this.ciChat_RemoveClan = new MenuItem();
     this.ciChat_LeaveClan = new MenuItem();
     this.menuItem3 = new MenuItem();
     this.ciChat_Kick = new MenuItem();
     this.ciChat_Ban = new MenuItem();
     this.menuItem7 = new MenuItem();
     this.ciChat_TeamInvite = new MenuItem();
     this.textBoxMsg = new GPGTextArea();
     this.pbMiddle = new SkinStatusStrip();
     this.miStatus_Online = new MenuItem();
     this.miStatus_Away = new MenuItem();
     this.miStatus_DND = new MenuItem();
     this.menuItem1 = new MenuItem();
     this.menuItem2 = new MenuItem();
     this.gpgContextMenuChatText = new GPGContextMenu();
     this.ciChatText_Clear = new MenuItem();
     this.ciChatText_Copy = new MenuItem();
     this.ciChatText_Filter = new MenuItem();
     this.ciChatText_Filter_Self = new MenuItem();
     this.ciChatText_Filter_System = new MenuItem();
     this.ciChatText_Filter_Events = new MenuItem();
     this.ciChatText_Filter_Errors = new MenuItem();
     this.ciChatText_Filter_Game = new MenuItem();
     this.ciChatText_Filter_Friends = new MenuItem();
     this.ciChatText_Filter_Clan = new MenuItem();
     this.ciChatText_Filter_Admin = new MenuItem();
     this.ciChatText_Filter_Other = new MenuItem();
     this.menuItem4 = new MenuItem();
     this.ciChatText_Filters_Reset = new MenuItem();
     this.miShowColumns = new MenuItem();
     this.ciChatText_ShowEmotes = new MenuItem();
     this.menuItm15 = new MenuItem();
     this.ciChatText_PrivateMsg = new MenuItem();
     this.ciChatText_Ignore = new MenuItem();
     this.ciChatText_Unignore = new MenuItem();
     this.ciChatText_ViewRank = new MenuItem();
     this.ciChatText_WebStats = new MenuItem();
     this.ciChatText_ViewPlayer = new MenuItem();
     this.ciChatText_Replays = new MenuItem();
     this.menuItem6 = new MenuItem();
     this.ciChatText_FriendInvite = new MenuItem();
     this.ciChatText_FriendRemove = new MenuItem();
     this.menuItem11 = new MenuItem();
     this.ciChatText_ClanInvite = new MenuItem();
     this.ciChatText_ClanRequest = new MenuItem();
     this.ciChatText_ClanRemove = new MenuItem();
     this.ciChatText_Promote = new MenuItem();
     this.ciChatText_Demote = new MenuItem();
     this.ciChatText_ViewClan = new MenuItem();
     this.ciChatText_LeaveClan = new MenuItem();
     this.menuItem18 = new MenuItem();
     this.ciChatText_Kick = new MenuItem();
     this.ciChatText_Ban = new MenuItem();
     this.menuItem12 = new MenuItem();
     this.ciChatText_Solution = new MenuItem();
     this.miTranslate = new MenuItem();
     this.menuItem23 = new MenuItem();
     this.menuItem24 = new MenuItem();
     this.menuItem25 = new MenuItem();
     this.menuItem26 = new MenuItem();
     this.menuItem27 = new MenuItem();
     this.menuItem28 = new MenuItem();
     this.menuItem29 = new MenuItem();
     this.dockManager = new DockManager();
     this.gpgContextMenuEmote = new GPGContextMenu();
     this.ciEmote_Manager = new MenuItem();
     this.menuItem13 = new MenuItem();
     this.ciEmote_Hide = new MenuItem();
     this.ciEmote_Share = new MenuItem();
     this.ciEmote_Animate = new MenuItem();
     this.menuItem9 = new MenuItem();
     this.ciEmote_Delete = new MenuItem();
     this.pManualTabs = new GPGPanel();
     this.btnChatTab = new SkinButton();
     this.btnFriendsTab = new SkinButton();
     this.btnClanTab = new SkinButton();
     this.ilMenuItems = new ImageList(this.components);
     this.gpgPanelChatAndInput = new GPGPanel();
     this.splitContainerChatAndInput = new SplitContainer();
     this.gpgTextListCommands = new GPGTextList();
     this.gpgPanelGathering = new GPGPanel();
     this.gpgPanelGatheringDropDown = new GPGPanel();
     this.splitContainerBody = new SplitContainer();
     this.gpgPanelClan = new GPGPanel();
     this.gpgPanelFriends = new GPGPanel();
     this.gpgPanel2 = new GPGPanel();
     this.tabChatroom = new SkinButton();
     this.repositoryItemPictureEdit1.BeginInit();
     this.repositoryItemMemoEdit1.BeginInit();
     this.pBottom.SuspendLayout();
     this.msQuickButtons.SuspendLayout();
     ((ISupportInitialize) this.pbBottomRight).BeginInit();
     ((ISupportInitialize) this.pbBottom).BeginInit();
     ((ISupportInitialize) this.pbBottomLeft).BeginInit();
     this.pTop.SuspendLayout();
     this.msMainMenu.SuspendLayout();
     ((ISupportInitialize) this.pbClose).BeginInit();
     ((ISupportInitialize) this.pbRestore).BeginInit();
     ((ISupportInitialize) this.pbMinimize).BeginInit();
     ((ISupportInitialize) this.pbTopRight).BeginInit();
     ((ISupportInitialize) this.pbTop).BeginInit();
     ((ISupportInitialize) this.pbTopLeft).BeginInit();
     this.splitContainerFriends.Panel1.SuspendLayout();
     this.splitContainerFriends.Panel2.SuspendLayout();
     this.splitContainerFriends.SuspendLayout();
     this.gpgScrollPanelFriends.SuspendLayout();
     this.splitContainerClan.Panel1.SuspendLayout();
     this.splitContainerClan.Panel2.SuspendLayout();
     this.splitContainerClan.SuspendLayout();
     this.gpgScrollPanelClan.SuspendLayout();
     this.gpgScrollPanelNoClan.SuspendLayout();
     ((ISupportInitialize) this.pbLeftBorder).BeginInit();
     ((ISupportInitialize) this.pbRightBorder).BeginInit();
     this.rimPictureEdit.BeginInit();
     this.rimMemoEdit.BeginInit();
     this.rimPictureEdit2.BeginInit();
     this.rimMemoEdit2.BeginInit();
     this.gpgChatGrid.BeginInit();
     this.gvChat.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.pcTextEntry.BeginInit();
     this.textBoxMsg.Properties.BeginInit();
     this.dockManager.BeginInit();
     this.pManualTabs.SuspendLayout();
     this.gpgPanelChatAndInput.SuspendLayout();
     this.splitContainerChatAndInput.Panel1.SuspendLayout();
     this.splitContainerChatAndInput.Panel2.SuspendLayout();
     this.splitContainerChatAndInput.SuspendLayout();
     this.gpgPanelGathering.SuspendLayout();
     this.gpgPanelGatheringDropDown.SuspendLayout();
     this.splitContainerBody.Panel1.SuspendLayout();
     this.splitContainerBody.Panel2.SuspendLayout();
     this.splitContainerBody.SuspendLayout();
     this.gpgPanelClan.SuspendLayout();
     this.gpgPanelFriends.SuspendLayout();
     this.gpgPanel2.SuspendLayout();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.PictureAlignment = ContentAlignment.TopCenter;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     this.skinGatheringDisplayChat.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinGatheringDisplayChat.AutoStyle = true;
     this.skinGatheringDisplayChat.BackColor = System.Drawing.Color.Black;
     this.skinGatheringDisplayChat.ButtonState = 0;
     this.skinGatheringDisplayChat.CurrentRoom = null;
     this.skinGatheringDisplayChat.DialogResult = DialogResult.OK;
     this.skinGatheringDisplayChat.DisabledForecolor = System.Drawing.Color.Gray;
     this.skinGatheringDisplayChat.DrawColor = System.Drawing.Color.WhiteSmoke;
     this.skinGatheringDisplayChat.DrawEdges = true;
     this.skinGatheringDisplayChat.FocusColor = System.Drawing.Color.FromArgb(0x40, 0x40, 0x40);
     this.skinGatheringDisplayChat.HorizontalScalingMode = ScalingModes.Stretch;
     this.skinGatheringDisplayChat.Icon = null;
     this.skinGatheringDisplayChat.IsStyled = true;
     this.skinGatheringDisplayChat.Location = new Point(7, 0);
     this.skinGatheringDisplayChat.Name = "skinGatheringDisplayChat";
     this.skinGatheringDisplayChat.Size = new Size(0xf8, 0x19);
     this.skinGatheringDisplayChat.SkinBasePath = @"Controls\Button\ChatroomList";
     base.ttDefault.SetSuperTip(this.skinGatheringDisplayChat, null);
     this.skinGatheringDisplayChat.TabIndex = 12;
     this.skinGatheringDisplayChat.TabStop = true;
     this.skinGatheringDisplayChat.Text = "Loading...";
     this.skinGatheringDisplayChat.TextAlign = ContentAlignment.MiddleLeft;
     this.skinGatheringDisplayChat.TextPadding = new Padding(0x24, 0, 0, 0);
     this.pnlUserListChat.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.pnlUserListChat.AutoRefresh = false;
     this.pnlUserListChat.AutoScroll = true;
     this.pnlUserListChat.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.pnlUserListChat.Location = new Point(2, 0x25);
     this.pnlUserListChat.Name = "pnlUserListChat";
     this.pnlUserListChat.Size = new Size(0x106, 420);
     this.pnlUserListChat.Style = UserListStyles.Chatroom;
     base.ttDefault.SetSuperTip(this.pnlUserListChat, null);
     this.pnlUserListChat.TabIndex = 3;
     this.gridColumnTitle.Caption = "gridColumnTitle";
     this.gridColumnTitle.FieldName = "Title";
     this.gridColumnTitle.Name = "gridColumnTitle";
     this.gridColumnTitle.Visible = true;
     this.gridColumnTitle.VisibleIndex = 0;
     this.gridColumnMembers.Caption = "gridColumnMembers";
     this.gridColumnMembers.FieldName = "Members";
     this.gridColumnMembers.Name = "gridColumnMembers";
     this.gridColumnMembers.Visible = true;
     this.gridColumnMembers.VisibleIndex = 1;
     this.btnSend.Location = new Point(0x200, 0x22d);
     this.btnSend.Name = "btnSend";
     this.btnSend.Size = new Size(0x3b, 0x17);
     base.ttDefault.SetSuperTip(this.btnSend, null);
     this.btnSend.TabIndex = 5;
     this.btnSend.Text = "Send";
     this.btnSend.UseVisualStyleBackColor = true;
     this.btnSend.Click += new EventHandler(this.buttonSend_Click);
     this.pBottom.Controls.Add(this.skinDropDownStatus);
     this.pBottom.Controls.Add(this.msQuickButtons);
     this.pBottom.Controls.Add(this.pbBottomRight);
     this.pBottom.Controls.Add(this.pbBottom);
     this.pBottom.Controls.Add(this.pbBottomLeft);
     this.pBottom.Dock = DockStyle.Bottom;
     this.pBottom.Location = new Point(0, 0x296);
     this.pBottom.Name = "pBottom";
     this.pBottom.Size = new Size(0x3e8, 0x58);
     base.ttDefault.SetSuperTip(this.pBottom, null);
     this.pBottom.TabIndex = 5;
     this.pBottom.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.skinDropDownStatus.AutoStyle = true;
     this.skinDropDownStatus.BackColor = System.Drawing.Color.Black;
     this.skinDropDownStatus.ButtonState = 0;
     this.skinDropDownStatus.DialogResult = DialogResult.OK;
     this.skinDropDownStatus.DisabledForecolor = System.Drawing.Color.Gray;
     this.skinDropDownStatus.DrawColor = System.Drawing.Color.Black;
     this.skinDropDownStatus.DrawEdges = true;
     this.skinDropDownStatus.FocusColor = System.Drawing.Color.FromArgb(0x40, 0x40, 0x40);
     this.skinDropDownStatus.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinDropDownStatus.ForeColor = System.Drawing.Color.Black;
     this.skinDropDownStatus.HorizontalScalingMode = ScalingModes.Tile;
     this.skinDropDownStatus.Icon = null;
     this.skinDropDownStatus.IsStyled = true;
     this.skinDropDownStatus.Location = new Point(0x3d, 0x2b);
     this.skinDropDownStatus.Name = "skinDropDownStatus";
     this.skinDropDownStatus.Size = new Size(0x4e, 0x1a);
     this.skinDropDownStatus.SkinBasePath = @"Controls\Button\Dropdown";
     base.ttDefault.SetSuperTip(this.skinDropDownStatus, null);
     this.skinDropDownStatus.TabIndex = 12;
     this.skinDropDownStatus.TabStop = true;
     this.skinDropDownStatus.TextAlign = ContentAlignment.MiddleLeft;
     this.skinDropDownStatus.TextPadding = new Padding(6, 0, 0, 0);
     this.msQuickButtons.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.msQuickButtons.AutoSize = false;
     this.msQuickButtons.BackgroundImage = (Image) manager.GetObject("msQuickButtons.BackgroundImage");
     this.msQuickButtons.Dock = DockStyle.None;
     this.msQuickButtons.GripMargin = new Padding(0);
     this.msQuickButtons.ImageScalingSize = new Size(0x2d, 0x2d);
     this.msQuickButtons.Items.AddRange(new ToolStripItem[] { this.btnHome, this.btnChat, this.btnHostGame, this.btnJoinGame, this.btnRankedGame, this.btnArrangedTeam, this.btnPlayNow, this.btnViewRankings, this.btnVault, this.btnWorldMap, this.btnReplayVault, this.btnFeedback, this.btnOptions, this.btnMore });
     this.msQuickButtons.Location = new Point(0x90, 0x21);
     this.msQuickButtons.Name = "msQuickButtons";
     this.msQuickButtons.Padding = new Padding(0, 0, 10, 0);
     this.msQuickButtons.RenderMode = ToolStripRenderMode.Professional;
     this.msQuickButtons.ShowItemToolTips = true;
     this.msQuickButtons.Size = new Size(0x335, 0x34);
     base.ttDefault.SetSuperTip(this.msQuickButtons, null);
     this.msQuickButtons.TabIndex = 3;
     this.msQuickButtons.Paint += new PaintEventHandler(this.msQuickButtons_Paint);
     this.msQuickButtons.SizeChanged += new EventHandler(this.msQuickButtons_SizeChanged);
     this.msQuickButtons.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.msQuickButtons.ItemClicked += new ToolStripItemClickedEventHandler(this.msQuickButtons_ItemClicked);
     this.msQuickButtons.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.msQuickButtons.Click += new EventHandler(this.msQuickButtons_Click);
     this.btnHome.AutoSize = false;
     this.btnHome.AutoToolTip = true;
     this.btnHome.BackColor = System.Drawing.Color.Transparent;
     this.btnHome.Image = (Image) manager.GetObject("btnHome.Image");
     this.btnHome.ImageScaling = ToolStripItemImageScaling.None;
     this.btnHome.Name = "btnHome";
     this.btnHome.ShortcutKeys = Keys.F1;
     this.btnHome.Size = new Size(0x34, 0x34);
     this.btnHome.ToolTipText = "<LOC>Home";
     this.btnHome.Click += new EventHandler(this.btnHome_Click);
     this.btnChat.AutoSize = false;
     this.btnChat.AutoToolTip = true;
     this.btnChat.Image = (Image) manager.GetObject("btnChat.Image");
     this.btnChat.ImageScaling = ToolStripItemImageScaling.None;
     this.btnChat.Name = "btnChat";
     this.btnChat.ShortcutKeys = Keys.F2;
     this.btnChat.Size = new Size(0x34, 0x34);
     this.btnChat.ToolTipText = "<LOC>Chat";
     this.btnChat.Click += new EventHandler(this.btnChat_Click);
     this.btnHostGame.AutoSize = false;
     this.btnHostGame.AutoToolTip = true;
     this.btnHostGame.Enabled = false;
     this.btnHostGame.Image = (Image) manager.GetObject("btnHostGame.Image");
     this.btnHostGame.ImageScaling = ToolStripItemImageScaling.None;
     this.btnHostGame.Name = "btnHostGame";
     this.btnHostGame.ShortcutKeys = Keys.F3;
     this.btnHostGame.Size = new Size(0x34, 0x34);
     this.btnHostGame.ToolTipText = "<LOC>Host Custom Game";
     this.btnHostGame.Click += new EventHandler(this.btnHostGame_Click);
     this.btnJoinGame.AutoSize = false;
     this.btnJoinGame.AutoToolTip = true;
     this.btnJoinGame.Enabled = false;
     this.btnJoinGame.Image = (Image) manager.GetObject("btnJoinGame.Image");
     this.btnJoinGame.ImageScaling = ToolStripItemImageScaling.None;
     this.btnJoinGame.Name = "btnJoinGame";
     this.btnJoinGame.ShortcutKeys = Keys.F4;
     this.btnJoinGame.Size = new Size(0x34, 0x34);
     this.btnJoinGame.ToolTipText = "<LOC>Join Custom Game";
     this.btnJoinGame.Click += new EventHandler(this.btnJoinGame_Click);
     this.btnRankedGame.AutoSize = false;
     this.btnRankedGame.AutoToolTip = true;
     this.btnRankedGame.Enabled = false;
     this.btnRankedGame.Image = (Image) manager.GetObject("btnRankedGame.Image");
     this.btnRankedGame.ImageScaling = ToolStripItemImageScaling.None;
     this.btnRankedGame.Name = "btnRankedGame";
     this.btnRankedGame.ShortcutKeys = Keys.F5;
     this.btnRankedGame.Size = new Size(0x34, 0x34);
     this.btnRankedGame.ToolTipText = "<LOC>Play Ranked Game";
     this.btnRankedGame.Click += new EventHandler(this.btnRankedGame_Click);
     this.btnArrangedTeam.AutoSize = false;
     this.btnArrangedTeam.AutoToolTip = true;
     this.btnArrangedTeam.Enabled = false;
     this.btnArrangedTeam.Image = (Image) manager.GetObject("btnArrangedTeam.Image");
     this.btnArrangedTeam.ImageScaling = ToolStripItemImageScaling.None;
     this.btnArrangedTeam.Name = "btnArrangedTeam";
     this.btnArrangedTeam.ShortcutKeys = Keys.F8;
     this.btnArrangedTeam.Size = new Size(0x34, 0x34);
     this.btnArrangedTeam.ToolTipText = "<LOC>Play Arranged Team Game";
     this.btnArrangedTeam.Click += new EventHandler(this.btnArrangedTeam_Click);
     this.btnPlayNow.AutoSize = false;
     this.btnPlayNow.AutoToolTip = true;
     this.btnPlayNow.Enabled = false;
     this.btnPlayNow.Image = (Image) manager.GetObject("btnPlayNow.Image");
     this.btnPlayNow.ImageScaling = ToolStripItemImageScaling.None;
     this.btnPlayNow.Name = "btnPlayNow";
     this.btnPlayNow.ShortcutKeys = Keys.F8;
     this.btnPlayNow.Size = new Size(0x34, 0x34);
     this.btnPlayNow.ToolTipText = "<LOC>Play ranked game with your last used preferences.";
     this.btnPlayNow.Click += new EventHandler(this.btnPlayNow_Click);
     this.btnViewRankings.AutoSize = false;
     this.btnViewRankings.AutoToolTip = true;
     this.btnViewRankings.Image = (Image) manager.GetObject("btnViewRankings.Image");
     this.btnViewRankings.ImageScaling = ToolStripItemImageScaling.None;
     this.btnViewRankings.Name = "btnViewRankings";
     this.btnViewRankings.ShortcutKeys = Keys.F6;
     this.btnViewRankings.Size = new Size(0x34, 0x34);
     this.btnViewRankings.ToolTipText = "<LOC>View Rankings";
     this.btnViewRankings.Click += new EventHandler(this.btnViewRankings_Click);
     this.btnVault.AutoSize = false;
     this.btnVault.AutoToolTip = true;
     this.btnVault.Image = (Image) manager.GetObject("btnVault.Image");
     this.btnVault.ImageScaling = ToolStripItemImageScaling.None;
     this.btnVault.Name = "btnVault";
     this.btnVault.ShortcutKeys = Keys.F8;
     this.btnVault.Size = new Size(0x34, 0x34);
     this.btnVault.ToolTipText = "<LOC>The Vault";
     this.btnVault.Click += new EventHandler(this.btnVault_Click);
     this.btnWorldMap.AutoSize = false;
     this.btnWorldMap.AutoToolTip = true;
     this.btnWorldMap.Image = (Image) manager.GetObject("btnWorldMap.Image");
     this.btnWorldMap.ImageScaling = ToolStripItemImageScaling.None;
     this.btnWorldMap.Name = "btnWorldMap";
     this.btnWorldMap.ShortcutKeys = Keys.F8;
     this.btnWorldMap.Size = new Size(0x34, 0x34);
     this.btnWorldMap.ToolTipText = "<LOC>World Map";
     this.btnWorldMap.Click += new EventHandler(this.btnWorldMap_Click);
     this.btnReplayVault.AutoSize = false;
     this.btnReplayVault.AutoToolTip = true;
     this.btnReplayVault.Image = (Image) manager.GetObject("btnReplayVault.Image");
     this.btnReplayVault.ImageScaling = ToolStripItemImageScaling.None;
     this.btnReplayVault.Name = "btnReplayVault";
     this.btnReplayVault.ShortcutKeys = Keys.F8;
     this.btnReplayVault.Size = new Size(0x34, 0x34);
     this.btnReplayVault.ToolTipText = "<LOC>Replay Vault";
     this.btnReplayVault.Click += new EventHandler(this.btnReplayVault_Click);
     this.btnFeedback.AutoSize = false;
     this.btnFeedback.AutoToolTip = true;
     this.btnFeedback.Image = (Image) manager.GetObject("btnFeedback.Image");
     this.btnFeedback.ImageScaling = ToolStripItemImageScaling.None;
     this.btnFeedback.Name = "btnFeedback";
     this.btnFeedback.ShortcutKeys = Keys.F7;
     this.btnFeedback.Size = new Size(0x34, 0x34);
     this.btnFeedback.ToolTipText = "<LOC>Submit Feedback";
     this.btnFeedback.Click += new EventHandler(this.btnFeedback_Click);
     this.btnOptions.AutoSize = false;
     this.btnOptions.AutoToolTip = true;
     this.btnOptions.Image = (Image) manager.GetObject("btnOptions.Image");
     this.btnOptions.ImageScaling = ToolStripItemImageScaling.None;
     this.btnOptions.Name = "btnOptions";
     this.btnOptions.ShortcutKeys = Keys.F8;
     this.btnOptions.Size = new Size(0x34, 0x34);
     this.btnOptions.ToolTipText = "<LOC>Options";
     this.btnOptions.Click += new EventHandler(this.btnOptions_Click);
     this.btnMore.AutoSize = false;
     this.btnMore.AutoToolTip = true;
     this.btnMore.Image = (Image) manager.GetObject("btnMore.Image");
     this.btnMore.ImageScaling = ToolStripItemImageScaling.None;
     this.btnMore.Name = "btnMore";
     this.btnMore.ShortcutKeys = Keys.F6;
     this.btnMore.Size = new Size(20, 0x34);
     this.btnMore.ToolTipText = "<LOC>More...";
     this.btnMore.Click += new EventHandler(this.btnMore_Click);
     this.pbBottomRight.Dock = DockStyle.Right;
     this.pbBottomRight.Image = (Image) manager.GetObject("pbBottomRight.Image");
     this.pbBottomRight.Location = new Point(0x3aa, 0);
     this.pbBottomRight.Name = "pbBottomRight";
     this.pbBottomRight.Size = new Size(0x3e, 0x58);
     this.pbBottomRight.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbBottomRight, null);
     this.pbBottomRight.TabIndex = 2;
     this.pbBottomRight.TabStop = false;
     this.pbBottomRight.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbBottomRight.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.pbBottom.Dock = DockStyle.Fill;
     this.pbBottom.Image = (Image) manager.GetObject("pbBottom.Image");
     this.pbBottom.Location = new Point(0x3d, 0);
     this.pbBottom.Name = "pbBottom";
     this.pbBottom.Size = new Size(0x3ab, 0x58);
     this.pbBottom.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pbBottom, null);
     this.pbBottom.TabIndex = 1;
     this.pbBottom.TabStop = false;
     this.pbBottom.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbBottom.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.pbBottomLeft.Dock = DockStyle.Left;
     this.pbBottomLeft.Image = (Image) manager.GetObject("pbBottomLeft.Image");
     this.pbBottomLeft.Location = new Point(0, 0);
     this.pbBottomLeft.Name = "pbBottomLeft";
     this.pbBottomLeft.Size = new Size(0x3d, 0x58);
     this.pbBottomLeft.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbBottomLeft, null);
     this.pbBottomLeft.TabIndex = 0;
     this.pbBottomLeft.TabStop = false;
     this.pbBottomLeft.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbBottomLeft.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.pTop.Controls.Add(this.msMainMenu);
     this.pTop.Controls.Add(this.pbClose);
     this.pTop.Controls.Add(this.pbRestore);
     this.pTop.Controls.Add(this.pbMinimize);
     this.pTop.Controls.Add(this.pbTopRight);
     this.pTop.Controls.Add(this.pbTop);
     this.pTop.Controls.Add(this.pbTopLeft);
     this.pTop.Dock = DockStyle.Top;
     this.pTop.Location = new Point(0, 0);
     this.pTop.Name = "pTop";
     this.pTop.Size = new Size(0x3e8, 0xc9);
     base.ttDefault.SetSuperTip(this.pTop, null);
     this.pTop.TabIndex = 4;
     this.pTop.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.msMainMenu.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.msMainMenu.AutoSize = false;
     this.msMainMenu.BackColor = System.Drawing.Color.Transparent;
     this.msMainMenu.BackgroundImage = (Image) manager.GetObject("msMainMenu.BackgroundImage");
     this.msMainMenu.Dock = DockStyle.None;
     this.msMainMenu.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.msMainMenu.ImageScalingSize = new Size(0, 0);
     this.msMainMenu.Items.AddRange(new ToolStripItem[] { this.miMainGroup, this.miAdmin, this.miGameGroup, this.miRankings, this.miLadders, this.miTools, this.miHelp });
     this.msMainMenu.Location = new Point(0x3d, 0x2e);
     this.msMainMenu.Name = "msMainMenu";
     this.msMainMenu.Size = new Size(0x35f, 0x18);
     base.ttDefault.SetSuperTip(this.msMainMenu, null);
     this.msMainMenu.TabIndex = 9;
     this.msMainMenu.Text = "menuStrip1";
     this.miMainGroup.DropDownItems.AddRange(new ToolStripItem[] { this.miMain_Logout, this.miMain_Exit, this.miChangeEmail, this.miConsolidateAccounts });
     this.miMainGroup.Name = "miMainGroup";
     this.miMainGroup.Size = new Size(90, 20);
     this.miMainGroup.Text = "<LOC>Main";
     this.miMainGroup.TextAlign = ContentAlignment.BottomCenter;
     this.miMain_Logout.Name = "miMain_Logout";
     this.miMain_Logout.Size = new Size(0xfb, 0x16);
     this.miMain_Logout.Text = "<LOC>Logout";
     this.miMain_Logout.Click += new EventHandler(this.miMain_Logout_Click);
     this.miMain_Exit.Name = "miMain_Exit";
     this.miMain_Exit.Size = new Size(0xfb, 0x16);
     this.miMain_Exit.Text = "<LOC>Exit";
     this.miMain_Exit.Click += new EventHandler(this.miMain_Exit_Click);
     this.miChangeEmail.Name = "miChangeEmail";
     this.miChangeEmail.Size = new Size(0xfb, 0x16);
     this.miChangeEmail.Text = "<LOC>Change Email Address";
     this.miChangeEmail.Click += new EventHandler(this.mChangeEmail_Click);
     this.miConsolidateAccounts.Name = "miConsolidateAccounts";
     this.miConsolidateAccounts.Size = new Size(0xfb, 0x16);
     this.miConsolidateAccounts.Text = "<LOC>Consolidate Accounts";
     this.miConsolidateAccounts.Click += new EventHandler(this.miConsolidateAccounts_Click);
     this.miAdmin.DropDownItems.AddRange(new ToolStripItem[] { this.miCustomAdmin, this.miAdhocSQL, this.adhocChartsToolStripMenuItem, this.miPacketSniffer, this.miShowEventLog, this.miAdmin_CreateVolunteerEffort, this.miAdmin_ViewVolunteers, this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem, this.miAdmin_Security, this.miAdmin_Avatars, this.spaceSiegeLobbyToolStripMenuItem, this.manageServerGamesToolStripMenuItem });
     this.miAdmin.Name = "miAdmin";
     this.miAdmin.Size = new Size(0x63, 20);
     this.miAdmin.Text = "<LOC>Admin";
     this.miAdmin.TextAlign = ContentAlignment.BottomCenter;
     this.miCustomAdmin.Name = "miCustomAdmin";
     this.miCustomAdmin.Size = new Size(0x18e, 0x16);
     this.miCustomAdmin.Text = "Custom Tools";
     this.miAdhocSQL.Name = "miAdhocSQL";
     this.miAdhocSQL.Size = new Size(0x18e, 0x16);
     this.miAdhocSQL.Text = "Adhoc SQL";
     this.miAdhocSQL.Click += new EventHandler(this.miAdhocSQL_Click);
     this.adhocChartsToolStripMenuItem.Name = "adhocChartsToolStripMenuItem";
     this.adhocChartsToolStripMenuItem.Size = new Size(0x18e, 0x16);
     this.adhocChartsToolStripMenuItem.Text = "Adhoc Charts";
     this.adhocChartsToolStripMenuItem.Click += new EventHandler(this.adhocChartsToolStripMenuItem_Click);
     this.miPacketSniffer.Name = "miPacketSniffer";
     this.miPacketSniffer.Size = new Size(0x18e, 0x16);
     this.miPacketSniffer.Tag = "Dev";
     this.miPacketSniffer.Text = "UDP Packet Sniffer";
     this.miPacketSniffer.Click += new EventHandler(this.miPacketSniffer_Click);
     this.miShowEventLog.Name = "miShowEventLog";
     this.miShowEventLog.Size = new Size(0x18e, 0x16);
     this.miShowEventLog.Tag = "Dev";
     this.miShowEventLog.Text = "Show Event Log";
     this.miShowEventLog.Click += new EventHandler(this.miEventLog_Click);
     this.miAdmin_CreateVolunteerEffort.Name = "miAdmin_CreateVolunteerEffort";
     this.miAdmin_CreateVolunteerEffort.Size = new Size(0x18e, 0x16);
     this.miAdmin_CreateVolunteerEffort.Text = "Create Volunteer Effort";
     this.miAdmin_CreateVolunteerEffort.Click += new EventHandler(this.miAdmin_CreateVolunteerEffort_Click);
     this.miAdmin_ViewVolunteers.Name = "miAdmin_ViewVolunteers";
     this.miAdmin_ViewVolunteers.Size = new Size(0x18e, 0x16);
     this.miAdmin_ViewVolunteers.Text = "View Volunteers";
     this.miAdmin_ViewVolunteers.Click += new EventHandler(this.miAdmin_ViewVolunteers_Click);
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem.Name = "forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem";
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem.Size = new Size(0x18e, 0x16);
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem.Tag = "Dev";
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem.Text = "Force all users to restart GPGnet (must be THE Admin)";
     this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem.Click += new EventHandler(this.forceAllUsersToRestartGPGnetmustBeTHEAdminToolStripMenuItem_Click);
     this.miAdmin_Security.Name = "miAdmin_Security";
     this.miAdmin_Security.Size = new Size(0x18e, 0x16);
     this.miAdmin_Security.Text = "Security";
     this.miAdmin_Security.Click += new EventHandler(this.miAdmin_Security_Click);
     this.miAdmin_Avatars.Name = "miAdmin_Avatars";
     this.miAdmin_Avatars.Size = new Size(0x18e, 0x16);
     this.miAdmin_Avatars.Text = "Assign Player Avatars";
     this.miAdmin_Avatars.Click += new EventHandler(this.miAdmin_Avatars_Click);
     this.spaceSiegeLobbyToolStripMenuItem.Name = "spaceSiegeLobbyToolStripMenuItem";
     this.spaceSiegeLobbyToolStripMenuItem.Size = new Size(0x18e, 0x16);
     this.spaceSiegeLobbyToolStripMenuItem.Text = "Space Siege Lobby";
     this.spaceSiegeLobbyToolStripMenuItem.Click += new EventHandler(this.spaceSiegeLobbyToolStripMenuItem_Click);
     this.manageServerGamesToolStripMenuItem.Name = "manageServerGamesToolStripMenuItem";
     this.manageServerGamesToolStripMenuItem.Size = new Size(0x18e, 0x16);
     this.manageServerGamesToolStripMenuItem.Text = "Manage Server Games";
     this.manageServerGamesToolStripMenuItem.Click += new EventHandler(this.manageServerGamesToolStripMenuItem_Click);
     this.miGameGroup.DropDownItems.AddRange(new ToolStripItem[] { this.miCustomGame, this.miJoinGame, this.miAutomatch, this.lOCArrangedTeamGameToolStripMenuItem, this.miGame_Vault, this.miCreateTournament, this.miTournamentSchedule, this.miGame_RedeemPrize });
     this.miGameGroup.Enabled = false;
     this.miGameGroup.Name = "miGameGroup";
     this.miGameGroup.Size = new Size(0x61, 20);
     this.miGameGroup.Text = "<LOC>Game";
     this.miGameGroup.TextAlign = ContentAlignment.BottomCenter;
     this.miCustomGame.Image = GPG.Multiplayer.Client.Properties.Resources.host;
     this.miCustomGame.Name = "miCustomGame";
     this.miCustomGame.Size = new Size(0x110, 0x16);
     this.miCustomGame.Text = "<LOC>Host Custom Game";
     this.miCustomGame.Click += new EventHandler(this.miCustomGame_Click);
     this.miJoinGame.Image = GPG.Multiplayer.Client.Properties.Resources.jointeam2;
     this.miJoinGame.Name = "miJoinGame";
     this.miJoinGame.Size = new Size(0x110, 0x16);
     this.miJoinGame.Text = "<LOC>Join Custom Game";
     this.miJoinGame.Click += new EventHandler(this.miJoinGame_Click);
     this.miAutomatch.Name = "miAutomatch";
     this.miAutomatch.Size = new Size(0x110, 0x16);
     this.miAutomatch.Text = "<LOC>Play Ranked Game";
     this.miAutomatch.Click += new EventHandler(this.miAutomatch_Click);
     this.lOCArrangedTeamGameToolStripMenuItem.Name = "lOCArrangedTeamGameToolStripMenuItem";
     this.lOCArrangedTeamGameToolStripMenuItem.Size = new Size(0x110, 0x16);
     this.lOCArrangedTeamGameToolStripMenuItem.Text = "<LOC>Arranged Team Game";
     this.lOCArrangedTeamGameToolStripMenuItem.Click += new EventHandler(this.lOCArrangedTeamGameToolStripMenuItem_Click);
     this.miGame_Vault.Name = "miGame_Vault";
     this.miGame_Vault.Size = new Size(0x110, 0x16);
     this.miGame_Vault.Text = "<LOC>Replay Vault";
     this.miGame_Vault.Click += new EventHandler(this.miGame_Vault_Click);
     this.miCreateTournament.Name = "miCreateTournament";
     this.miCreateTournament.Size = new Size(0x110, 0x16);
     this.miCreateTournament.Text = "<LOC>Create Tournament";
     this.miCreateTournament.Visible = false;
     this.miCreateTournament.Click += new EventHandler(this.miCreateTournament_Click);
     this.miTournamentSchedule.Name = "miTournamentSchedule";
     this.miTournamentSchedule.Size = new Size(0x110, 0x16);
     this.miTournamentSchedule.Text = "<LOC>Tournament Schedule";
     this.miTournamentSchedule.Click += new EventHandler(this.miTournamentSchedule_Click);
     this.miGame_RedeemPrize.Enabled = false;
     this.miGame_RedeemPrize.Name = "miGame_RedeemPrize";
     this.miGame_RedeemPrize.Size = new Size(0x110, 0x16);
     this.miGame_RedeemPrize.Text = "<LOC>Redeem Tournament Prize";
     this.miGame_RedeemPrize.Visible = false;
     this.miGame_RedeemPrize.Click += new EventHandler(this.miGame_RedeemPrize_Click);
     this.miRankings.DropDownItems.AddRange(new ToolStripItem[] { this.miRankings_1v1, this.lOC2v2RankingsToolStripMenuItem, this.lOC3v3RankingsToolStripMenuItem, this.lOC4v4RankingsToolStripMenuItem, this.lOCClanRankingsToolStripMenuItem });
     this.miRankings.Name = "miRankings";
     this.miRankings.Size = new Size(0x74, 20);
     this.miRankings.Text = "<LOC>Rankings";
     this.miRankings.TextAlign = ContentAlignment.BottomCenter;
     this.miRankings_1v1.Image = GPG.Multiplayer.Client.Properties.Resources.rankings1;
     this.miRankings_1v1.Name = "miRankings_1v1";
     this.miRankings_1v1.Size = new Size(0xd6, 0x16);
     this.miRankings_1v1.Text = "<LOC>1v1 Rankings...";
     this.miRankings_1v1.Click += new EventHandler(this.miRankings_1v1_Click);
     this.lOC2v2RankingsToolStripMenuItem.Name = "lOC2v2RankingsToolStripMenuItem";
     this.lOC2v2RankingsToolStripMenuItem.Size = new Size(0xd6, 0x16);
     this.lOC2v2RankingsToolStripMenuItem.Text = "<LOC>2v2 Rankings...";
     this.lOC2v2RankingsToolStripMenuItem.Click += new EventHandler(this.lOC2v2RankingsToolStripMenuItem_Click);
     this.lOC3v3RankingsToolStripMenuItem.Name = "lOC3v3RankingsToolStripMenuItem";
     this.lOC3v3RankingsToolStripMenuItem.Size = new Size(0xd6, 0x16);
     this.lOC3v3RankingsToolStripMenuItem.Text = "<LOC>3v3 Rankings...";
     this.lOC3v3RankingsToolStripMenuItem.Click += new EventHandler(this.lOC3v3RankingsToolStripMenuItem_Click);
     this.lOC4v4RankingsToolStripMenuItem.Name = "lOC4v4RankingsToolStripMenuItem";
     this.lOC4v4RankingsToolStripMenuItem.Size = new Size(0xd6, 0x16);
     this.lOC4v4RankingsToolStripMenuItem.Text = "<LOC>4v4 Rankings...";
     this.lOC4v4RankingsToolStripMenuItem.Click += new EventHandler(this.lOC4v4RankingsToolStripMenuItem_Click);
     this.lOCClanRankingsToolStripMenuItem.Name = "lOCClanRankingsToolStripMenuItem";
     this.lOCClanRankingsToolStripMenuItem.Size = new Size(0xd6, 0x16);
     this.lOCClanRankingsToolStripMenuItem.Text = "<LOC>Clan Rankings...";
     this.lOCClanRankingsToolStripMenuItem.Click += new EventHandler(this.lOCClanRankingsToolStripMenuItem_Click);
     this.miLadders.DropDownItems.AddRange(new ToolStripItem[] { this.miLadders_AcceptAll, this.miLadders_DeclineAll });
     this.miLadders.Name = "miLadders";
     this.miLadders.Size = new Size(0x6c, 20);
     this.miLadders.Text = "<LOC>Ladders";
     this.miLadders.TextAlign = ContentAlignment.BottomCenter;
     this.miLadders_AcceptAll.Name = "miLadders_AcceptAll";
     this.miLadders_AcceptAll.Size = new Size(0xf8, 0x16);
     this.miLadders_AcceptAll.Text = "<LOC>Accept All Challenges";
     this.miLadders_AcceptAll.Click += new EventHandler(this.miLadders_AcceptAll_Click);
     this.miLadders_DeclineAll.Name = "miLadders_DeclineAll";
     this.miLadders_DeclineAll.Size = new Size(0xf8, 0x16);
     this.miLadders_DeclineAll.Text = "<LOC>Decline All Challenges";
     this.miLadders_DeclineAll.Click += new EventHandler(this.miLadders_DeclineAll_Click);
     this.miTools.DropDownItems.AddRange(new ToolStripItem[] { this.miTools_Feedback, this.miTools_GameKeys, this.miTools_Chat, this.miTools_ContentManager, this.miTools_Options, this.miTools_LocPatches, this.miManageGames });
     this.miTools.Name = "miTools";
     this.miTools.Size = new Size(0x5d, 20);
     this.miTools.Text = "<LOC>Tools";
     this.miTools.TextAlign = ContentAlignment.BottomCenter;
     this.miTools_Feedback.Name = "miTools_Feedback";
     this.miTools_Feedback.Size = new Size(210, 0x16);
     this.miTools_Feedback.Text = "<LOC>Feedback";
     this.miTools_Feedback.Click += new EventHandler(this.miTools_Feedback_Click);
     this.miTools_GameKeys.Name = "miTools_GameKeys";
     this.miTools_GameKeys.Size = new Size(210, 0x16);
     this.miTools_GameKeys.Text = "<LOC>Game Keys...";
     this.miTools_GameKeys.Visible = false;
     this.miTools_GameKeys.Click += new EventHandler(this.miTools_GameKeys_Click);
     this.miTools_Chat.DropDownItems.AddRange(new ToolStripItem[] { this.miTools_Chat_Emotes });
     this.miTools_Chat.Name = "miTools_Chat";
     this.miTools_Chat.Size = new Size(210, 0x16);
     this.miTools_Chat.Text = "<LOC>Chat";
     this.miTools_Chat_Emotes.Name = "miTools_Chat_Emotes";
     this.miTools_Chat_Emotes.Size = new Size(0xaf, 0x16);
     this.miTools_Chat_Emotes.Text = "<LOC>Emotes...";
     this.miTools_Chat_Emotes.Click += new EventHandler(this.miTools_Chat_Emotes_Click);
     this.miTools_ContentManager.Name = "miTools_ContentManager";
     this.miTools_ContentManager.Size = new Size(210, 0x16);
     this.miTools_ContentManager.Text = "<LOC>The Vault";
     this.miTools_ContentManager.Click += new EventHandler(this.miTools_ContentManager_Click);
     this.miTools_Options.Name = "miTools_Options";
     this.miTools_Options.Size = new Size(210, 0x16);
     this.miTools_Options.Text = "<LOC>Options...";
     this.miTools_Options.Click += new EventHandler(this.miTools_Options_Click);
     this.miTools_LocPatches.Enabled = false;
     this.miTools_LocPatches.Name = "miTools_LocPatches";
     this.miTools_LocPatches.Size = new Size(210, 0x16);
     this.miTools_LocPatches.Text = "Loc Patches";
     this.miTools_LocPatches.Visible = false;
     this.miTools_LocPatches.Click += new EventHandler(this.miTools_LocPatches_Click);
     this.miManageGames.Name = "miManageGames";
     this.miManageGames.Size = new Size(210, 0x16);
     this.miManageGames.Text = "<LOC>Manage Games";
     this.miManageGames.Click += new EventHandler(this.miManageGames_Click);
     this.miHelp.DropDownItems.AddRange(new ToolStripItem[] { this.miHelp_Solutions, this.miHelp_Volunteer, this.miHelp_SupComHome, this.miHelp_GPGHome, this.miForums, this.miHelp_ReportIssue, this.miSpaceSiegeWeb, this.miHelp_About });
     this.miHelp.Name = "miHelp";
     this.miHelp.Size = new Size(0x58, 20);
     this.miHelp.Text = "<LOC>Help";
     this.miHelp.TextAlign = ContentAlignment.BottomCenter;
     this.miHelp_Solutions.Name = "miHelp_Solutions";
     this.miHelp_Solutions.Size = new Size(0x151, 0x16);
     this.miHelp_Solutions.Text = "<LOC>GPGnet Knowledge Base";
     this.miHelp_Solutions.Click += new EventHandler(this.miHelp_Solutions_Click);
     this.miHelp_Volunteer.Name = "miHelp_Volunteer";
     this.miHelp_Volunteer.Size = new Size(0x151, 0x16);
     this.miHelp_Volunteer.Text = "<LOC>Volunteer Opportunities";
     this.miHelp_Volunteer.Click += new EventHandler(this.miHelp_Volunteer_Click);
     this.miHelp_SupComHome.Name = "miHelp_SupComHome";
     this.miHelp_SupComHome.Size = new Size(0x151, 0x16);
     this.miHelp_SupComHome.Text = "<LOC>SupremeCommander.com";
     this.miHelp_SupComHome.Click += new EventHandler(this.miHelp_SupComHome_Click);
     this.miHelp_GPGHome.Name = "miHelp_GPGHome";
     this.miHelp_GPGHome.Size = new Size(0x151, 0x16);
     this.miHelp_GPGHome.Text = "<LOC>GasPowered.com";
     this.miHelp_GPGHome.Click += new EventHandler(this.miHelp_GPGHome_Click);
     this.miForums.Name = "miForums";
     this.miForums.Size = new Size(0x151, 0x16);
     this.miForums.Text = "<LOC>Forums.GasPowered.com";
     this.miForums.Click += new EventHandler(this.miForums_Click);
     this.miHelp_ReportIssue.Name = "miHelp_ReportIssue";
     this.miHelp_ReportIssue.Size = new Size(0x151, 0x16);
     this.miHelp_ReportIssue.Text = "<LOC>Report an Issue";
     this.miHelp_ReportIssue.Click += new EventHandler(this.miHelp_ReportIssue_Click);
     this.miHelp_About.Name = "miHelp_About";
     this.miHelp_About.Size = new Size(0x151, 0x16);
     this.miHelp_About.Text = "<LOC>About GPGnet: Supreme Commander";
     this.miHelp_About.Click += new EventHandler(this.aboutGPGNetToolStripMenuItem_Click);
     this.miSpaceSiegeWeb.Name = "miSpaceSiegeWeb";
     this.miSpaceSiegeWeb.Size = new Size(0x151, 0x16);
     this.miSpaceSiegeWeb.Text = "<LOC>spacesiege.com";
     this.miSpaceSiegeWeb.Visible = false;
     this.miSpaceSiegeWeb.Click += new EventHandler(this.lOCToolStripMenuItem_Click);
     this.pbClose.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pbClose.Image = (Image) manager.GetObject("pbClose.Image");
     this.pbClose.Location = new Point(0x39a, 10);
     this.pbClose.Name = "pbClose";
     this.pbClose.Size = new Size(0x21, 0x20);
     this.pbClose.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbClose, null);
     this.pbClose.TabIndex = 6;
     this.pbClose.TabStop = false;
     this.pbClose.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbClose.Click += new EventHandler(this.pbClose_Click);
     this.pbRestore.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pbRestore.Image = (Image) manager.GetObject("pbRestore.Image");
     this.pbRestore.Location = new Point(0x37b, 10);
     this.pbRestore.Name = "pbRestore";
     this.pbRestore.Size = new Size(0x21, 0x20);
     this.pbRestore.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbRestore, null);
     this.pbRestore.TabIndex = 5;
     this.pbRestore.TabStop = false;
     this.pbRestore.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbRestore.Click += new EventHandler(this.pbRestore_Click);
     this.pbMinimize.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pbMinimize.Image = (Image) manager.GetObject("pbMinimize.Image");
     this.pbMinimize.Location = new Point(0x35b, 10);
     this.pbMinimize.Name = "pbMinimize";
     this.pbMinimize.Size = new Size(0x21, 0x20);
     this.pbMinimize.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbMinimize, null);
     this.pbMinimize.TabIndex = 4;
     this.pbMinimize.TabStop = false;
     this.pbMinimize.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbMinimize.Click += new EventHandler(this.pbMinimize_Click);
     this.pbTopRight.Dock = DockStyle.Right;
     this.pbTopRight.Image = (Image) manager.GetObject("pbTopRight.Image");
     this.pbTopRight.Location = new Point(0x359, 0);
     this.pbTopRight.Name = "pbTopRight";
     this.pbTopRight.Size = new Size(0x8f, 0xc9);
     this.pbTopRight.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbTopRight, null);
     this.pbTopRight.TabIndex = 3;
     this.pbTopRight.TabStop = false;
     this.pbTopRight.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbTopRight.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.pbTop.Dock = DockStyle.Fill;
     this.pbTop.Image = (Image) manager.GetObject("pbTop.Image");
     this.pbTop.Location = new Point(0xa3, 0);
     this.pbTop.Name = "pbTop";
     this.pbTop.Size = new Size(0x345, 0xc9);
     this.pbTop.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pbTop, null);
     this.pbTop.TabIndex = 2;
     this.pbTop.TabStop = false;
     this.pbTop.DoubleClick += new EventHandler(this.pbRestore_Click);
     this.pbTop.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbTop.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.pbTopLeft.Dock = DockStyle.Left;
     this.pbTopLeft.Image = (Image) manager.GetObject("pbTopLeft.Image");
     this.pbTopLeft.Location = new Point(0, 0);
     this.pbTopLeft.Name = "pbTopLeft";
     this.pbTopLeft.Size = new Size(0xa3, 0xc9);
     this.pbTopLeft.SizeMode = PictureBoxSizeMode.AutoSize;
     base.ttDefault.SetSuperTip(this.pbTopLeft, null);
     this.pbTopLeft.TabIndex = 0;
     this.pbTopLeft.TabStop = false;
     this.pbTopLeft.DoubleClick += new EventHandler(this.pbRestore_Click);
     this.pbTopLeft.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbTopLeft.MouseUp += new MouseEventHandler(this.OnMouseUp);
     this.wbMain.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.wbMain.Location = new Point(0x31, 0x48);
     this.wbMain.MinimumSize = new Size(20, 20);
     this.wbMain.Name = "wbMain";
     this.wbMain.Size = new Size(0x38b, 90);
     base.ttDefault.SetSuperTip(this.wbMain, null);
     this.wbMain.TabIndex = 8;
     this.wbMain.Url = new Uri("", UriKind.Relative);
     this.splitContainerFriends.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerFriends.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.splitContainerFriends.FixedPanel = FixedPanel.Panel1;
     this.splitContainerFriends.IsSplitterFixed = true;
     this.splitContainerFriends.Location = new Point(2, 2);
     this.splitContainerFriends.Name = "splitContainerFriends";
     this.splitContainerFriends.Orientation = Orientation.Horizontal;
     this.splitContainerFriends.Panel1.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.splitContainerFriends.Panel1.Controls.Add(this.gpgLabelFriendInvites2);
     this.splitContainerFriends.Panel1.Controls.Add(this.gpgLabelFriendInvitesCount2);
     base.ttDefault.SetSuperTip(this.splitContainerFriends.Panel1, null);
     this.splitContainerFriends.Panel1MinSize = 20;
     this.splitContainerFriends.Panel2.Controls.Add(this.gpgScrollPanelFriends);
     base.ttDefault.SetSuperTip(this.splitContainerFriends.Panel2, null);
     this.splitContainerFriends.Size = new Size(0x106, 0x1c7);
     this.splitContainerFriends.SplitterDistance = 0x17;
     this.splitContainerFriends.SplitterWidth = 1;
     base.ttDefault.SetSuperTip(this.splitContainerFriends, null);
     this.splitContainerFriends.TabIndex = 5;
     this.gpgLabelFriendInvites2.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelFriendInvites2.AutoSize = true;
     this.gpgLabelFriendInvites2.AutoStyle = true;
     this.gpgLabelFriendInvites2.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgLabelFriendInvites2.Font = new Font("Arial", 9.75f);
     this.gpgLabelFriendInvites2.ForeColor = System.Drawing.Color.White;
     this.gpgLabelFriendInvites2.IgnoreMouseWheel = false;
     this.gpgLabelFriendInvites2.IsStyled = false;
     this.gpgLabelFriendInvites2.Location = new Point(3, 4);
     this.gpgLabelFriendInvites2.Name = "gpgLabelFriendInvites2";
     this.gpgLabelFriendInvites2.Size = new Size(0x8b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelFriendInvites2, null);
     this.gpgLabelFriendInvites2.TabIndex = 12;
     this.gpgLabelFriendInvites2.Text = "<LOC>View Invitations";
     this.gpgLabelFriendInvites2.TextStyle = TextStyles.Link;
     this.gpgLabelFriendInvites2.Click += new EventHandler(this.gpgLabelFriendInvites2_Click);
     this.gpgLabelFriendInvitesCount2.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelFriendInvitesCount2.AutoSize = true;
     this.gpgLabelFriendInvitesCount2.AutoStyle = true;
     this.gpgLabelFriendInvitesCount2.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgLabelFriendInvitesCount2.ForeColor = System.Drawing.Color.White;
     this.gpgLabelFriendInvitesCount2.IgnoreMouseWheel = false;
     this.gpgLabelFriendInvitesCount2.IsStyled = false;
     this.gpgLabelFriendInvitesCount2.Location = new Point(0x7b, 3);
     this.gpgLabelFriendInvitesCount2.Margin = new Padding(0);
     this.gpgLabelFriendInvitesCount2.Name = "gpgLabelFriendInvitesCount2";
     this.gpgLabelFriendInvitesCount2.Size = new Size(0x17, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelFriendInvitesCount2, null);
     this.gpgLabelFriendInvitesCount2.TabIndex = 11;
     this.gpgLabelFriendInvitesCount2.Text = "(0)";
     this.gpgLabelFriendInvitesCount2.TextStyle = TextStyles.Default;
     this.gpgScrollPanelFriends.AutoScroll = true;
     this.gpgScrollPanelFriends.BackColor = System.Drawing.Color.Black;
     this.gpgScrollPanelFriends.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgScrollPanelFriends.BorderThickness = 2;
     this.gpgScrollPanelFriends.ChildControl = null;
     this.gpgScrollPanelFriends.Controls.Add(this.pnlUserListFriends);
     this.gpgScrollPanelFriends.Controls.Add(this.gpgLabelNoFriends);
     this.gpgScrollPanelFriends.Dock = DockStyle.Fill;
     this.gpgScrollPanelFriends.DrawBorder = false;
     this.gpgScrollPanelFriends.Location = new Point(0, 0);
     this.gpgScrollPanelFriends.Name = "gpgScrollPanelFriends";
     this.gpgScrollPanelFriends.Size = new Size(0x106, 0x1af);
     base.ttDefault.SetSuperTip(this.gpgScrollPanelFriends, null);
     this.gpgScrollPanelFriends.TabIndex = 0;
     this.pnlUserListFriends.AutoRefresh = true;
     this.pnlUserListFriends.AutoScroll = true;
     this.pnlUserListFriends.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.pnlUserListFriends.Dock = DockStyle.Fill;
     this.pnlUserListFriends.Location = new Point(0, 0);
     this.pnlUserListFriends.Name = "pnlUserListFriends";
     this.pnlUserListFriends.Size = new Size(0x106, 0x1af);
     this.pnlUserListFriends.Style = UserListStyles.OnlineOffline;
     base.ttDefault.SetSuperTip(this.pnlUserListFriends, null);
     this.pnlUserListFriends.TabIndex = 0;
     this.gpgLabelNoFriends.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelNoFriends.AutoStyle = true;
     this.gpgLabelNoFriends.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgLabelNoFriends.Dock = DockStyle.Fill;
     this.gpgLabelNoFriends.Font = new Font("Arial", 9.75f);
     this.gpgLabelNoFriends.ForeColor = System.Drawing.Color.White;
     this.gpgLabelNoFriends.IgnoreMouseWheel = false;
     this.gpgLabelNoFriends.IsStyled = false;
     this.gpgLabelNoFriends.Location = new Point(0, 0);
     this.gpgLabelNoFriends.Name = "gpgLabelNoFriends";
     this.gpgLabelNoFriends.Size = new Size(0x106, 0x1af);
     base.ttDefault.SetSuperTip(this.gpgLabelNoFriends, null);
     this.gpgLabelNoFriends.TabIndex = 1;
     this.gpgLabelNoFriends.Text = manager.GetString("gpgLabelNoFriends.Text");
     this.gpgLabelNoFriends.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabelNoFriends.TextStyle = TextStyles.Default;
     this.splitContainerClan.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.splitContainerClan.FixedPanel = FixedPanel.Panel1;
     this.splitContainerClan.IsSplitterFixed = true;
     this.splitContainerClan.Location = new Point(2, 0x16);
     this.splitContainerClan.Margin = new Padding(0);
     this.splitContainerClan.Name = "splitContainerClan";
     this.splitContainerClan.Orientation = Orientation.Horizontal;
     this.splitContainerClan.Panel1.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.splitContainerClan.Panel1.Controls.Add(this.gpgLabelClanRequests);
     this.splitContainerClan.Panel1.Controls.Add(this.gpgLabelClanRequestCount);
     base.ttDefault.SetSuperTip(this.splitContainerClan.Panel1, null);
     this.splitContainerClan.Panel1MinSize = 20;
     this.splitContainerClan.Panel2.Controls.Add(this.gpgScrollPanelClan);
     this.splitContainerClan.Panel2.Controls.Add(this.gpgScrollPanelNoClan);
     base.ttDefault.SetSuperTip(this.splitContainerClan.Panel2, null);
     this.splitContainerClan.Size = new Size(0x106, 0x1b3);
     this.splitContainerClan.SplitterDistance = 20;
     this.splitContainerClan.SplitterWidth = 1;
     base.ttDefault.SetSuperTip(this.splitContainerClan, null);
     this.splitContainerClan.TabIndex = 6;
     this.gpgLabelClanRequests.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelClanRequests.AutoSize = true;
     this.gpgLabelClanRequests.AutoStyle = true;
     this.gpgLabelClanRequests.Font = new Font("Arial", 9.75f);
     this.gpgLabelClanRequests.ForeColor = System.Drawing.Color.White;
     this.gpgLabelClanRequests.IgnoreMouseWheel = false;
     this.gpgLabelClanRequests.IsStyled = false;
     this.gpgLabelClanRequests.Location = new Point(-1, 0);
     this.gpgLabelClanRequests.Name = "gpgLabelClanRequests";
     this.gpgLabelClanRequests.Size = new Size(0x89, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelClanRequests, null);
     this.gpgLabelClanRequests.TabIndex = 2;
     this.gpgLabelClanRequests.Text = "<LOC>View Requests";
     this.gpgLabelClanRequests.TextStyle = TextStyles.Link;
     this.gpgLabelClanRequests.Click += new EventHandler(this.gpgLabelClanRequests_Click);
     this.gpgLabelClanRequestCount.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelClanRequestCount.AutoSize = true;
     this.gpgLabelClanRequestCount.AutoStyle = true;
     this.gpgLabelClanRequestCount.Font = new Font("Arial", 9.75f);
     this.gpgLabelClanRequestCount.ForeColor = System.Drawing.Color.White;
     this.gpgLabelClanRequestCount.IgnoreMouseWheel = false;
     this.gpgLabelClanRequestCount.IsStyled = false;
     this.gpgLabelClanRequestCount.Location = new Point(140, 0);
     this.gpgLabelClanRequestCount.Name = "gpgLabelClanRequestCount";
     this.gpgLabelClanRequestCount.Size = new Size(0x17, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelClanRequestCount, null);
     this.gpgLabelClanRequestCount.TabIndex = 1;
     this.gpgLabelClanRequestCount.Text = "(0)";
     this.gpgLabelClanRequestCount.TextStyle = TextStyles.Default;
     this.gpgScrollPanelClan.AutoScroll = true;
     this.gpgScrollPanelClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgScrollPanelClan.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgScrollPanelClan.BorderThickness = 2;
     this.gpgScrollPanelClan.ChildControl = null;
     this.gpgScrollPanelClan.Controls.Add(this.pnlUserListClan);
     this.gpgScrollPanelClan.Dock = DockStyle.Fill;
     this.gpgScrollPanelClan.DrawBorder = false;
     this.gpgScrollPanelClan.Location = new Point(0, 0);
     this.gpgScrollPanelClan.Name = "gpgScrollPanelClan";
     this.gpgScrollPanelClan.Size = new Size(0x106, 0x19e);
     base.ttDefault.SetSuperTip(this.gpgScrollPanelClan, null);
     this.gpgScrollPanelClan.TabIndex = 1;
     this.pnlUserListClan.AutoRefresh = true;
     this.pnlUserListClan.AutoScroll = true;
     this.pnlUserListClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.pnlUserListClan.Dock = DockStyle.Fill;
     this.pnlUserListClan.Location = new Point(0, 0);
     this.pnlUserListClan.Name = "pnlUserListClan";
     this.pnlUserListClan.Size = new Size(0x106, 0x19e);
     this.pnlUserListClan.Style = UserListStyles.Clan;
     base.ttDefault.SetSuperTip(this.pnlUserListClan, null);
     this.pnlUserListClan.TabIndex = 0;
     this.gpgScrollPanelNoClan.AutoScroll = true;
     this.gpgScrollPanelNoClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgScrollPanelNoClan.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgScrollPanelNoClan.BorderThickness = 2;
     this.gpgScrollPanelNoClan.ChildControl = null;
     this.gpgScrollPanelNoClan.Controls.Add(this.gpgLabelClanInvites);
     this.gpgScrollPanelNoClan.Controls.Add(this.gpgLabelCreateClan);
     this.gpgScrollPanelNoClan.Controls.Add(this.gpgLabelClanInviteCount);
     this.gpgScrollPanelNoClan.Controls.Add(this.gpgLabelNoClan);
     this.gpgScrollPanelNoClan.Dock = DockStyle.Fill;
     this.gpgScrollPanelNoClan.DrawBorder = false;
     this.gpgScrollPanelNoClan.Location = new Point(0, 0);
     this.gpgScrollPanelNoClan.Name = "gpgScrollPanelNoClan";
     this.gpgScrollPanelNoClan.Size = new Size(0x106, 0x19e);
     base.ttDefault.SetSuperTip(this.gpgScrollPanelNoClan, null);
     this.gpgScrollPanelNoClan.TabIndex = 5;
     this.gpgLabelClanInvites.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelClanInvites.AutoSize = true;
     this.gpgLabelClanInvites.AutoStyle = true;
     this.gpgLabelClanInvites.Font = new Font("Arial", 9.75f);
     this.gpgLabelClanInvites.ForeColor = System.Drawing.Color.White;
     this.gpgLabelClanInvites.IgnoreMouseWheel = false;
     this.gpgLabelClanInvites.IsStyled = false;
     this.gpgLabelClanInvites.Location = new Point(4, 0x5c);
     this.gpgLabelClanInvites.Name = "gpgLabelClanInvites";
     this.gpgLabelClanInvites.Size = new Size(0x8b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelClanInvites, null);
     this.gpgLabelClanInvites.TabIndex = 9;
     this.gpgLabelClanInvites.Text = "<LOC>View Invitations";
     this.gpgLabelClanInvites.TextStyle = TextStyles.Link;
     this.gpgLabelClanInvites.Click += new EventHandler(this.gpgLabelClanInvites_Click);
     this.gpgLabelCreateClan.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelCreateClan.AutoSize = true;
     this.gpgLabelCreateClan.AutoStyle = true;
     this.gpgLabelCreateClan.Font = new Font("Arial", 9.75f);
     this.gpgLabelCreateClan.ForeColor = System.Drawing.Color.White;
     this.gpgLabelCreateClan.IgnoreMouseWheel = false;
     this.gpgLabelCreateClan.IsStyled = false;
     this.gpgLabelCreateClan.Location = new Point(4, 0x43);
     this.gpgLabelCreateClan.Name = "gpgLabelCreateClan";
     this.gpgLabelCreateClan.Size = new Size(0x76, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelCreateClan, null);
     this.gpgLabelCreateClan.TabIndex = 8;
     this.gpgLabelCreateClan.Text = "<LOC>Create Clan";
     this.gpgLabelCreateClan.TextStyle = TextStyles.Link;
     this.gpgLabelCreateClan.Click += new EventHandler(this.gpgLabelCreateClan_Click);
     this.gpgLabelClanInviteCount.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelClanInviteCount.AutoSize = true;
     this.gpgLabelClanInviteCount.AutoStyle = true;
     this.gpgLabelClanInviteCount.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgLabelClanInviteCount.ForeColor = System.Drawing.Color.White;
     this.gpgLabelClanInviteCount.IgnoreMouseWheel = false;
     this.gpgLabelClanInviteCount.IsStyled = false;
     this.gpgLabelClanInviteCount.Location = new Point(0x7b, 0x5c);
     this.gpgLabelClanInviteCount.Margin = new Padding(0);
     this.gpgLabelClanInviteCount.Name = "gpgLabelClanInviteCount";
     this.gpgLabelClanInviteCount.Size = new Size(0x17, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelClanInviteCount, null);
     this.gpgLabelClanInviteCount.TabIndex = 7;
     this.gpgLabelClanInviteCount.Text = "(0)";
     this.gpgLabelClanInviteCount.TextStyle = TextStyles.Default;
     this.gpgLabelNoClan.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelNoClan.AutoStyle = true;
     this.gpgLabelNoClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgLabelNoClan.Dock = DockStyle.Top;
     this.gpgLabelNoClan.Font = new Font("Arial", 9.75f);
     this.gpgLabelNoClan.ForeColor = System.Drawing.Color.White;
     this.gpgLabelNoClan.IgnoreMouseWheel = false;
     this.gpgLabelNoClan.IsStyled = false;
     this.gpgLabelNoClan.Location = new Point(0, 0);
     this.gpgLabelNoClan.Name = "gpgLabelNoClan";
     this.gpgLabelNoClan.Size = new Size(0x106, 0x35);
     base.ttDefault.SetSuperTip(this.gpgLabelNoClan, null);
     this.gpgLabelNoClan.TabIndex = 4;
     this.gpgLabelNoClan.Text = "<LOC id=_310c9adeef7ceaff3fb510305d0d2d37>You are not currently a member of a clan.  To join one, choose from the following options";
     this.gpgLabelNoClan.TextAlign = ContentAlignment.TopCenter;
     this.gpgLabelNoClan.TextStyle = TextStyles.Default;
     this.skinLabelClanName.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabelClanName.AutoStyle = false;
     this.skinLabelClanName.BackColor = System.Drawing.Color.Black;
     this.skinLabelClanName.Cursor = Cursors.Hand;
     this.skinLabelClanName.DrawEdges = true;
     this.skinLabelClanName.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabelClanName.ForeColor = System.Drawing.Color.White;
     this.skinLabelClanName.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabelClanName.IsStyled = false;
     this.skinLabelClanName.Location = new Point(2, 2);
     this.skinLabelClanName.Margin = new Padding(0);
     this.skinLabelClanName.Name = "skinLabelClanName";
     this.skinLabelClanName.Size = new Size(0x106, 20);
     this.skinLabelClanName.SkinBasePath = @"Controls\Background Label\Rectangle";
     base.ttDefault.SetSuperTip(this.skinLabelClanName, null);
     this.skinLabelClanName.TabIndex = 3;
     this.skinLabelClanName.TextAlign = ContentAlignment.MiddleCenter;
     this.skinLabelClanName.TextPadding = new Padding(0);
     this.skinLabelClanName.Click += new EventHandler(this.skinLabelClanName_Click);
     this.pbLeftBorder.Anchor = AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.pbLeftBorder.Image = (Image) manager.GetObject("pbLeftBorder.Image");
     this.pbLeftBorder.Location = new Point(0, 0xc9);
     this.pbLeftBorder.Name = "pbLeftBorder";
     this.pbLeftBorder.Size = new Size(6, 0x200);
     this.pbLeftBorder.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pbLeftBorder, null);
     this.pbLeftBorder.TabIndex = 6;
     this.pbLeftBorder.TabStop = false;
     this.pbLeftBorder.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.pbRightBorder.Anchor = AnchorStyles.Right | AnchorStyles.Bottom | AnchorStyles.Top;
     this.pbRightBorder.Image = (Image) manager.GetObject("pbRightBorder.Image");
     this.pbRightBorder.Location = new Point(0x3e3, 0xc9);
     this.pbRightBorder.Name = "pbRightBorder";
     this.pbRightBorder.Size = new Size(5, 0x1f7);
     this.pbRightBorder.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pbRightBorder, null);
     this.pbRightBorder.TabIndex = 7;
     this.pbRightBorder.TabStop = false;
     this.pbRightBorder.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.rimPictureEdit.Name = "rimPictureEdit";
     this.rimMemoEdit.Name = "rimMemoEdit";
     this.rimPictureEdit2.Name = "rimPictureEdit2";
     this.rimMemoEdit2.Name = "rimMemoEdit2";
     this.gpgChatGrid.CustomizeStyle = true;
     this.gpgChatGrid.Dock = DockStyle.Fill;
     this.gpgChatGrid.EmbeddedNavigator.Name = "";
     this.gpgChatGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgChatGrid.IgnoreMouseWheel = false;
     this.gpgChatGrid.Location = new Point(0, 0);
     this.gpgChatGrid.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgChatGrid.LookAndFeel.Style = LookAndFeelStyle.UltraFlat;
     this.gpgChatGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgChatGrid.MainView = this.gvChat;
     this.gpgChatGrid.Name = "gpgChatGrid";
     this.gpgChatGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgChatGrid.ShowOnlyPredefinedDetails = true;
     this.gpgChatGrid.Size = new Size(0x2bd, 0x1a0);
     this.gpgChatGrid.TabIndex = 10;
     this.gpgChatGrid.ViewCollection.AddRange(new BaseView[] { this.gvChat });
     this.gvChat.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvChat.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvChat.Appearance.Empty.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.Empty.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(90, 90, 90);
     this.gvChat.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvChat.Appearance.FilterPanel.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvChat.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FocusedCell.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.Options.UseFont = true;
     this.gvChat.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvChat.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.Black;
     this.gvChat.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Bold);
     this.gvChat.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedRow.Options.UseFont = true;
     this.gvChat.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.FooterPanel.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.FooterPanel.BorderColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FooterPanel.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseFont = true;
     this.gvChat.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupButton.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.GroupButton.BorderColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.GroupButton.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupPanel.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.gvChat.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupPanel.Options.UseFont = true;
     this.gvChat.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupRow.BackColor = System.Drawing.Color.Gray;
     this.gvChat.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.GroupRow.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupRow.Options.UseFont = true;
     this.gvChat.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HeaderPanel.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HorzLine.BackColor = System.Drawing.Color.Yellow;
     this.gvChat.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.BackColor = System.Drawing.Color.White;
     this.gvChat.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.Preview.ForeColor = System.Drawing.Color.Purple;
     this.gvChat.Appearance.Preview.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.Options.UseFont = true;
     this.gvChat.Appearance.Preview.Options.UseForeColor = true;
     this.gvChat.Appearance.Row.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0xb2);
     this.gvChat.Appearance.Row.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.Row.Options.UseBackColor = true;
     this.gvChat.Appearance.Row.Options.UseFont = true;
     this.gvChat.Appearance.Row.Options.UseForeColor = true;
     this.gvChat.Appearance.RowSeparator.BackColor = System.Drawing.Color.Black;
     this.gvChat.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.Black;
     this.gvChat.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.SelectedRow.BackColor2 = System.Drawing.Color.Black;
     this.gvChat.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvChat.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.Options.UseFont = true;
     this.gvChat.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.TopNewRow.ForeColor = System.Drawing.Color.White;
     this.gvChat.Appearance.TopNewRow.Options.UseFont = true;
     this.gvChat.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvChat.Appearance.VertLine.BackColor = System.Drawing.Color.Yellow;
     this.gvChat.Appearance.VertLine.Options.UseBackColor = true;
     this.gvChat.BorderStyle = BorderStyles.NoBorder;
     this.gvChat.Columns.AddRange(new GridColumn[] { this.colIcon, this.colPlayer, this.colText, this.gcVisible, this.colTimeStamp });
     this.gvChat.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvChat.GridControl = this.gpgChatGrid;
     this.gvChat.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvChat.Name = "gvChat";
     this.gvChat.OptionsDetail.AllowZoomDetail = false;
     this.gvChat.OptionsDetail.EnableMasterViewMode = false;
     this.gvChat.OptionsDetail.ShowDetailTabs = false;
     this.gvChat.OptionsDetail.SmartDetailExpand = false;
     this.gvChat.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvChat.OptionsSelection.MultiSelect = true;
     this.gvChat.OptionsView.RowAutoHeight = true;
     this.gvChat.OptionsView.ShowColumnHeaders = false;
     this.gvChat.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvChat.OptionsView.ShowGroupPanel = false;
     this.gvChat.OptionsView.ShowHorzLines = false;
     this.gvChat.OptionsView.ShowIndicator = false;
     this.gvChat.OptionsView.ShowVertLines = false;
     this.gvChat.PaintStyleName = "Web";
     this.gvChat.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvChat_CustomDrawCell);
     this.gvChat.RowCountChanged += new EventHandler(this.gvChat_RowCountChanged);
     this.gvChat.TopRowChanged += new EventHandler(this.gvChat_TopRowChanged);
     this.gvChat.CalcRowHeight += new RowHeightEventHandler(this.gvChat_CalcRowHeight);
     this.colIcon.Caption = "<LOC>Player Icon";
     this.colIcon.ColumnEdit = this.rimPictureEdit3;
     this.colIcon.FieldName = "Icon";
     this.colIcon.MinWidth = 0x2a;
     this.colIcon.Name = "colIcon";
     this.colIcon.OptionsColumn.AllowEdit = false;
     this.colIcon.OptionsColumn.FixedWidth = true;
     this.colIcon.OptionsColumn.ReadOnly = true;
     this.colIcon.Width = 0x2a;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.colPlayer.Caption = "<LOC>Player Name";
     this.colPlayer.ColumnEdit = this.rimMemoEdit3;
     this.colPlayer.FieldName = "PlayerInfo";
     this.colPlayer.Name = "colPlayer";
     this.colPlayer.OptionsColumn.AllowEdit = false;
     this.colPlayer.OptionsColumn.FixedWidth = true;
     this.colPlayer.OptionsColumn.ReadOnly = true;
     this.colPlayer.Visible = true;
     this.colPlayer.VisibleIndex = 0;
     this.colPlayer.Width = 150;
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.colText.Caption = "<LOC>Chat Content";
     this.colText.ColumnEdit = this.rimMemoEdit3;
     this.colText.FieldName = "Text";
     this.colText.Name = "colText";
     this.colText.OptionsColumn.AllowEdit = false;
     this.colText.OptionsColumn.ReadOnly = true;
     this.colText.Visible = true;
     this.colText.VisibleIndex = 1;
     this.colText.Width = 0x188;
     this.gcVisible.Caption = "Visible";
     this.gcVisible.FieldName = "IsVisible";
     this.gcVisible.Name = "gcVisible";
     this.gcVisible.OptionsColumn.ShowInCustomizationForm = false;
     this.colTimeStamp.AppearanceCell.ForeColor = System.Drawing.Color.White;
     this.colTimeStamp.AppearanceCell.Options.UseForeColor = true;
     this.colTimeStamp.Caption = "<LOC>Time";
     this.colTimeStamp.FieldName = "TimeStamp";
     this.colTimeStamp.Name = "colTimeStamp";
     this.colTimeStamp.OptionsColumn.AllowEdit = false;
     this.colTimeStamp.OptionsColumn.ReadOnly = true;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.ilIcons.ImageStream = (ImageListStreamer) manager.GetObject("ilIcons.ImageStream");
     this.ilIcons.TransparentColor = System.Drawing.Color.Transparent;
     this.ilIcons.Images.SetKeyName(0, "pdahlke-netlab19.png");
     this.gridColumn1.Caption = "Player Icon";
     this.gridColumn1.ColumnEdit = this.repositoryItemPictureEdit1;
     this.gridColumn1.FieldName = "Icon";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.OptionsColumn.AllowEdit = false;
     this.gridColumn1.OptionsColumn.FixedWidth = true;
     this.gridColumn1.OptionsColumn.ReadOnly = true;
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 40;
     this.gridColumn2.Caption = "Player Name";
     this.gridColumn2.ColumnEdit = this.repositoryItemMemoEdit1;
     this.gridColumn2.FieldName = "PlayerInfo";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.OptionsColumn.AllowEdit = false;
     this.gridColumn2.OptionsColumn.FixedWidth = true;
     this.gridColumn2.OptionsColumn.ReadOnly = true;
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 100;
     this.gridColumn3.Caption = "Chat Content";
     this.gridColumn3.ColumnEdit = this.repositoryItemMemoEdit1;
     this.gridColumn3.FieldName = "Text";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.OptionsColumn.AllowEdit = false;
     this.gridColumn3.OptionsColumn.ReadOnly = true;
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 0x192;
     this.pcTextEntry.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.pcTextEntry.Appearance.BackColor = System.Drawing.Color.Black;
     this.pcTextEntry.Appearance.Options.UseBackColor = true;
     this.pcTextEntry.BorderStyle = BorderStyles.NoBorder;
     this.pcTextEntry.Location = new Point(0x18, 0x28e);
     this.pcTextEntry.LookAndFeel.Style = LookAndFeelStyle.Flat;
     this.pcTextEntry.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pcTextEntry.LookAndFeel.UseWindowsXPTheme = true;
     this.pcTextEntry.Name = "pcTextEntry";
     this.pcTextEntry.Size = new Size(0x2cc, 0x18);
     base.ttDefault.SetSuperTip(this.pcTextEntry, null);
     this.pcTextEntry.TabIndex = 12;
     this.pcTextEntry.Text = "panelControl1";
     this.gpgContextMenuChat.MenuItems.AddRange(new MenuItem[] { 
         this.ciChat_WhisperPlayer, this.ciChat_IgnorePlayer, this.ciChat_UnignorePlayer, this.ciChat_ViewRank, this.ciChat_WebStats, this.ciChat_ViewPlayer, this.miViewReplays, this.menuItem10, this.ciChat_InviteFriend, this.ciChat_RemoveFriend, this.menuItem8, this.ciChat_InviteToClan, this.ciChat_RequestClanInvite, this.ciChat_ViewClan, this.ciChat_PromoteClan, this.ciChat_DemoteClan, 
         this.ciChat_RemoveClan, this.ciChat_LeaveClan, this.menuItem3, this.ciChat_Kick, this.ciChat_Ban, this.menuItem7, this.ciChat_TeamInvite
      });
     this.ciChat_WhisperPlayer.Index = 0;
     this.ciChat_WhisperPlayer.Text = "<LOC>Send private message";
     this.ciChat_WhisperPlayer.Click += new EventHandler(this.ciChat_WhisperPlayer_Click);
     this.ciChat_IgnorePlayer.Index = 1;
     this.ciChat_IgnorePlayer.Text = "<LOC>Ignore this player";
     this.ciChat_IgnorePlayer.Click += new EventHandler(this.ciChat_IgnorePlayer_Click);
     this.ciChat_UnignorePlayer.Index = 2;
     this.ciChat_UnignorePlayer.Text = "<LOC>Unignore this player";
     this.ciChat_UnignorePlayer.Click += new EventHandler(this.ciChat_UnignorePlayer_Click);
     this.ciChat_ViewRank.Index = 3;
     this.ciChat_ViewRank.Text = "<LOC>View in ranking ladder";
     this.ciChat_ViewRank.Visible = false;
     this.ciChat_ViewRank.Click += new EventHandler(this.ciChat_ViewRank_Click);
     this.ciChat_WebStats.Index = 4;
     this.ciChat_WebStats.Text = "<LOC>View web statistics";
     this.ciChat_WebStats.Click += new EventHandler(this.ciChat_WebStats_Click);
     this.ciChat_ViewPlayer.Index = 5;
     this.ciChat_ViewPlayer.Text = "<LOC>View this player's profile";
     this.ciChat_ViewPlayer.Click += new EventHandler(this.ciChat_ViewPlayer_Click);
     this.miViewReplays.Index = 6;
     this.miViewReplays.Text = "<LOC>View this player's Replays";
     this.miViewReplays.Click += new EventHandler(this.miViewReplays_Click);
     this.menuItem10.Index = 7;
     this.menuItem10.Text = "-";
     this.ciChat_InviteFriend.Index = 8;
     this.ciChat_InviteFriend.Text = "<LOC>Invite player to join Friends list";
     this.ciChat_InviteFriend.Click += new EventHandler(this.ciChat_InviteFriend_Click);
     this.ciChat_RemoveFriend.Index = 9;
     this.ciChat_RemoveFriend.Text = "<LOC>Remove player from Friends list";
     this.ciChat_RemoveFriend.Click += new EventHandler(this.ciChat_RemoveFriend_Click);
     this.menuItem8.Index = 10;
     this.menuItem8.Text = "-";
     this.ciChat_InviteToClan.Index = 11;
     this.ciChat_InviteToClan.Text = "<LOC>Invite this player to join clan";
     this.ciChat_InviteToClan.Click += new EventHandler(this.ciChat_InviteToClan_Click);
     this.ciChat_RequestClanInvite.Index = 12;
     this.ciChat_RequestClanInvite.Text = "<LOC>Request to join this player's clan";
     this.ciChat_RequestClanInvite.Click += new EventHandler(this.ciChat_RequestClanInvite_Click);
     this.ciChat_ViewClan.Index = 13;
     this.ciChat_ViewClan.Text = "<LOC>View this clan's profile";
     this.ciChat_ViewClan.Click += new EventHandler(this.ciChat_ViewClan_Click);
     this.ciChat_PromoteClan.Index = 14;
     this.ciChat_PromoteClan.Text = "<LOC>Promote";
     this.ciChat_PromoteClan.Click += new EventHandler(this.ciChat_PromoteClan_Click);
     this.ciChat_DemoteClan.Index = 15;
     this.ciChat_DemoteClan.Text = "<LOC>Demote";
     this.ciChat_DemoteClan.Click += new EventHandler(this.ciChat_DemoteClan_Click);
     this.ciChat_RemoveClan.Index = 0x10;
     this.ciChat_RemoveClan.Text = "<LOC>Remove from clan";
     this.ciChat_RemoveClan.Click += new EventHandler(this.ciChat_RemoveClan_Click);
     this.ciChat_LeaveClan.Index = 0x11;
     this.ciChat_LeaveClan.Text = "<LOC>Leave clan";
     this.ciChat_LeaveClan.Click += new EventHandler(this.ciChat_LeaveClan_Click);
     this.menuItem3.Index = 0x12;
     this.menuItem3.Text = "-";
     this.ciChat_Kick.Index = 0x13;
     this.ciChat_Kick.Text = "<LOC>Kick";
     this.ciChat_Kick.Click += new EventHandler(this.ciChat_Kick_Click);
     this.ciChat_Ban.Index = 20;
     this.ciChat_Ban.Text = "<LOC>Ban";
     this.ciChat_Ban.Click += new EventHandler(this.ciChat_Ban_Click);
     this.menuItem7.Index = 0x15;
     this.menuItem7.Text = "-";
     this.ciChat_TeamInvite.Index = 0x16;
     this.ciChat_TeamInvite.Text = "<LOC>Invite to Arranged Team";
     this.ciChat_TeamInvite.Click += new EventHandler(this.ciChat_TeamInvite_Click);
     this.textBoxMsg.BorderColor = System.Drawing.Color.White;
     this.textBoxMsg.Dock = DockStyle.Fill;
     this.textBoxMsg.Location = new Point(0, 0);
     this.textBoxMsg.Name = "textBoxMsg";
     this.textBoxMsg.Properties.AcceptsReturn = false;
     this.textBoxMsg.Properties.Appearance.BackColor = System.Drawing.Color.Black;
     this.textBoxMsg.Properties.Appearance.BorderColor = System.Drawing.Color.FromArgb(0x52, 0x83, 190);
     this.textBoxMsg.Properties.Appearance.ForeColor = System.Drawing.Color.White;
     this.textBoxMsg.Properties.Appearance.Options.UseBackColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseForeColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.BackColor = System.Drawing.Color.FromArgb(0x2e, 0x2e, 0x49);
     this.textBoxMsg.Properties.AppearanceFocused.BackColor2 = System.Drawing.Color.FromArgb(0, 0, 0);
     this.textBoxMsg.Properties.AppearanceFocused.BorderColor = System.Drawing.Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.textBoxMsg.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.BorderStyle = BorderStyles.NoBorder;
     this.textBoxMsg.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.textBoxMsg.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.textBoxMsg.Properties.MaxLength = 0x400;
     this.textBoxMsg.Size = new Size(0x2bd, 0x25);
     this.textBoxMsg.TabIndex = 0;
     this.textBoxMsg.EditValueChanging += new ChangingEventHandler(this.textBoxMsg_EditValueChanging);
     this.pbMiddle.AutoStyle = false;
     this.pbMiddle.BackColor = System.Drawing.Color.Black;
     this.pbMiddle.DrawEdges = true;
     this.pbMiddle.Font = new Font("Arial", 8f);
     this.pbMiddle.ForeColor = System.Drawing.Color.White;
     this.pbMiddle.HorizontalScalingMode = ScalingModes.Tile;
     this.pbMiddle.IsStyled = false;
     this.pbMiddle.ItemPadding = 6;
     this.pbMiddle.Location = new Point(0x26, 0xf2);
     this.pbMiddle.Name = "pbMiddle";
     this.pbMiddle.Size = new Size(0x7d, 0x19);
     this.pbMiddle.SkinBasePath = @"Controls\Background Label\Rectangle";
     base.ttDefault.SetSuperTip(this.pbMiddle, null);
     this.pbMiddle.TabIndex = 0x10;
     this.pbMiddle.TextAlign = ContentAlignment.MiddleLeft;
     this.pbMiddle.TextPadding = new Padding(20, 0, 0, 0);
     this.miStatus_Online.Index = -1;
     this.miStatus_Online.Text = "<LOC>Online";
     this.miStatus_Away.Index = -1;
     this.miStatus_Away.Text = "Away";
     this.miStatus_DND.Index = -1;
     this.miStatus_DND.Text = "DND";
     this.menuItem1.Index = -1;
     this.menuItem1.Text = "<LOC>Online";
     this.menuItem2.Index = -1;
     this.menuItem2.Text = "<LOC>Online";
     this.gpgContextMenuChatText.MenuItems.AddRange(new MenuItem[] { 
         this.ciChatText_Clear, this.ciChatText_Copy, this.ciChatText_Filter, this.miShowColumns, this.ciChatText_ShowEmotes, this.menuItm15, this.ciChatText_PrivateMsg, this.ciChatText_Ignore, this.ciChatText_Unignore, this.ciChatText_ViewRank, this.ciChatText_WebStats, this.ciChatText_ViewPlayer, this.ciChatText_Replays, this.menuItem6, this.ciChatText_FriendInvite, this.ciChatText_FriendRemove, 
         this.menuItem11, this.ciChatText_ClanInvite, this.ciChatText_ClanRequest, this.ciChatText_ClanRemove, this.ciChatText_Promote, this.ciChatText_Demote, this.ciChatText_ViewClan, this.ciChatText_LeaveClan, this.menuItem18, this.ciChatText_Kick, this.ciChatText_Ban, this.menuItem12, this.ciChatText_Solution, this.miTranslate
      });
     this.ciChatText_Clear.Index = 0;
     this.ciChatText_Clear.Text = "<LOC>Clear Chat";
     this.ciChatText_Clear.Click += new EventHandler(this.ciChatText_Clear_Click);
     this.ciChatText_Copy.Index = 1;
     this.ciChatText_Copy.Text = "<LOC>Copy to Clipboard";
     this.ciChatText_Copy.Click += new EventHandler(this.ciChatText_Copy_Click);
     this.ciChatText_Filter.Index = 2;
     this.ciChatText_Filter.MenuItems.AddRange(new MenuItem[] { this.ciChatText_Filter_Self, this.ciChatText_Filter_System, this.ciChatText_Filter_Events, this.ciChatText_Filter_Errors, this.ciChatText_Filter_Game, this.ciChatText_Filter_Friends, this.ciChatText_Filter_Clan, this.ciChatText_Filter_Admin, this.ciChatText_Filter_Other, this.menuItem4, this.ciChatText_Filters_Reset });
     this.ciChatText_Filter.Text = "<LOC>Filter by";
     this.ciChatText_Filter_Self.Checked = true;
     this.ciChatText_Filter_Self.Index = 0;
     this.ciChatText_Filter_Self.Text = "<LOC>Self";
     this.ciChatText_Filter_Self.Click += new EventHandler(this.ciChatText_Filter_Self_Click);
     this.ciChatText_Filter_System.Checked = true;
     this.ciChatText_Filter_System.Index = 1;
     this.ciChatText_Filter_System.Text = "<LOC>System Messages";
     this.ciChatText_Filter_System.Click += new EventHandler(this.ciChatText_Filter_System_Click);
     this.ciChatText_Filter_Events.Checked = true;
     this.ciChatText_Filter_Events.Index = 2;
     this.ciChatText_Filter_Events.Text = "<LOC>System Events";
     this.ciChatText_Filter_Events.Click += new EventHandler(this.ciChatText_Filter_Events_Click);
     this.ciChatText_Filter_Errors.Checked = true;
     this.ciChatText_Filter_Errors.Index = 3;
     this.ciChatText_Filter_Errors.Text = "<LOC>System Errors";
     this.ciChatText_Filter_Errors.Click += new EventHandler(this.ciChatText_Filter_Errors_Click);
     this.ciChatText_Filter_Game.Checked = true;
     this.ciChatText_Filter_Game.Index = 4;
     this.ciChatText_Filter_Game.Text = "<LOC>Game Events";
     this.ciChatText_Filter_Game.Click += new EventHandler(this.ciChatText_Filter_Game_Click);
     this.ciChatText_Filter_Friends.Checked = true;
     this.ciChatText_Filter_Friends.Index = 5;
     this.ciChatText_Filter_Friends.Text = "<LOC>Friends";
     this.ciChatText_Filter_Friends.Click += new EventHandler(this.ciChatText_Filter_Friends_Click);
     this.ciChatText_Filter_Clan.Checked = true;
     this.ciChatText_Filter_Clan.Index = 6;
     this.ciChatText_Filter_Clan.Text = "<LOC>Clan";
     this.ciChatText_Filter_Clan.Click += new EventHandler(this.ciChatText_Filter_Clan_Click);
     this.ciChatText_Filter_Admin.Checked = true;
     this.ciChatText_Filter_Admin.Index = 7;
     this.ciChatText_Filter_Admin.Text = "<LOC>Admins";
     this.ciChatText_Filter_Admin.Click += new EventHandler(this.ciChatText_Filter_Admin_Click);
     this.ciChatText_Filter_Other.Checked = true;
     this.ciChatText_Filter_Other.Index = 8;
     this.ciChatText_Filter_Other.Text = "<LOC>Other";
     this.ciChatText_Filter_Other.Click += new EventHandler(this.ciChatText_Filter_Other_Click);
     this.menuItem4.Index = 9;
     this.menuItem4.Text = "-";
     this.ciChatText_Filters_Reset.Index = 10;
     this.ciChatText_Filters_Reset.Text = "<LOC>Reset Filters";
     this.ciChatText_Filters_Reset.Click += new EventHandler(this.ciChatText_Filters_Reset_Click);
     this.miShowColumns.Index = 3;
     this.miShowColumns.Text = "<LOC>Show Columns";
     this.miShowColumns.Click += new EventHandler(this.miShowColumns_Click);
     this.ciChatText_ShowEmotes.Index = 4;
     this.ciChatText_ShowEmotes.Text = "<LOC>Show emotes";
     this.ciChatText_ShowEmotes.Click += new EventHandler(this.ciChatText_ShowEmotes_Click);
     this.menuItm15.Index = 5;
     this.menuItm15.Text = "-";
     this.ciChatText_PrivateMsg.Index = 6;
     this.ciChatText_PrivateMsg.Text = "<LOC>Send private message";
     this.ciChatText_PrivateMsg.Click += new EventHandler(this.ciChatText_PrivateMsg_Click);
     this.ciChatText_Ignore.Index = 7;
     this.ciChatText_Ignore.Text = "<LOC>Ignore this player";
     this.ciChatText_Ignore.Click += new EventHandler(this.ciChatText_Ignore_Click);
     this.ciChatText_Unignore.Index = 8;
     this.ciChatText_Unignore.Text = "<LOC>Unignore this player";
     this.ciChatText_Unignore.Click += new EventHandler(this.ciChatText_Unignore_Click);
     this.ciChatText_ViewRank.Index = 9;
     this.ciChatText_ViewRank.Text = "<LOC>View in ranking ladder";
     this.ciChatText_ViewRank.Visible = false;
     this.ciChatText_ViewRank.Click += new EventHandler(this.ciChatText_ViewRank_Click);
     this.ciChatText_WebStats.Index = 10;
     this.ciChatText_WebStats.Text = "<LOC>View web statistics";
     this.ciChatText_WebStats.Click += new EventHandler(this.ciChatText_WebStats_Click);
     this.ciChatText_ViewPlayer.Index = 11;
     this.ciChatText_ViewPlayer.Text = "<LOC>View this player's profile";
     this.ciChatText_ViewPlayer.Click += new EventHandler(this.ciChatText_ViewPlayer_Click);
     this.ciChatText_Replays.Index = 12;
     this.ciChatText_Replays.Text = "<LOC>View this player's Replays";
     this.ciChatText_Replays.Click += new EventHandler(this.ciChatText_Replays_Click);
     this.menuItem6.Index = 13;
     this.menuItem6.Text = "-";
     this.ciChatText_FriendInvite.Index = 14;
     this.ciChatText_FriendInvite.Text = "<LOC>Invite this player to join Friends list";
     this.ciChatText_FriendInvite.Click += new EventHandler(this.ciChatText_FriendInvite_Click);
     this.ciChatText_FriendRemove.Index = 15;
     this.ciChatText_FriendRemove.Text = "<LOC>Remove this player from Friends list";
     this.ciChatText_FriendRemove.Click += new EventHandler(this.ciChatText_FriendRemove_Click);
     this.menuItem11.Index = 0x10;
     this.menuItem11.Text = "-";
     this.ciChatText_ClanInvite.Index = 0x11;
     this.ciChatText_ClanInvite.Text = "<LOC>Invite this player to join clan";
     this.ciChatText_ClanInvite.Click += new EventHandler(this.ciChatText_ClanInvite_Click);
     this.ciChatText_ClanRequest.Index = 0x12;
     this.ciChatText_ClanRequest.Text = "<LOC>Request to join this player's clan";
     this.ciChatText_ClanRequest.Click += new EventHandler(this.ciChatText_ClanRequest_Click);
     this.ciChatText_ClanRemove.Index = 0x13;
     this.ciChatText_ClanRemove.Text = "<LOC>Remove this player from clan";
     this.ciChatText_ClanRemove.Click += new EventHandler(this.ciChatText_ClanRemove_Click);
     this.ciChatText_Promote.Index = 20;
     this.ciChatText_Promote.Text = "<LOC>Promote";
     this.ciChatText_Promote.Click += new EventHandler(this.ciChatText_Promote_Click);
     this.ciChatText_Demote.Index = 0x15;
     this.ciChatText_Demote.Text = "<LOC>Demote";
     this.ciChatText_Demote.Click += new EventHandler(this.ciChatText_Demote_Click);
     this.ciChatText_ViewClan.Index = 0x16;
     this.ciChatText_ViewClan.Text = "<LOC>View this clan's profile";
     this.ciChatText_ViewClan.Click += new EventHandler(this.ciChatText_ViewClan_Click);
     this.ciChatText_LeaveClan.Index = 0x17;
     this.ciChatText_LeaveClan.Text = "<LOC>Leave clan";
     this.ciChatText_LeaveClan.Click += new EventHandler(this.ciChatText_LeaveClan_Click);
     this.menuItem18.Index = 0x18;
     this.menuItem18.Text = "-";
     this.ciChatText_Kick.Index = 0x19;
     this.ciChatText_Kick.Text = "<LOC>Kick";
     this.ciChatText_Kick.Click += new EventHandler(this.ciChatText_Kick_Click);
     this.ciChatText_Ban.Index = 0x1a;
     this.ciChatText_Ban.Text = "<LOC>Ban";
     this.ciChatText_Ban.Click += new EventHandler(this.ciChatText_Ban_Click);
     this.menuItem12.Index = 0x1b;
     this.menuItem12.Text = "-";
     this.ciChatText_Solution.Index = 0x1c;
     this.ciChatText_Solution.Text = "<LOC>Point user to solution";
     this.ciChatText_Solution.Click += new EventHandler(this.ciChatText_Solution_Click);
     this.miTranslate.Index = 0x1d;
     this.miTranslate.MenuItems.AddRange(new MenuItem[] { this.menuItem23, this.menuItem24, this.menuItem25, this.menuItem26, this.menuItem27, this.menuItem28, this.menuItem29 });
     this.miTranslate.Text = "Translate to English";
     this.miTranslate.Visible = false;
     this.menuItem23.Index = 0;
     this.menuItem23.Text = "German ";
     this.menuItem23.Click += new EventHandler(this.menuItem23_Click);
     this.menuItem24.Index = 1;
     this.menuItem24.Text = "French";
     this.menuItem24.Click += new EventHandler(this.menuItem24_Click);
     this.menuItem25.Index = 2;
     this.menuItem25.Text = "Itialian";
     this.menuItem25.Click += new EventHandler(this.menuItem25_Click);
     this.menuItem26.Index = 3;
     this.menuItem26.Text = "Spanish";
     this.menuItem26.Click += new EventHandler(this.menuItem26_Click);
     this.menuItem27.Index = 4;
     this.menuItem27.Text = "Russian";
     this.menuItem27.Click += new EventHandler(this.menuItem27_Click);
     this.menuItem28.Index = 5;
     this.menuItem28.Text = "Korean";
     this.menuItem28.Click += new EventHandler(this.menuItem28_Click);
     this.menuItem29.Index = 6;
     this.menuItem29.Text = "Japanese";
     this.menuItem29.Click += new EventHandler(this.menuItem29_Click);
     this.gpgContextMenuEmote.MenuItems.AddRange(new MenuItem[] { this.ciEmote_Manager, this.menuItem13, this.ciEmote_Hide, this.ciEmote_Share, this.ciEmote_Animate, this.menuItem9, this.ciEmote_Delete });
     this.ciEmote_Manager.Index = 0;
     this.ciEmote_Manager.Text = "<LOC>Emote manager...";
     this.ciEmote_Manager.Click += new EventHandler(this.ciEmote_Manager_Click);
     this.menuItem13.Index = 1;
     this.menuItem13.Text = "-";
     this.ciEmote_Hide.Index = 2;
     this.ciEmote_Hide.Text = "<LOC>Hide emotes";
     this.ciEmote_Hide.Click += new EventHandler(this.ciEmote_Hide_Click);
     this.ciEmote_Share.Index = 3;
     this.ciEmote_Share.Text = "<LOC>Share emotes";
     this.ciEmote_Share.Click += new EventHandler(this.ciEmote_Share_Click);
     this.ciEmote_Animate.Index = 4;
     this.ciEmote_Animate.Text = "<LOC>Animate emotes";
     this.ciEmote_Animate.Click += new EventHandler(this.ciEmote_Animate_Click);
     this.menuItem9.Index = 5;
     this.menuItem9.Text = "-";
     this.ciEmote_Delete.Index = 6;
     this.ciEmote_Delete.Text = "<LOC>Delete emote";
     this.ciEmote_Delete.Click += new EventHandler(this.ciEmote_Delete_Click);
     this.pManualTabs.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.pManualTabs.BackColor = System.Drawing.Color.Transparent;
     this.pManualTabs.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.pManualTabs.BorderThickness = 2;
     this.pManualTabs.Controls.Add(this.btnChatTab);
     this.pManualTabs.Controls.Add(this.btnFriendsTab);
     this.pManualTabs.Controls.Add(this.btnClanTab);
     this.pManualTabs.DrawBorder = false;
     this.pManualTabs.Location = new Point(0x2cb, 0x1b);
     this.pManualTabs.Name = "pManualTabs";
     this.pManualTabs.Size = new Size(0xeb, 0x16);
     base.ttDefault.SetSuperTip(this.pManualTabs, null);
     this.pManualTabs.TabIndex = 0x11;
     this.btnChatTab.AutoStyle = true;
     this.btnChatTab.BackColor = System.Drawing.Color.Black;
     this.btnChatTab.ButtonState = 0;
     this.btnChatTab.DialogResult = DialogResult.OK;
     this.btnChatTab.DisabledForecolor = System.Drawing.Color.Gray;
     this.btnChatTab.DrawColor = System.Drawing.Color.White;
     this.btnChatTab.DrawEdges = true;
     this.btnChatTab.FocusColor = System.Drawing.Color.Yellow;
     this.btnChatTab.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.btnChatTab.ForeColor = System.Drawing.Color.White;
     this.btnChatTab.HorizontalScalingMode = ScalingModes.Tile;
     this.btnChatTab.IsStyled = true;
     this.btnChatTab.Location = new Point(0, 0);
     this.btnChatTab.Name = "btnChatTab";
     this.btnChatTab.Size = new Size(0x54, 0x16);
     this.btnChatTab.SkinBasePath = @"Controls\Button\TabSmallActive";
     base.ttDefault.SetSuperTip(this.btnChatTab, null);
     this.btnChatTab.TabIndex = 0;
     this.btnChatTab.TabStop = true;
     this.btnChatTab.Text = "<LOC>Chat";
     this.btnChatTab.TextAlign = ContentAlignment.MiddleCenter;
     this.btnChatTab.TextPadding = new Padding(0);
     this.btnChatTab.Click += new EventHandler(this.btnChatTab_Click);
     this.btnFriendsTab.AutoStyle = true;
     this.btnFriendsTab.BackColor = System.Drawing.Color.Black;
     this.btnFriendsTab.ButtonState = 0;
     this.btnFriendsTab.DialogResult = DialogResult.OK;
     this.btnFriendsTab.DisabledForecolor = System.Drawing.Color.Gray;
     this.btnFriendsTab.DrawColor = System.Drawing.Color.White;
     this.btnFriendsTab.DrawEdges = true;
     this.btnFriendsTab.FocusColor = System.Drawing.Color.Yellow;
     this.btnFriendsTab.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.btnFriendsTab.ForeColor = System.Drawing.Color.White;
     this.btnFriendsTab.HorizontalScalingMode = ScalingModes.Tile;
     this.btnFriendsTab.IsStyled = true;
     this.btnFriendsTab.Location = new Point(0x4b, 0);
     this.btnFriendsTab.Name = "btnFriendsTab";
     this.btnFriendsTab.Size = new Size(0x54, 0x16);
     this.btnFriendsTab.SkinBasePath = @"Controls\Button\TabSmall";
     base.ttDefault.SetSuperTip(this.btnFriendsTab, null);
     this.btnFriendsTab.TabIndex = 1;
     this.btnFriendsTab.TabStop = true;
     this.btnFriendsTab.Text = "<LOC>Friends";
     this.btnFriendsTab.TextAlign = ContentAlignment.MiddleCenter;
     this.btnFriendsTab.TextPadding = new Padding(0);
     this.btnFriendsTab.Click += new EventHandler(this.btnFriendsTab_Click);
     this.btnClanTab.AutoStyle = true;
     this.btnClanTab.BackColor = System.Drawing.Color.Black;
     this.btnClanTab.ButtonState = 0;
     this.btnClanTab.DialogResult = DialogResult.OK;
     this.btnClanTab.DisabledForecolor = System.Drawing.Color.Gray;
     this.btnClanTab.DrawColor = System.Drawing.Color.White;
     this.btnClanTab.DrawEdges = true;
     this.btnClanTab.FocusColor = System.Drawing.Color.Yellow;
     this.btnClanTab.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.btnClanTab.ForeColor = System.Drawing.Color.White;
     this.btnClanTab.HorizontalScalingMode = ScalingModes.Tile;
     this.btnClanTab.IsStyled = true;
     this.btnClanTab.Location = new Point(150, 0);
     this.btnClanTab.Name = "btnClanTab";
     this.btnClanTab.Size = new Size(0x54, 0x16);
     this.btnClanTab.SkinBasePath = @"Controls\Button\TabSmall";
     base.ttDefault.SetSuperTip(this.btnClanTab, null);
     this.btnClanTab.TabIndex = 2;
     this.btnClanTab.TabStop = true;
     this.btnClanTab.Text = "<LOC>Clan";
     this.btnClanTab.TextAlign = ContentAlignment.MiddleCenter;
     this.btnClanTab.TextPadding = new Padding(0);
     this.btnClanTab.Click += new EventHandler(this.btnClanTab_Click);
     this.ilMenuItems.ImageStream = (ImageListStreamer) manager.GetObject("ilMenuItems.ImageStream");
     this.ilMenuItems.TransparentColor = System.Drawing.Color.Transparent;
     this.ilMenuItems.Images.SetKeyName(0, "rankings.png");
     this.gpgPanelChatAndInput.BackColor = System.Drawing.Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgPanelChatAndInput.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelChatAndInput.BorderThickness = 2;
     this.gpgPanelChatAndInput.Controls.Add(this.splitContainerChatAndInput);
     this.gpgPanelChatAndInput.Dock = DockStyle.Fill;
     this.gpgPanelChatAndInput.DrawBorder = true;
     this.gpgPanelChatAndInput.Location = new Point(0, 0);
     this.gpgPanelChatAndInput.Name = "gpgPanelChatAndInput";
     this.gpgPanelChatAndInput.Size = new Size(0x2c1, 0x1cb);
     base.ttDefault.SetSuperTip(this.gpgPanelChatAndInput, null);
     this.gpgPanelChatAndInput.TabIndex = 0x12;
     this.splitContainerChatAndInput.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerChatAndInput.Location = new Point(2, 2);
     this.splitContainerChatAndInput.Name = "splitContainerChatAndInput";
     this.splitContainerChatAndInput.Orientation = Orientation.Horizontal;
     this.splitContainerChatAndInput.Panel1.Controls.Add(this.gpgTextListCommands);
     this.splitContainerChatAndInput.Panel1.Controls.Add(this.gpgChatGrid);
     base.ttDefault.SetSuperTip(this.splitContainerChatAndInput.Panel1, null);
     this.splitContainerChatAndInput.Panel2.Controls.Add(this.textBoxMsg);
     base.ttDefault.SetSuperTip(this.splitContainerChatAndInput.Panel2, null);
     this.splitContainerChatAndInput.Size = new Size(0x2bd, 0x1c7);
     this.splitContainerChatAndInput.SplitterDistance = 0x1a0;
     this.splitContainerChatAndInput.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerChatAndInput, null);
     this.splitContainerChatAndInput.TabIndex = 0;
     this.splitContainerChatAndInput.Paint += new PaintEventHandler(this.splitContainerChatAndInput_Paint);
     this.gpgTextListCommands.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgTextListCommands.AnchorControl = this.textBoxMsg;
     this.gpgTextListCommands.AutoScroll = true;
     this.gpgTextListCommands.AutoSize = true;
     this.gpgTextListCommands.BackColor = System.Drawing.Color.Black;
     this.gpgTextListCommands.Location = new Point(0, 0x18c);
     this.gpgTextListCommands.Margin = new Padding(0);
     this.gpgTextListCommands.MaxLines = 6;
     this.gpgTextListCommands.Name = "gpgTextListCommands";
     this.gpgTextListCommands.SelectedIndex = -1;
     this.gpgTextListCommands.Size = new Size(0x2bd, 20);
     base.ttDefault.SetSuperTip(this.gpgTextListCommands, null);
     this.gpgTextListCommands.TabIndex = 14;
     this.gpgTextListCommands.TextLines = null;
     this.gpgTextListCommands.Visible = false;
     this.gpgPanelGathering.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgPanelGathering.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelGathering.BorderThickness = 2;
     this.gpgPanelGathering.Controls.Add(this.gpgPanelGatheringDropDown);
     this.gpgPanelGathering.Controls.Add(this.pnlUserListChat);
     this.gpgPanelGathering.Dock = DockStyle.Fill;
     this.gpgPanelGathering.DrawBorder = true;
     this.gpgPanelGathering.Location = new Point(0, 0);
     this.gpgPanelGathering.Name = "gpgPanelGathering";
     this.gpgPanelGathering.Size = new Size(0x10a, 0x1cb);
     base.ttDefault.SetSuperTip(this.gpgPanelGathering, null);
     this.gpgPanelGathering.TabIndex = 0x13;
     this.gpgPanelGathering.Paint += new PaintEventHandler(this.gpgPanel1_Paint);
     this.gpgPanelGatheringDropDown.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgPanelGatheringDropDown.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgPanelGatheringDropDown.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelGatheringDropDown.BorderThickness = 2;
     this.gpgPanelGatheringDropDown.Controls.Add(this.skinGatheringDisplayChat);
     this.gpgPanelGatheringDropDown.DrawBorder = false;
     this.gpgPanelGatheringDropDown.Location = new Point(2, 7);
     this.gpgPanelGatheringDropDown.Name = "gpgPanelGatheringDropDown";
     this.gpgPanelGatheringDropDown.Size = new Size(0x106, 0x19);
     base.ttDefault.SetSuperTip(this.gpgPanelGatheringDropDown, null);
     this.gpgPanelGatheringDropDown.TabIndex = 13;
     this.splitContainerBody.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerBody.Location = new Point(11, 0xe9);
     this.splitContainerBody.Name = "splitContainerBody";
     this.splitContainerBody.Panel1.Controls.Add(this.gpgPanelChatAndInput);
     base.ttDefault.SetSuperTip(this.splitContainerBody.Panel1, null);
     this.splitContainerBody.Panel2.Controls.Add(this.gpgPanelGathering);
     this.splitContainerBody.Panel2.Controls.Add(this.gpgPanelClan);
     this.splitContainerBody.Panel2.Controls.Add(this.gpgPanelFriends);
     base.ttDefault.SetSuperTip(this.splitContainerBody.Panel2, null);
     this.splitContainerBody.Size = new Size(0x3d1, 0x1cb);
     this.splitContainerBody.SplitterDistance = 0x2c1;
     this.splitContainerBody.SplitterWidth = 6;
     base.ttDefault.SetSuperTip(this.splitContainerBody, null);
     this.splitContainerBody.TabIndex = 20;
     this.splitContainerBody.SplitterMoved += new SplitterEventHandler(this.splitContainerBody_SplitterMoved);
     this.gpgPanelClan.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgPanelClan.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelClan.BorderThickness = 2;
     this.gpgPanelClan.Controls.Add(this.splitContainerClan);
     this.gpgPanelClan.Controls.Add(this.skinLabelClanName);
     this.gpgPanelClan.Dock = DockStyle.Fill;
     this.gpgPanelClan.DrawBorder = true;
     this.gpgPanelClan.Location = new Point(0, 0);
     this.gpgPanelClan.Name = "gpgPanelClan";
     this.gpgPanelClan.Size = new Size(0x10a, 0x1cb);
     base.ttDefault.SetSuperTip(this.gpgPanelClan, null);
     this.gpgPanelClan.TabIndex = 0x15;
     this.gpgPanelFriends.BackColor = System.Drawing.Color.FromArgb(0x24, 0x23, 0x23);
     this.gpgPanelFriends.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelFriends.BorderThickness = 2;
     this.gpgPanelFriends.Controls.Add(this.splitContainerFriends);
     this.gpgPanelFriends.Dock = DockStyle.Fill;
     this.gpgPanelFriends.DrawBorder = true;
     this.gpgPanelFriends.Location = new Point(0, 0);
     this.gpgPanelFriends.Name = "gpgPanelFriends";
     this.gpgPanelFriends.Size = new Size(0x10a, 0x1cb);
     base.ttDefault.SetSuperTip(this.gpgPanelFriends, null);
     this.gpgPanelFriends.TabIndex = 0x15;
     this.gpgPanel2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgPanel2.BackgroundImage = (Image) manager.GetObject("gpgPanel2.BackgroundImage");
     this.gpgPanel2.BorderColor = System.Drawing.Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanel2.BorderThickness = 2;
     this.gpgPanel2.Controls.Add(this.tabChatroom);
     this.gpgPanel2.Controls.Add(this.pManualTabs);
     this.gpgPanel2.DrawBorder = false;
     this.gpgPanel2.Location = new Point(5, 0xb9);
     this.gpgPanel2.Name = "gpgPanel2";
     this.gpgPanel2.Size = new Size(990, 0x30);
     base.ttDefault.SetSuperTip(this.gpgPanel2, null);
     this.gpgPanel2.TabIndex = 0x15;
     this.tabChatroom.AutoStyle = true;
     this.tabChatroom.BackColor = System.Drawing.Color.Black;
     this.tabChatroom.ButtonState = 0;
     this.tabChatroom.DialogResult = DialogResult.OK;
     this.tabChatroom.DisabledForecolor = System.Drawing.Color.Gray;
     this.tabChatroom.DrawColor = System.Drawing.Color.White;
     this.tabChatroom.DrawEdges = true;
     this.tabChatroom.FocusColor = System.Drawing.Color.Yellow;
     this.tabChatroom.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.tabChatroom.ForeColor = System.Drawing.Color.White;
     this.tabChatroom.HorizontalScalingMode = ScalingModes.Tile;
     this.tabChatroom.IsStyled = true;
     this.tabChatroom.Location = new Point(4, 0x15);
     this.tabChatroom.Name = "tabChatroom";
     this.tabChatroom.Size = new Size(0x89, 0x1c);
     this.tabChatroom.SkinBasePath = @"Dialog\ContentManager\TabLargeActive";
     base.ttDefault.SetSuperTip(this.tabChatroom, null);
     this.tabChatroom.TabIndex = 0x16;
     this.tabChatroom.TabStop = true;
     this.tabChatroom.TextAlign = ContentAlignment.MiddleLeft;
     this.tabChatroom.TextPadding = new Padding(6, 0, 0, 0);
     base.AutoScaleMode = AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.Black;
     this.BackgroundImage = (Image) manager.GetObject("$this.BackgroundImage");
     base.ClientSize = new Size(0x3e8, 750);
     base.Controls.Add(this.gpgPanel2);
     base.Controls.Add(this.splitContainerBody);
     base.Controls.Add(this.pbMiddle);
     base.Controls.Add(this.wbMain);
     base.Controls.Add(this.pcTextEntry);
     base.Controls.Add(this.pBottom);
     base.Controls.Add(this.pbLeftBorder);
     base.Controls.Add(this.pbRightBorder);
     base.Controls.Add(this.pTop);
     base.FormBorderStyle = FormBorderStyle.None;
     base.Icon = (Icon) manager.GetObject("$this.Icon");
     base.MainMenuStrip = this.msMainMenu;
     this.MinimumSize = new Size(640, 500);
     base.Name = "FrmMain";
     base.StartPosition = FormStartPosition.CenterScreen;
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>GPGnet: Supreme Commander";
     base.MouseUp += new MouseEventHandler(this.OnMouseUp);
     base.VisibleChanged += new EventHandler(this.FrmMain_VisibleChanged);
     base.MouseMove += new MouseEventHandler(this.OnMouseMove);
     this.repositoryItemPictureEdit1.EndInit();
     this.repositoryItemMemoEdit1.EndInit();
     this.pBottom.ResumeLayout(false);
     this.pBottom.PerformLayout();
     this.msQuickButtons.ResumeLayout(false);
     this.msQuickButtons.PerformLayout();
     ((ISupportInitialize) this.pbBottomRight).EndInit();
     ((ISupportInitialize) this.pbBottom).EndInit();
     ((ISupportInitialize) this.pbBottomLeft).EndInit();
     this.pTop.ResumeLayout(false);
     this.pTop.PerformLayout();
     this.msMainMenu.ResumeLayout(false);
     this.msMainMenu.PerformLayout();
     ((ISupportInitialize) this.pbClose).EndInit();
     ((ISupportInitialize) this.pbRestore).EndInit();
     ((ISupportInitialize) this.pbMinimize).EndInit();
     ((ISupportInitialize) this.pbTopRight).EndInit();
     ((ISupportInitialize) this.pbTop).EndInit();
     ((ISupportInitialize) this.pbTopLeft).EndInit();
     this.splitContainerFriends.Panel1.ResumeLayout(false);
     this.splitContainerFriends.Panel1.PerformLayout();
     this.splitContainerFriends.Panel2.ResumeLayout(false);
     this.splitContainerFriends.ResumeLayout(false);
     this.gpgScrollPanelFriends.ResumeLayout(false);
     this.splitContainerClan.Panel1.ResumeLayout(false);
     this.splitContainerClan.Panel1.PerformLayout();
     this.splitContainerClan.Panel2.ResumeLayout(false);
     this.splitContainerClan.ResumeLayout(false);
     this.gpgScrollPanelClan.ResumeLayout(false);
     this.gpgScrollPanelNoClan.ResumeLayout(false);
     this.gpgScrollPanelNoClan.PerformLayout();
     ((ISupportInitialize) this.pbLeftBorder).EndInit();
     ((ISupportInitialize) this.pbRightBorder).EndInit();
     this.rimPictureEdit.EndInit();
     this.rimMemoEdit.EndInit();
     this.rimPictureEdit2.EndInit();
     this.rimMemoEdit2.EndInit();
     this.gpgChatGrid.EndInit();
     this.gvChat.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimMemoEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.pcTextEntry.EndInit();
     this.textBoxMsg.Properties.EndInit();
     this.dockManager.EndInit();
     this.pManualTabs.ResumeLayout(false);
     this.gpgPanelChatAndInput.ResumeLayout(false);
     this.splitContainerChatAndInput.Panel1.ResumeLayout(false);
     this.splitContainerChatAndInput.Panel1.PerformLayout();
     this.splitContainerChatAndInput.Panel2.ResumeLayout(false);
     this.splitContainerChatAndInput.ResumeLayout(false);
     this.gpgPanelGathering.ResumeLayout(false);
     this.gpgPanelGatheringDropDown.ResumeLayout(false);
     this.splitContainerBody.Panel1.ResumeLayout(false);
     this.splitContainerBody.Panel2.ResumeLayout(false);
     this.splitContainerBody.ResumeLayout(false);
     this.gpgPanelClan.ResumeLayout(false);
     this.gpgPanelFriends.ResumeLayout(false);
     this.gpgPanel2.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 36
0
 /// <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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Editor));
     DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem6 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem7 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem7 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem8 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem8 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem9 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem9 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem10 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem10 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem11 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem11 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip12 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem12 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem12 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip13 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem13 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem13 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip14 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem14 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem14 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip15 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem15 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem15 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip19 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem19 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem19 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip16 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem16 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem16 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip17 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem17 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem17 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip18 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem18 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem18 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip20 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem20 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem20 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip21 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem21 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem21 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip22 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem22 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem22 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip23 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem23 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem23 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip24 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem24 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem24 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip25 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem25 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem25 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip26 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem26 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem26 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip27 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem27 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem27 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip36 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem36 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem36 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip28 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem28 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem28 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip29 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem29 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem29 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip30 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem30 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem30 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip31 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem31 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem31 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip32 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem32 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem32 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip33 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem33 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem33 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip34 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem34 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem34 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip35 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem35 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem35 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip37 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem37 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem37 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip38 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem38 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem38 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip39 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem39 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem39 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip40 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem40 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem40 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip41 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem41 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem41 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip42 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem42 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem42 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip43 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem43 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem43 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip44 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem44 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem44 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip45 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem45 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem45 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip57 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem57 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem57 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip46 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem46 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem46 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip47 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem47 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem47 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip48 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem48 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem48 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip49 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem49 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem49 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip50 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem50 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem50 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip51 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem51 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem51 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip52 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem52 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem52 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip53 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem53 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem53 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip54 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem54 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem54 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip55 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem55 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem55 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip56 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem56 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem56 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip58 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem58 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem58 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip59 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem59 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem59 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip60 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem60 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem60 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip65 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem65 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem65 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip61 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem61 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem61 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip62 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem62 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem62 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip63 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem63 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem63 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip64 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem64 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem64 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip66 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem66 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem66 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip71 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem71 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem71 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip67 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem67 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem67 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip68 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem68 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem68 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip69 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem69 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem69 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip70 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem70 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem70 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip72 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem72 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem72 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip73 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem73 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem73 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip74 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem74 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem74 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip75 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem75 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem75 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip76 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem76 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem76 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip77 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem77 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem77 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip78 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem78 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem78 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip79 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem79 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem79 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip83 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem83 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem83 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip80 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem80 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem80 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip81 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem81 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem81 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip82 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem82 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem82 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip84 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem84 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem84 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip85 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem85 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem85 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip86 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem86 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem86 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip87 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem87 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem87 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip88 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem88 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem88 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip89 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem89 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem89 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip90 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem90 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem90 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip91 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem91 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem91 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip92 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem92 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem92 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip93 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem93 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem93 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip94 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem94 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem94 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip95 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem95 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem95 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip96 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem96 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem96 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip97 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem97 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem97 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip98 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem98 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem98 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip99 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem99 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem99 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip100 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem100 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem100 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip101 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem101 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem101 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip102 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem102 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem102 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip103 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem103 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem103 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip104 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem104 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem104 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip105 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem105 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem105 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip106 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem106 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem106 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip107 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem107 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem107 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip108 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem108 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem108 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip109 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem109 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem109 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip110 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem110 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem110 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip115 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem115 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem115 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip111 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem111 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem111 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip112 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem112 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem112 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip113 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem113 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem113 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip114 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem114 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem114 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip118 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem118 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem118 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip116 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem116 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem116 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip117 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem117 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem117 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip119 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem119 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem119 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip124 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem124 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem124 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip120 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem120 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem120 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip121 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem121 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem121 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip122 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem122 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem122 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip123 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem123 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem123 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip130 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem130 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem130 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip125 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem125 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem125 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip126 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem126 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem126 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip127 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem127 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem127 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip128 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem128 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem128 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip129 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem129 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem129 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip137 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem137 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem137 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip131 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem131 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem131 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip132 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem132 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem132 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip133 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem133 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem133 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip134 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem134 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem134 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip135 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem135 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem135 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip136 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem136 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem136 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip138 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem138 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem138 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip139 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem139 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem139 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip140 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem140 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem140 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip141 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem141 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem141 = new DevExpress.Utils.ToolTipItem();
     DevExpress.Utils.SuperToolTip superToolTip142 = new DevExpress.Utils.SuperToolTip();
     DevExpress.Utils.ToolTipTitleItem toolTipTitleItem142 = new DevExpress.Utils.ToolTipTitleItem();
     DevExpress.Utils.ToolTipItem toolTipItem142 = new DevExpress.Utils.ToolTipItem();
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar3 = new DevExpress.XtraBars.Bar();
     this.commonBar1 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.insertPdfItem = new DevExpress.XtraBars.BarButtonItem();
     this.insertImage1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.cutItem1 = new DevExpress.XtraRichEdit.UI.CutItem();
     this.copyItem1 = new DevExpress.XtraRichEdit.UI.CopyItem();
     this.pasteItem1 = new DevExpress.XtraRichEdit.UI.PasteItem();
     this.pasteSpecialItem1 = new DevExpress.XtraRichEdit.UI.PasteSpecialItem();
     this.changeFontNameItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontNameItem();
     this.repositoryItemFontEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemFontEdit();
     this.changeFontSizeItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontSizeItem();
     this.repositoryItemRichEditFontSizeEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditFontSizeEdit();
     this.changeFontColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontColorItem();
     this.changeFontBackColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeFontBackColorItem();
     this.toggleFontBoldItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontBoldItem();
     this.toggleFontItalicItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontItalicItem();
     this.toggleFontUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontUnderlineItem();
     this.toggleFontDoubleUnderlineItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleUnderlineItem();
     this.toggleFontStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontStrikeoutItem();
     this.toggleFontDoubleStrikeoutItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontDoubleStrikeoutItem();
     this.toggleFontSubscriptItem1 = new DevExpress.XtraRichEdit.UI.ToggleFontSubscriptItem();
     this.changeTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ChangeTextCaseItem();
     this.makeTextUpperCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextUpperCaseItem();
     this.makeTextLowerCaseItem1 = new DevExpress.XtraRichEdit.UI.MakeTextLowerCaseItem();
     this.toggleTextCaseItem1 = new DevExpress.XtraRichEdit.UI.ToggleTextCaseItem();
     this.fontSizeIncreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeIncreaseItem();
     this.fontSizeDecreaseItem1 = new DevExpress.XtraRichEdit.UI.FontSizeDecreaseItem();
     this.clearFormattingItem1 = new DevExpress.XtraRichEdit.UI.ClearFormattingItem();
     this.showFontFormItem1 = new DevExpress.XtraRichEdit.UI.ShowFontFormItem();
     this.toggleParagraphAlignmentLeftItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentLeftItem();
     this.toggleParagraphAlignmentCenterItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentCenterItem();
     this.toggleParagraphAlignmentRightItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentRightItem();
     this.toggleParagraphAlignmentJustifyItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphAlignmentJustifyItem();
     this.changeParagraphLineSpacingItem1 = new DevExpress.XtraRichEdit.UI.ChangeParagraphLineSpacingItem();
     this.setSingleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSingleParagraphSpacingItem();
     this.setSesquialteralParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetSesquialteralParagraphSpacingItem();
     this.setDoubleParagraphSpacingItem1 = new DevExpress.XtraRichEdit.UI.SetDoubleParagraphSpacingItem();
     this.showLineSpacingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineSpacingFormItem();
     this.addSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingBeforeParagraphItem();
     this.removeSpacingBeforeParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingBeforeParagraphItem();
     this.addSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.AddSpacingAfterParagraphItem();
     this.removeSpacingAfterParagraphItem1 = new DevExpress.XtraRichEdit.UI.RemoveSpacingAfterParagraphItem();
     this.toggleNumberingListItem1 = new DevExpress.XtraRichEdit.UI.ToggleNumberingListItem();
     this.toggleMultiLevelListItem1 = new DevExpress.XtraRichEdit.UI.ToggleMultiLevelListItem();
     this.decreaseIndentItem1 = new DevExpress.XtraRichEdit.UI.DecreaseIndentItem();
     this.increaseIndentItem1 = new DevExpress.XtraRichEdit.UI.IncreaseIndentItem();
     this.toggleShowWhitespaceItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowWhitespaceItem();
     this.showParagraphFormItem1 = new DevExpress.XtraRichEdit.UI.ShowParagraphFormItem();
     this.findItem1 = new DevExpress.XtraRichEdit.UI.FindItem();
     this.replaceItem1 = new DevExpress.XtraRichEdit.UI.ReplaceItem();
     this.changeTableCellsShadingItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableCellsShadingItem();
     this.changeTableBordersItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBordersItem();
     this.toggleTableCellsBottomBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomBorderItem();
     this.toggleTableCellsTopBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopBorderItem();
     this.toggleTableCellsLeftBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsLeftBorderItem();
     this.toggleTableCellsRightBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsRightBorderItem();
     this.resetTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ResetTableCellsAllBordersItem();
     this.toggleTableCellsAllBordersItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsAllBordersItem();
     this.toggleTableCellsOutsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsOutsideBorderItem();
     this.toggleTableCellsInsideBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideBorderItem();
     this.toggleTableCellsInsideHorizontalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideHorizontalBorderItem();
     this.toggleTableCellsInsideVerticalBorderItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsInsideVerticalBorderItem();
     this.toggleShowTableGridLinesItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowTableGridLinesItem();
     this.changeTableBorderLineStyleItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineStyleItem();
     this.repositoryItemBorderLineStyle1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineStyle();
     this.changeTableBorderLineWeightItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderLineWeightItem();
     this.repositoryItemBorderLineWeight1 = new DevExpress.XtraRichEdit.Forms.Design.RepositoryItemBorderLineWeight();
     this.changeTableBorderColorItem1 = new DevExpress.XtraRichEdit.UI.ChangeTableBorderColorItem();
     this.selectTableElementsItem1 = new DevExpress.XtraRichEdit.UI.SelectTableElementsItem();
     this.selectTableCellItem1 = new DevExpress.XtraRichEdit.UI.SelectTableCellItem();
     this.selectTableColumnItem1 = new DevExpress.XtraRichEdit.UI.SelectTableColumnItem();
     this.selectTableRowItem1 = new DevExpress.XtraRichEdit.UI.SelectTableRowItem();
     this.selectTableItem1 = new DevExpress.XtraRichEdit.UI.SelectTableItem();
     this.showTablePropertiesFormItem1 = new DevExpress.XtraRichEdit.UI.ShowTablePropertiesFormItem();
     this.deleteTableElementsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableElementsItem();
     this.showDeleteTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowDeleteTableCellsFormItem();
     this.deleteTableColumnsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableColumnsItem();
     this.deleteTableRowsItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableRowsItem();
     this.deleteTableItem1 = new DevExpress.XtraRichEdit.UI.DeleteTableItem();
     this.insertTableRowAboveItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowAboveItem();
     this.insertTableRowBelowItem1 = new DevExpress.XtraRichEdit.UI.InsertTableRowBelowItem();
     this.insertTableColumnToLeftItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToLeftItem();
     this.insertTableColumnToRightItem1 = new DevExpress.XtraRichEdit.UI.InsertTableColumnToRightItem();
     this.showInsertTableCellsFormItem1 = new DevExpress.XtraRichEdit.UI.ShowInsertTableCellsFormItem();
     this.mergeTableCellsItem1 = new DevExpress.XtraRichEdit.UI.MergeTableCellsItem();
     this.showSplitTableCellsForm1 = new DevExpress.XtraRichEdit.UI.ShowSplitTableCellsForm();
     this.splitTableItem1 = new DevExpress.XtraRichEdit.UI.SplitTableItem();
     this.toggleTableAutoFitItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitItem();
     this.toggleTableAutoFitContentsItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitContentsItem();
     this.toggleTableAutoFitWindowItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableAutoFitWindowItem();
     this.toggleTableFixedColumnWidthItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableFixedColumnWidthItem();
     this.toggleTableCellsTopLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopLeftAlignmentItem();
     this.toggleTableCellsTopCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopCenterAlignmentItem();
     this.toggleTableCellsTopRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsTopRightAlignmentItem();
     this.toggleTableCellsMiddleLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleLeftAlignmentItem();
     this.toggleTableCellsMiddleCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleCenterAlignmentItem();
     this.toggleTableCellsMiddleRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsMiddleRightAlignmentItem();
     this.toggleTableCellsBottomLeftAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomLeftAlignmentItem();
     this.toggleTableCellsBottomCenterAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomCenterAlignmentItem();
     this.toggleTableCellsBottomRightAlignmentItem1 = new DevExpress.XtraRichEdit.UI.ToggleTableCellsBottomRightAlignmentItem();
     this.switchToSimpleViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToSimpleViewItem();
     this.switchToDraftViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToDraftViewItem();
     this.switchToPrintLayoutViewItem1 = new DevExpress.XtraRichEdit.UI.SwitchToPrintLayoutViewItem();
     this.toggleShowHorizontalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowHorizontalRulerItem();
     this.toggleShowVerticalRulerItem1 = new DevExpress.XtraRichEdit.UI.ToggleShowVerticalRulerItem();
     this.zoomOutItem1 = new DevExpress.XtraRichEdit.UI.ZoomOutItem();
     this.zoomInItem1 = new DevExpress.XtraRichEdit.UI.ZoomInItem();
     this.toggleBulletedListItem1 = new DevExpress.XtraRichEdit.UI.ToggleBulletedListItem();
     this.insertPageBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
     this.insertTableItem1 = new DevExpress.XtraRichEdit.UI.InsertTableItem();
     this.insertPictureItem1 = new DevExpress.XtraRichEdit.UI.InsertPictureItem();
     this.insertBookmarkItem1 = new DevExpress.XtraRichEdit.UI.InsertBookmarkItem();
     this.insertHyperlinkItem1 = new DevExpress.XtraRichEdit.UI.InsertHyperlinkItem();
     this.editPageHeaderItem1 = new DevExpress.XtraRichEdit.UI.EditPageHeaderItem();
     this.editPageFooterItem1 = new DevExpress.XtraRichEdit.UI.EditPageFooterItem();
     this.insertPageNumberItem1 = new DevExpress.XtraRichEdit.UI.InsertPageNumberItem();
     this.insertPageCountItem1 = new DevExpress.XtraRichEdit.UI.InsertPageCountItem();
     this.insertSymbolItem1 = new DevExpress.XtraRichEdit.UI.InsertSymbolItem();
     this.changeSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageMarginsItem();
     this.setNormalSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNormalSectionPageMarginsItem();
     this.setNarrowSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetNarrowSectionPageMarginsItem();
     this.setModerateSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetModerateSectionPageMarginsItem();
     this.setWideSectionPageMarginsItem1 = new DevExpress.XtraRichEdit.UI.SetWideSectionPageMarginsItem();
     this.changeSectionPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPageOrientationItem();
     this.setPortraitPageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetPortraitPageOrientationItem();
     this.setLandscapePageOrientationItem1 = new DevExpress.XtraRichEdit.UI.SetLandscapePageOrientationItem();
     this.changeSectionPaperKindItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionPaperKindItem();
     this.changeSectionColumnsItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionColumnsItem();
     this.setSectionOneColumnItem1 = new DevExpress.XtraRichEdit.UI.SetSectionOneColumnItem();
     this.setSectionTwoColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionTwoColumnsItem();
     this.setSectionThreeColumnsItem1 = new DevExpress.XtraRichEdit.UI.SetSectionThreeColumnsItem();
     this.showColumnsSetupFormItem1 = new DevExpress.XtraRichEdit.UI.ShowColumnsSetupFormItem();
     this.insertBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertBreakItem();
     this.insertPageBreakItem2 = new DevExpress.XtraRichEdit.UI.InsertPageBreakItem();
     this.insertColumnBreakItem1 = new DevExpress.XtraRichEdit.UI.InsertColumnBreakItem();
     this.insertSectionBreakNextPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakNextPageItem();
     this.insertSectionBreakEvenPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakEvenPageItem();
     this.insertSectionBreakOddPageItem1 = new DevExpress.XtraRichEdit.UI.InsertSectionBreakOddPageItem();
     this.changeSectionLineNumberingItem1 = new DevExpress.XtraRichEdit.UI.ChangeSectionLineNumberingItem();
     this.setSectionLineNumberingNoneItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingNoneItem();
     this.setSectionLineNumberingContinuousItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingContinuousItem();
     this.setSectionLineNumberingRestartNewPageItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewPageItem();
     this.setSectionLineNumberingRestartNewSectionItem1 = new DevExpress.XtraRichEdit.UI.SetSectionLineNumberingRestartNewSectionItem();
     this.toggleParagraphSuppressLineNumbersItem1 = new DevExpress.XtraRichEdit.UI.ToggleParagraphSuppressLineNumbersItem();
     this.showLineNumberingFormItem1 = new DevExpress.XtraRichEdit.UI.ShowLineNumberingFormItem();
     this.checkSpellingItem1 = new DevExpress.XtraRichEdit.UI.CheckSpellingItem();
     this.protectDocumentItem1 = new DevExpress.XtraRichEdit.UI.ProtectDocumentItem();
     this.changeRangeEditingPermissionsItem1 = new DevExpress.XtraRichEdit.UI.ChangeRangeEditingPermissionsItem();
     this.unprotectDocumentItem1 = new DevExpress.XtraRichEdit.UI.UnprotectDocumentItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.cboTemplate = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemRichEditStyleEdit1 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemRichEditStyleEdit2 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemRichEditStyleEdit3 = new DevExpress.XtraRichEdit.Design.RepositoryItemRichEditStyleEdit();
     this.richEditBarController1 = new DevExpress.XtraRichEdit.UI.RichEditBarController();
     this.stylesBar2 = new DevExpress.XtraRichEdit.UI.StylesBar();
     this.grdContent = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colTagCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.colTagName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNotes = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemPictureEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.CreateDate = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemRichTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
     this.repositoryItemGridLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.repositoryItemRichTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemRichTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemRichTextEdit();
     this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.cboTempl1 = new System.Windows.Forms.ComboBox();
     this.cboDisplay = new System.Windows.Forms.ComboBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.insertBookmark = new DevExpress.XtraEditors.LabelControl();
     this.fileSaveItem2 = new DevExpress.XtraRichEdit.UI.FileSaveItem();
     this.commonBar2 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.commonBar3 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.commonBar4 = new DevExpress.XtraRichEdit.UI.CommonBar();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
     this.dateEdit = new DevExpress.XtraEditors.DateEdit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdContent)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar3,
     this.commonBar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.cutItem1,
     this.copyItem1,
     this.pasteItem1,
     this.pasteSpecialItem1,
     this.changeFontNameItem1,
     this.changeFontSizeItem1,
     this.changeFontColorItem1,
     this.changeFontBackColorItem1,
     this.toggleFontBoldItem1,
     this.toggleFontItalicItem1,
     this.toggleFontUnderlineItem1,
     this.toggleFontDoubleUnderlineItem1,
     this.toggleFontStrikeoutItem1,
     this.toggleFontDoubleStrikeoutItem1,
     this.toggleFontSubscriptItem1,
     this.changeTextCaseItem1,
     this.makeTextUpperCaseItem1,
     this.makeTextLowerCaseItem1,
     this.toggleTextCaseItem1,
     this.fontSizeIncreaseItem1,
     this.fontSizeDecreaseItem1,
     this.clearFormattingItem1,
     this.showFontFormItem1,
     this.toggleParagraphAlignmentLeftItem1,
     this.toggleParagraphAlignmentCenterItem1,
     this.toggleParagraphAlignmentRightItem1,
     this.toggleParagraphAlignmentJustifyItem1,
     this.changeParagraphLineSpacingItem1,
     this.setSingleParagraphSpacingItem1,
     this.setSesquialteralParagraphSpacingItem1,
     this.setDoubleParagraphSpacingItem1,
     this.showLineSpacingFormItem1,
     this.addSpacingBeforeParagraphItem1,
     this.removeSpacingBeforeParagraphItem1,
     this.addSpacingAfterParagraphItem1,
     this.removeSpacingAfterParagraphItem1,
     this.toggleNumberingListItem1,
     this.toggleMultiLevelListItem1,
     this.decreaseIndentItem1,
     this.increaseIndentItem1,
     this.toggleShowWhitespaceItem1,
     this.showParagraphFormItem1,
     this.findItem1,
     this.replaceItem1,
     this.changeTableCellsShadingItem1,
     this.changeTableBordersItem1,
     this.toggleTableCellsBottomBorderItem1,
     this.toggleTableCellsTopBorderItem1,
     this.toggleTableCellsLeftBorderItem1,
     this.toggleTableCellsRightBorderItem1,
     this.resetTableCellsAllBordersItem1,
     this.toggleTableCellsAllBordersItem1,
     this.toggleTableCellsOutsideBorderItem1,
     this.toggleTableCellsInsideBorderItem1,
     this.toggleTableCellsInsideHorizontalBorderItem1,
     this.toggleTableCellsInsideVerticalBorderItem1,
     this.toggleShowTableGridLinesItem1,
     this.changeTableBorderLineStyleItem1,
     this.changeTableBorderLineWeightItem1,
     this.changeTableBorderColorItem1,
     this.selectTableElementsItem1,
     this.selectTableCellItem1,
     this.selectTableColumnItem1,
     this.selectTableRowItem1,
     this.selectTableItem1,
     this.showTablePropertiesFormItem1,
     this.deleteTableElementsItem1,
     this.showDeleteTableCellsFormItem1,
     this.deleteTableColumnsItem1,
     this.deleteTableRowsItem1,
     this.deleteTableItem1,
     this.insertTableRowAboveItem1,
     this.insertTableRowBelowItem1,
     this.insertTableColumnToLeftItem1,
     this.insertTableColumnToRightItem1,
     this.showInsertTableCellsFormItem1,
     this.mergeTableCellsItem1,
     this.showSplitTableCellsForm1,
     this.splitTableItem1,
     this.toggleTableAutoFitItem1,
     this.toggleTableAutoFitContentsItem1,
     this.toggleTableAutoFitWindowItem1,
     this.toggleTableFixedColumnWidthItem1,
     this.toggleTableCellsTopLeftAlignmentItem1,
     this.toggleTableCellsTopCenterAlignmentItem1,
     this.toggleTableCellsTopRightAlignmentItem1,
     this.toggleTableCellsMiddleLeftAlignmentItem1,
     this.toggleTableCellsMiddleCenterAlignmentItem1,
     this.toggleTableCellsMiddleRightAlignmentItem1,
     this.toggleTableCellsBottomLeftAlignmentItem1,
     this.toggleTableCellsBottomCenterAlignmentItem1,
     this.toggleTableCellsBottomRightAlignmentItem1,
     this.switchToSimpleViewItem1,
     this.switchToDraftViewItem1,
     this.switchToPrintLayoutViewItem1,
     this.toggleShowHorizontalRulerItem1,
     this.toggleShowVerticalRulerItem1,
     this.zoomOutItem1,
     this.zoomInItem1,
     this.toggleBulletedListItem1,
     this.insertPageBreakItem1,
     this.insertTableItem1,
     this.insertPictureItem1,
     this.insertBookmarkItem1,
     this.insertHyperlinkItem1,
     this.editPageHeaderItem1,
     this.editPageFooterItem1,
     this.insertPageNumberItem1,
     this.insertPageCountItem1,
     this.insertSymbolItem1,
     this.changeSectionPageMarginsItem1,
     this.setNormalSectionPageMarginsItem1,
     this.setNarrowSectionPageMarginsItem1,
     this.setModerateSectionPageMarginsItem1,
     this.setWideSectionPageMarginsItem1,
     this.changeSectionPageOrientationItem1,
     this.setPortraitPageOrientationItem1,
     this.setLandscapePageOrientationItem1,
     this.changeSectionPaperKindItem1,
     this.changeSectionColumnsItem1,
     this.setSectionOneColumnItem1,
     this.setSectionTwoColumnsItem1,
     this.setSectionThreeColumnsItem1,
     this.showColumnsSetupFormItem1,
     this.insertBreakItem1,
     this.insertPageBreakItem2,
     this.insertColumnBreakItem1,
     this.insertSectionBreakNextPageItem1,
     this.insertSectionBreakEvenPageItem1,
     this.insertSectionBreakOddPageItem1,
     this.changeSectionLineNumberingItem1,
     this.setSectionLineNumberingNoneItem1,
     this.setSectionLineNumberingContinuousItem1,
     this.setSectionLineNumberingRestartNewPageItem1,
     this.setSectionLineNumberingRestartNewSectionItem1,
     this.toggleParagraphSuppressLineNumbersItem1,
     this.showLineNumberingFormItem1,
     this.checkSpellingItem1,
     this.protectDocumentItem1,
     this.changeRangeEditingPermissionsItem1,
     this.unprotectDocumentItem1,
     this.barStaticItem1,
     this.cboTemplate,
     this.barStaticItem2,
     this.barEditItem1,
     this.insertPdfItem,
     this.barButtonItem1,
     this.insertImage1,
     this.barButtonItem2});
     this.barManager1.MaxItemId = 192;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemFontEdit1,
     this.repositoryItemRichEditFontSizeEdit1,
     this.repositoryItemRichEditStyleEdit1,
     this.repositoryItemBorderLineStyle1,
     this.repositoryItemBorderLineWeight1,
     this.repositoryItemPictureEdit1,
     this.repositoryItemComboBox1,
     this.repositoryItemTextEdit1,
     this.repositoryItemRichEditStyleEdit2,
     this.repositoryItemComboBox2,
     this.repositoryItemComboBox4,
     this.repositoryItemPictureEdit2,
     this.repositoryItemRichEditStyleEdit3});
     this.barManager1.StatusBar = this.bar3;
     //
     // bar3
     //
     this.bar3.BarName = "Status bar";
     this.bar3.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar3.DockCol = 0;
     this.bar3.DockRow = 0;
     this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar3.OptionsBar.AllowQuickCustomization = false;
     this.bar3.OptionsBar.DrawDragBorder = false;
     this.bar3.OptionsBar.UseWholeRow = true;
     this.bar3.Text = "Status bar";
     //
     // commonBar1
     //
     this.commonBar1.BarName = "";
     this.commonBar1.DockCol = 0;
     this.commonBar1.DockRow = 0;
     this.commonBar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.commonBar1.FloatLocation = new System.Drawing.Point(481, 151);
     this.commonBar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.insertPdfItem),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertImage1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2)});
     this.commonBar1.Offset = 381;
     this.commonBar1.Text = "";
     //
     // insertPdfItem
     //
     this.insertPdfItem.Caption = "Pdf";
     this.insertPdfItem.Id = 188;
     this.insertPdfItem.Name = "insertPdfItem";
     this.insertPdfItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.insertPdfItem_ItemClick);
     //
     // insertImage1
     //
     this.insertImage1.Caption = "Img";
     this.insertImage1.Id = 190;
     this.insertImage1.Name = "insertImage1";
     this.insertImage1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.insertImage1_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "Bookmark";
     this.barButtonItem2.Id = 191;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(728, 29);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 491);
     this.barDockControlBottom.Size = new System.Drawing.Size(728, 23);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 29);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 462);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(728, 29);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 462);
     //
     // cutItem1
     //
     this.cutItem1.Caption = "Cut";
     this.cutItem1.Enabled = false;
     this.cutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.Glyph")));
     this.cutItem1.Id = 2;
     this.cutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("cutItem1.LargeGlyph")));
     this.cutItem1.Name = "cutItem1";
     toolTipTitleItem1.Text = "Cut (Ctrl+X)";
     toolTipItem1.Text = "Cut the selection from the document and put it on the Clipboard.";
     superToolTip1.Items.Add(toolTipTitleItem1);
     superToolTip1.Items.Add(toolTipItem1);
     this.cutItem1.SuperTip = superToolTip1;
     //
     // copyItem1
     //
     this.copyItem1.Caption = "Copy";
     this.copyItem1.Enabled = false;
     this.copyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.Glyph")));
     this.copyItem1.Id = 3;
     this.copyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("copyItem1.LargeGlyph")));
     this.copyItem1.Name = "copyItem1";
     toolTipTitleItem2.Text = "Copy (Ctrl+C)";
     toolTipItem2.Text = "Copy the selection and put it on the Clipboard.";
     superToolTip2.Items.Add(toolTipTitleItem2);
     superToolTip2.Items.Add(toolTipItem2);
     this.copyItem1.SuperTip = superToolTip2;
     //
     // pasteItem1
     //
     this.pasteItem1.Caption = "Paste";
     this.pasteItem1.Enabled = false;
     this.pasteItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.Glyph")));
     this.pasteItem1.Id = 4;
     this.pasteItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("pasteItem1.LargeGlyph")));
     this.pasteItem1.Name = "pasteItem1";
     toolTipTitleItem3.Text = "Paste (Ctrl+V)";
     toolTipItem3.Text = "Paste the contents of the Clipboard.";
     superToolTip3.Items.Add(toolTipTitleItem3);
     superToolTip3.Items.Add(toolTipItem3);
     this.pasteItem1.SuperTip = superToolTip3;
     //
     // pasteSpecialItem1
     //
     this.pasteSpecialItem1.Caption = "Paste Special";
     this.pasteSpecialItem1.Enabled = false;
     this.pasteSpecialItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("pasteSpecialItem1.Glyph")));
     this.pasteSpecialItem1.Id = 5;
     this.pasteSpecialItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("pasteSpecialItem1.LargeGlyph")));
     this.pasteSpecialItem1.Name = "pasteSpecialItem1";
     toolTipTitleItem4.Text = "Paste Special (Ctrl+Alt+V)";
     toolTipItem4.Text = "Paste Special";
     superToolTip4.Items.Add(toolTipTitleItem4);
     superToolTip4.Items.Add(toolTipItem4);
     this.pasteSpecialItem1.SuperTip = superToolTip4;
     //
     // changeFontNameItem1
     //
     this.changeFontNameItem1.Caption = "Font";
     this.changeFontNameItem1.Edit = this.repositoryItemFontEdit1;
     this.changeFontNameItem1.Enabled = false;
     this.changeFontNameItem1.Id = 6;
     this.changeFontNameItem1.Name = "changeFontNameItem1";
     toolTipTitleItem5.Text = "Font";
     toolTipItem5.Text = "Change the font face.";
     superToolTip5.Items.Add(toolTipTitleItem5);
     superToolTip5.Items.Add(toolTipItem5);
     this.changeFontNameItem1.SuperTip = superToolTip5;
     //
     // repositoryItemFontEdit1
     //
     this.repositoryItemFontEdit1.AutoHeight = false;
     this.repositoryItemFontEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemFontEdit1.Name = "repositoryItemFontEdit1";
     //
     // changeFontSizeItem1
     //
     this.changeFontSizeItem1.Caption = "Font Size";
     this.changeFontSizeItem1.Edit = this.repositoryItemRichEditFontSizeEdit1;
     this.changeFontSizeItem1.Enabled = false;
     this.changeFontSizeItem1.Id = 7;
     this.changeFontSizeItem1.Name = "changeFontSizeItem1";
     toolTipTitleItem6.Text = "Font Size";
     toolTipItem6.Text = "Change the font size.";
     superToolTip6.Items.Add(toolTipTitleItem6);
     superToolTip6.Items.Add(toolTipItem6);
     this.changeFontSizeItem1.SuperTip = superToolTip6;
     //
     // repositoryItemRichEditFontSizeEdit1
     //
     this.repositoryItemRichEditFontSizeEdit1.AutoHeight = false;
     this.repositoryItemRichEditFontSizeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditFontSizeEdit1.Control = null;
     this.repositoryItemRichEditFontSizeEdit1.Name = "repositoryItemRichEditFontSizeEdit1";
     //
     // changeFontColorItem1
     //
     this.changeFontColorItem1.Caption = "Font Color";
     this.changeFontColorItem1.Enabled = false;
     this.changeFontColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.Glyph")));
     this.changeFontColorItem1.Id = 8;
     this.changeFontColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontColorItem1.LargeGlyph")));
     this.changeFontColorItem1.Name = "changeFontColorItem1";
     toolTipTitleItem7.Text = "Font Color";
     toolTipItem7.Text = "Change the font color.";
     superToolTip7.Items.Add(toolTipTitleItem7);
     superToolTip7.Items.Add(toolTipItem7);
     this.changeFontColorItem1.SuperTip = superToolTip7;
     //
     // changeFontBackColorItem1
     //
     this.changeFontBackColorItem1.Caption = "Text Highlight Color";
     this.changeFontBackColorItem1.Enabled = false;
     this.changeFontBackColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.Glyph")));
     this.changeFontBackColorItem1.Id = 9;
     this.changeFontBackColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeFontBackColorItem1.LargeGlyph")));
     this.changeFontBackColorItem1.Name = "changeFontBackColorItem1";
     toolTipTitleItem8.Text = "Text Highlight Color";
     toolTipItem8.Text = "Make text look like it was marked with a highlighter pen.";
     superToolTip8.Items.Add(toolTipTitleItem8);
     superToolTip8.Items.Add(toolTipItem8);
     this.changeFontBackColorItem1.SuperTip = superToolTip8;
     //
     // toggleFontBoldItem1
     //
     this.toggleFontBoldItem1.Caption = "Bold";
     this.toggleFontBoldItem1.Enabled = false;
     this.toggleFontBoldItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.Glyph")));
     this.toggleFontBoldItem1.Id = 10;
     this.toggleFontBoldItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontBoldItem1.LargeGlyph")));
     this.toggleFontBoldItem1.Name = "toggleFontBoldItem1";
     toolTipTitleItem9.Text = "Bold (Ctrl+B)";
     toolTipItem9.Text = "Make the selected text bold.";
     superToolTip9.Items.Add(toolTipTitleItem9);
     superToolTip9.Items.Add(toolTipItem9);
     this.toggleFontBoldItem1.SuperTip = superToolTip9;
     //
     // toggleFontItalicItem1
     //
     this.toggleFontItalicItem1.Caption = "Italic";
     this.toggleFontItalicItem1.Enabled = false;
     this.toggleFontItalicItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.Glyph")));
     this.toggleFontItalicItem1.Id = 11;
     this.toggleFontItalicItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontItalicItem1.LargeGlyph")));
     this.toggleFontItalicItem1.Name = "toggleFontItalicItem1";
     toolTipTitleItem10.Text = "Italic (Ctrl+I)";
     toolTipItem10.Text = "Italicize the selected text.";
     superToolTip10.Items.Add(toolTipTitleItem10);
     superToolTip10.Items.Add(toolTipItem10);
     this.toggleFontItalicItem1.SuperTip = superToolTip10;
     //
     // toggleFontUnderlineItem1
     //
     this.toggleFontUnderlineItem1.Caption = "Underline";
     this.toggleFontUnderlineItem1.Enabled = false;
     this.toggleFontUnderlineItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.Glyph")));
     this.toggleFontUnderlineItem1.Id = 12;
     this.toggleFontUnderlineItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontUnderlineItem1.LargeGlyph")));
     this.toggleFontUnderlineItem1.Name = "toggleFontUnderlineItem1";
     toolTipTitleItem11.Text = "Underline (Ctrl+U)";
     toolTipItem11.Text = "Underline the selected text.";
     superToolTip11.Items.Add(toolTipTitleItem11);
     superToolTip11.Items.Add(toolTipItem11);
     this.toggleFontUnderlineItem1.SuperTip = superToolTip11;
     //
     // toggleFontDoubleUnderlineItem1
     //
     this.toggleFontDoubleUnderlineItem1.Caption = "Double Underline";
     this.toggleFontDoubleUnderlineItem1.Enabled = false;
     this.toggleFontDoubleUnderlineItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleUnderlineItem1.Glyph")));
     this.toggleFontDoubleUnderlineItem1.Id = 13;
     this.toggleFontDoubleUnderlineItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleUnderlineItem1.LargeGlyph")));
     this.toggleFontDoubleUnderlineItem1.Name = "toggleFontDoubleUnderlineItem1";
     toolTipTitleItem12.Text = "Double Underline (Ctrl+Shift+D)";
     toolTipItem12.Text = "Double underline";
     superToolTip12.Items.Add(toolTipTitleItem12);
     superToolTip12.Items.Add(toolTipItem12);
     this.toggleFontDoubleUnderlineItem1.SuperTip = superToolTip12;
     //
     // toggleFontStrikeoutItem1
     //
     this.toggleFontStrikeoutItem1.Caption = "Strikethrough";
     this.toggleFontStrikeoutItem1.Enabled = false;
     this.toggleFontStrikeoutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.Glyph")));
     this.toggleFontStrikeoutItem1.Id = 14;
     this.toggleFontStrikeoutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontStrikeoutItem1.LargeGlyph")));
     this.toggleFontStrikeoutItem1.Name = "toggleFontStrikeoutItem1";
     toolTipTitleItem13.Text = "Strikethrough";
     toolTipItem13.Text = "Draw a line through the middle of the selected text.";
     superToolTip13.Items.Add(toolTipTitleItem13);
     superToolTip13.Items.Add(toolTipItem13);
     this.toggleFontStrikeoutItem1.SuperTip = superToolTip13;
     //
     // toggleFontDoubleStrikeoutItem1
     //
     this.toggleFontDoubleStrikeoutItem1.Caption = "Double Strikethrough";
     this.toggleFontDoubleStrikeoutItem1.Enabled = false;
     this.toggleFontDoubleStrikeoutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleStrikeoutItem1.Glyph")));
     this.toggleFontDoubleStrikeoutItem1.Id = 15;
     this.toggleFontDoubleStrikeoutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontDoubleStrikeoutItem1.LargeGlyph")));
     this.toggleFontDoubleStrikeoutItem1.Name = "toggleFontDoubleStrikeoutItem1";
     toolTipTitleItem14.Text = "Double Strikethrough";
     toolTipItem14.Text = "Double strikethrough";
     superToolTip14.Items.Add(toolTipTitleItem14);
     superToolTip14.Items.Add(toolTipItem14);
     this.toggleFontDoubleStrikeoutItem1.SuperTip = superToolTip14;
     //
     // toggleFontSubscriptItem1
     //
     this.toggleFontSubscriptItem1.Caption = "Subscript";
     this.toggleFontSubscriptItem1.Enabled = false;
     this.toggleFontSubscriptItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.Glyph")));
     this.toggleFontSubscriptItem1.Id = 17;
     this.toggleFontSubscriptItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleFontSubscriptItem1.LargeGlyph")));
     this.toggleFontSubscriptItem1.Name = "toggleFontSubscriptItem1";
     toolTipTitleItem15.Text = "Subscript (Ctrl++)";
     toolTipItem15.Text = "Create small letters below the text baseline.";
     superToolTip15.Items.Add(toolTipTitleItem15);
     superToolTip15.Items.Add(toolTipItem15);
     this.toggleFontSubscriptItem1.SuperTip = superToolTip15;
     //
     // changeTextCaseItem1
     //
     this.changeTextCaseItem1.Caption = "Change Case";
     this.changeTextCaseItem1.Enabled = false;
     this.changeTextCaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTextCaseItem1.Glyph")));
     this.changeTextCaseItem1.Id = 18;
     this.changeTextCaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTextCaseItem1.LargeGlyph")));
     this.changeTextCaseItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.makeTextUpperCaseItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.makeTextLowerCaseItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTextCaseItem1)});
     this.changeTextCaseItem1.Name = "changeTextCaseItem1";
     toolTipTitleItem19.Text = "Change Case";
     toolTipItem19.Text = "Change all the selected text to UPPERCASE, lowercase, or other common capitalizat" +
         "ions.";
     superToolTip19.Items.Add(toolTipTitleItem19);
     superToolTip19.Items.Add(toolTipItem19);
     this.changeTextCaseItem1.SuperTip = superToolTip19;
     //
     // makeTextUpperCaseItem1
     //
     this.makeTextUpperCaseItem1.Caption = "UPPERCASE";
     this.makeTextUpperCaseItem1.Enabled = false;
     this.makeTextUpperCaseItem1.Id = 19;
     this.makeTextUpperCaseItem1.Name = "makeTextUpperCaseItem1";
     toolTipTitleItem16.Text = "UPPERCASE";
     toolTipItem16.Text = "Change all the selected text to UPPERCASE.";
     superToolTip16.Items.Add(toolTipTitleItem16);
     superToolTip16.Items.Add(toolTipItem16);
     this.makeTextUpperCaseItem1.SuperTip = superToolTip16;
     //
     // makeTextLowerCaseItem1
     //
     this.makeTextLowerCaseItem1.Caption = "lowercase";
     this.makeTextLowerCaseItem1.Enabled = false;
     this.makeTextLowerCaseItem1.Id = 20;
     this.makeTextLowerCaseItem1.Name = "makeTextLowerCaseItem1";
     toolTipTitleItem17.Text = "lowercase";
     toolTipItem17.Text = "Change all the selected text to lowercase.";
     superToolTip17.Items.Add(toolTipTitleItem17);
     superToolTip17.Items.Add(toolTipItem17);
     this.makeTextLowerCaseItem1.SuperTip = superToolTip17;
     //
     // toggleTextCaseItem1
     //
     this.toggleTextCaseItem1.Caption = "tOGGLE cASE";
     this.toggleTextCaseItem1.Enabled = false;
     this.toggleTextCaseItem1.Id = 21;
     this.toggleTextCaseItem1.Name = "toggleTextCaseItem1";
     toolTipTitleItem18.Text = "tOGGLE cASE";
     toolTipItem18.Text = "tOGGLE cASE.";
     superToolTip18.Items.Add(toolTipTitleItem18);
     superToolTip18.Items.Add(toolTipItem18);
     this.toggleTextCaseItem1.SuperTip = superToolTip18;
     //
     // fontSizeIncreaseItem1
     //
     this.fontSizeIncreaseItem1.Caption = "Grow Font";
     this.fontSizeIncreaseItem1.Enabled = false;
     this.fontSizeIncreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.Glyph")));
     this.fontSizeIncreaseItem1.Id = 22;
     this.fontSizeIncreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeIncreaseItem1.LargeGlyph")));
     this.fontSizeIncreaseItem1.Name = "fontSizeIncreaseItem1";
     toolTipTitleItem20.Text = "Grow Font (Ctrl+Shift+.)";
     toolTipItem20.Text = "Increase the font size.";
     superToolTip20.Items.Add(toolTipTitleItem20);
     superToolTip20.Items.Add(toolTipItem20);
     this.fontSizeIncreaseItem1.SuperTip = superToolTip20;
     //
     // fontSizeDecreaseItem1
     //
     this.fontSizeDecreaseItem1.Caption = "Shrink Font";
     this.fontSizeDecreaseItem1.Enabled = false;
     this.fontSizeDecreaseItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.Glyph")));
     this.fontSizeDecreaseItem1.Id = 23;
     this.fontSizeDecreaseItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fontSizeDecreaseItem1.LargeGlyph")));
     this.fontSizeDecreaseItem1.Name = "fontSizeDecreaseItem1";
     toolTipTitleItem21.Text = "Shrink Font (Ctrl+Shift+,)";
     toolTipItem21.Text = "Decrease the font size.";
     superToolTip21.Items.Add(toolTipTitleItem21);
     superToolTip21.Items.Add(toolTipItem21);
     this.fontSizeDecreaseItem1.SuperTip = superToolTip21;
     //
     // clearFormattingItem1
     //
     this.clearFormattingItem1.Caption = "Clear Formatting";
     this.clearFormattingItem1.Enabled = false;
     this.clearFormattingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.Glyph")));
     this.clearFormattingItem1.Id = 24;
     this.clearFormattingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("clearFormattingItem1.LargeGlyph")));
     this.clearFormattingItem1.Name = "clearFormattingItem1";
     toolTipTitleItem22.Text = "Clear Formatting (Ctrl+Space)";
     toolTipItem22.Text = "Clear all the formatting from the selection, leaving only plain text.";
     superToolTip22.Items.Add(toolTipTitleItem22);
     superToolTip22.Items.Add(toolTipItem22);
     this.clearFormattingItem1.SuperTip = superToolTip22;
     //
     // showFontFormItem1
     //
     this.showFontFormItem1.Caption = "Font";
     this.showFontFormItem1.Enabled = false;
     this.showFontFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.Glyph")));
     this.showFontFormItem1.Id = 25;
     this.showFontFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showFontFormItem1.LargeGlyph")));
     this.showFontFormItem1.Name = "showFontFormItem1";
     toolTipTitleItem23.Text = "Font (Ctrl+D)";
     toolTipItem23.Text = "Show the Font dialog box.";
     superToolTip23.Items.Add(toolTipTitleItem23);
     superToolTip23.Items.Add(toolTipItem23);
     this.showFontFormItem1.SuperTip = superToolTip23;
     //
     // toggleParagraphAlignmentLeftItem1
     //
     this.toggleParagraphAlignmentLeftItem1.Caption = "Align Text Left";
     this.toggleParagraphAlignmentLeftItem1.Enabled = false;
     this.toggleParagraphAlignmentLeftItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.Glyph")));
     this.toggleParagraphAlignmentLeftItem1.Id = 26;
     this.toggleParagraphAlignmentLeftItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentLeftItem1.LargeGlyph")));
     this.toggleParagraphAlignmentLeftItem1.Name = "toggleParagraphAlignmentLeftItem1";
     toolTipTitleItem24.Text = "Align Text Left (Ctrl+L)";
     toolTipItem24.Text = "Align text to the left.";
     superToolTip24.Items.Add(toolTipTitleItem24);
     superToolTip24.Items.Add(toolTipItem24);
     this.toggleParagraphAlignmentLeftItem1.SuperTip = superToolTip24;
     //
     // toggleParagraphAlignmentCenterItem1
     //
     this.toggleParagraphAlignmentCenterItem1.Caption = "Center";
     this.toggleParagraphAlignmentCenterItem1.Enabled = false;
     this.toggleParagraphAlignmentCenterItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.Glyph")));
     this.toggleParagraphAlignmentCenterItem1.Id = 27;
     this.toggleParagraphAlignmentCenterItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentCenterItem1.LargeGlyph")));
     this.toggleParagraphAlignmentCenterItem1.Name = "toggleParagraphAlignmentCenterItem1";
     toolTipTitleItem25.Text = "Center (Ctrl+E)";
     toolTipItem25.Text = "Center text.";
     superToolTip25.Items.Add(toolTipTitleItem25);
     superToolTip25.Items.Add(toolTipItem25);
     this.toggleParagraphAlignmentCenterItem1.SuperTip = superToolTip25;
     //
     // toggleParagraphAlignmentRightItem1
     //
     this.toggleParagraphAlignmentRightItem1.Caption = "Align Text Right";
     this.toggleParagraphAlignmentRightItem1.Enabled = false;
     this.toggleParagraphAlignmentRightItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.Glyph")));
     this.toggleParagraphAlignmentRightItem1.Id = 28;
     this.toggleParagraphAlignmentRightItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentRightItem1.LargeGlyph")));
     this.toggleParagraphAlignmentRightItem1.Name = "toggleParagraphAlignmentRightItem1";
     toolTipTitleItem26.Text = "Align Text Right (Ctrl+R)";
     toolTipItem26.Text = "Align text to the right.";
     superToolTip26.Items.Add(toolTipTitleItem26);
     superToolTip26.Items.Add(toolTipItem26);
     this.toggleParagraphAlignmentRightItem1.SuperTip = superToolTip26;
     //
     // toggleParagraphAlignmentJustifyItem1
     //
     this.toggleParagraphAlignmentJustifyItem1.Caption = "Justify";
     this.toggleParagraphAlignmentJustifyItem1.Enabled = false;
     this.toggleParagraphAlignmentJustifyItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.Glyph")));
     this.toggleParagraphAlignmentJustifyItem1.Id = 29;
     this.toggleParagraphAlignmentJustifyItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleParagraphAlignmentJustifyItem1.LargeGlyph")));
     this.toggleParagraphAlignmentJustifyItem1.Name = "toggleParagraphAlignmentJustifyItem1";
     toolTipTitleItem27.Text = "Justify (Ctrl+J)";
     toolTipItem27.Text = "Align text to both left and right margins, adding extra space between words as ne" +
         "cessary.\r\n\r\nThis creates a clean look along the left and right side of the page." +
         "";
     superToolTip27.Items.Add(toolTipTitleItem27);
     superToolTip27.Items.Add(toolTipItem27);
     this.toggleParagraphAlignmentJustifyItem1.SuperTip = superToolTip27;
     //
     // changeParagraphLineSpacingItem1
     //
     this.changeParagraphLineSpacingItem1.Caption = "Line Spacing";
     this.changeParagraphLineSpacingItem1.Enabled = false;
     this.changeParagraphLineSpacingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeParagraphLineSpacingItem1.Glyph")));
     this.changeParagraphLineSpacingItem1.Id = 30;
     this.changeParagraphLineSpacingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeParagraphLineSpacingItem1.LargeGlyph")));
     this.changeParagraphLineSpacingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSingleParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSesquialteralParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setDoubleParagraphSpacingItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showLineSpacingFormItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingBeforeParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingBeforeParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.addSpacingAfterParagraphItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.removeSpacingAfterParagraphItem1)});
     this.changeParagraphLineSpacingItem1.Name = "changeParagraphLineSpacingItem1";
     toolTipTitleItem36.Text = "Line Spacing";
     toolTipItem36.Text = "Change the spacing between lines of text.\r\n\r\nYou can also customize the amount of" +
         " space added before and after paragraphs.";
     superToolTip36.Items.Add(toolTipTitleItem36);
     superToolTip36.Items.Add(toolTipItem36);
     this.changeParagraphLineSpacingItem1.SuperTip = superToolTip36;
     //
     // setSingleParagraphSpacingItem1
     //
     this.setSingleParagraphSpacingItem1.Caption = "1.0";
     this.setSingleParagraphSpacingItem1.Enabled = false;
     this.setSingleParagraphSpacingItem1.Id = 31;
     this.setSingleParagraphSpacingItem1.Name = "setSingleParagraphSpacingItem1";
     toolTipTitleItem28.Text = "1.0 (Ctrl+1)";
     toolTipItem28.Text = " ";
     superToolTip28.Items.Add(toolTipTitleItem28);
     superToolTip28.Items.Add(toolTipItem28);
     this.setSingleParagraphSpacingItem1.SuperTip = superToolTip28;
     //
     // setSesquialteralParagraphSpacingItem1
     //
     this.setSesquialteralParagraphSpacingItem1.Caption = "1.5";
     this.setSesquialteralParagraphSpacingItem1.Enabled = false;
     this.setSesquialteralParagraphSpacingItem1.Id = 32;
     this.setSesquialteralParagraphSpacingItem1.Name = "setSesquialteralParagraphSpacingItem1";
     toolTipTitleItem29.Text = "1.5 (Ctrl+5)";
     toolTipItem29.Text = " ";
     superToolTip29.Items.Add(toolTipTitleItem29);
     superToolTip29.Items.Add(toolTipItem29);
     this.setSesquialteralParagraphSpacingItem1.SuperTip = superToolTip29;
     //
     // setDoubleParagraphSpacingItem1
     //
     this.setDoubleParagraphSpacingItem1.Caption = "2.0";
     this.setDoubleParagraphSpacingItem1.Enabled = false;
     this.setDoubleParagraphSpacingItem1.Id = 33;
     this.setDoubleParagraphSpacingItem1.Name = "setDoubleParagraphSpacingItem1";
     toolTipTitleItem30.Text = "2.0 (Ctrl+2)";
     toolTipItem30.Text = " ";
     superToolTip30.Items.Add(toolTipTitleItem30);
     superToolTip30.Items.Add(toolTipItem30);
     this.setDoubleParagraphSpacingItem1.SuperTip = superToolTip30;
     //
     // showLineSpacingFormItem1
     //
     this.showLineSpacingFormItem1.Caption = "Line Spacing Options...";
     this.showLineSpacingFormItem1.Enabled = false;
     this.showLineSpacingFormItem1.Id = 34;
     this.showLineSpacingFormItem1.Name = "showLineSpacingFormItem1";
     toolTipTitleItem31.Text = "Line Spacing Options...";
     toolTipItem31.Text = " ";
     superToolTip31.Items.Add(toolTipTitleItem31);
     superToolTip31.Items.Add(toolTipItem31);
     this.showLineSpacingFormItem1.SuperTip = superToolTip31;
     //
     // addSpacingBeforeParagraphItem1
     //
     this.addSpacingBeforeParagraphItem1.Caption = "Add Space &Before Paragraph";
     this.addSpacingBeforeParagraphItem1.Enabled = false;
     this.addSpacingBeforeParagraphItem1.Id = 35;
     this.addSpacingBeforeParagraphItem1.Name = "addSpacingBeforeParagraphItem1";
     toolTipTitleItem32.Text = "Add Space &Before Paragraph";
     toolTipItem32.Text = " ";
     superToolTip32.Items.Add(toolTipTitleItem32);
     superToolTip32.Items.Add(toolTipItem32);
     this.addSpacingBeforeParagraphItem1.SuperTip = superToolTip32;
     //
     // removeSpacingBeforeParagraphItem1
     //
     this.removeSpacingBeforeParagraphItem1.Caption = "Remove Space &Before Paragraph";
     this.removeSpacingBeforeParagraphItem1.Enabled = false;
     this.removeSpacingBeforeParagraphItem1.Id = 36;
     this.removeSpacingBeforeParagraphItem1.Name = "removeSpacingBeforeParagraphItem1";
     toolTipTitleItem33.Text = "Remove Space &Before Paragraph";
     toolTipItem33.Text = " ";
     superToolTip33.Items.Add(toolTipTitleItem33);
     superToolTip33.Items.Add(toolTipItem33);
     this.removeSpacingBeforeParagraphItem1.SuperTip = superToolTip33;
     //
     // addSpacingAfterParagraphItem1
     //
     this.addSpacingAfterParagraphItem1.Caption = "Add Space &After Paragraph";
     this.addSpacingAfterParagraphItem1.Enabled = false;
     this.addSpacingAfterParagraphItem1.Id = 37;
     this.addSpacingAfterParagraphItem1.Name = "addSpacingAfterParagraphItem1";
     toolTipTitleItem34.Text = "Add Space &After Paragraph";
     toolTipItem34.Text = " ";
     superToolTip34.Items.Add(toolTipTitleItem34);
     superToolTip34.Items.Add(toolTipItem34);
     this.addSpacingAfterParagraphItem1.SuperTip = superToolTip34;
     //
     // removeSpacingAfterParagraphItem1
     //
     this.removeSpacingAfterParagraphItem1.Caption = "Remove Space &After Paragraph";
     this.removeSpacingAfterParagraphItem1.Enabled = false;
     this.removeSpacingAfterParagraphItem1.Id = 38;
     this.removeSpacingAfterParagraphItem1.Name = "removeSpacingAfterParagraphItem1";
     toolTipTitleItem35.Text = "Remove Space &After Paragraph";
     toolTipItem35.Text = " ";
     superToolTip35.Items.Add(toolTipTitleItem35);
     superToolTip35.Items.Add(toolTipItem35);
     this.removeSpacingAfterParagraphItem1.SuperTip = superToolTip35;
     //
     // toggleNumberingListItem1
     //
     this.toggleNumberingListItem1.Caption = "Numbering";
     this.toggleNumberingListItem1.Enabled = false;
     this.toggleNumberingListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.Glyph")));
     this.toggleNumberingListItem1.Id = 39;
     this.toggleNumberingListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleNumberingListItem1.LargeGlyph")));
     this.toggleNumberingListItem1.Name = "toggleNumberingListItem1";
     toolTipTitleItem37.Text = "Numbering";
     toolTipItem37.Text = "Start a numbered list.";
     superToolTip37.Items.Add(toolTipTitleItem37);
     superToolTip37.Items.Add(toolTipItem37);
     this.toggleNumberingListItem1.SuperTip = superToolTip37;
     //
     // toggleMultiLevelListItem1
     //
     this.toggleMultiLevelListItem1.Caption = "Multilevel list";
     this.toggleMultiLevelListItem1.Enabled = false;
     this.toggleMultiLevelListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.Glyph")));
     this.toggleMultiLevelListItem1.Id = 40;
     this.toggleMultiLevelListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleMultiLevelListItem1.LargeGlyph")));
     this.toggleMultiLevelListItem1.Name = "toggleMultiLevelListItem1";
     toolTipTitleItem38.Text = "Multilevel list";
     toolTipItem38.Text = "Start a multilevel list.";
     superToolTip38.Items.Add(toolTipTitleItem38);
     superToolTip38.Items.Add(toolTipItem38);
     this.toggleMultiLevelListItem1.SuperTip = superToolTip38;
     //
     // decreaseIndentItem1
     //
     this.decreaseIndentItem1.Caption = "Decrease Indent";
     this.decreaseIndentItem1.Enabled = false;
     this.decreaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.Glyph")));
     this.decreaseIndentItem1.Id = 41;
     this.decreaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("decreaseIndentItem1.LargeGlyph")));
     this.decreaseIndentItem1.Name = "decreaseIndentItem1";
     toolTipTitleItem39.Text = "Decrease Indent";
     toolTipItem39.Text = "Decrease the indent level of the paragraph.";
     superToolTip39.Items.Add(toolTipTitleItem39);
     superToolTip39.Items.Add(toolTipItem39);
     this.decreaseIndentItem1.SuperTip = superToolTip39;
     //
     // increaseIndentItem1
     //
     this.increaseIndentItem1.Caption = "Increase Indent";
     this.increaseIndentItem1.Enabled = false;
     this.increaseIndentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.Glyph")));
     this.increaseIndentItem1.Id = 42;
     this.increaseIndentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("increaseIndentItem1.LargeGlyph")));
     this.increaseIndentItem1.Name = "increaseIndentItem1";
     toolTipTitleItem40.Text = "Increase Indent";
     toolTipItem40.Text = "Increase the indent level of the paragraph.";
     superToolTip40.Items.Add(toolTipTitleItem40);
     superToolTip40.Items.Add(toolTipItem40);
     this.increaseIndentItem1.SuperTip = superToolTip40;
     //
     // toggleShowWhitespaceItem1
     //
     this.toggleShowWhitespaceItem1.Caption = "Show/Hide ¶";
     this.toggleShowWhitespaceItem1.Enabled = false;
     this.toggleShowWhitespaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.Glyph")));
     this.toggleShowWhitespaceItem1.Id = 43;
     this.toggleShowWhitespaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowWhitespaceItem1.LargeGlyph")));
     this.toggleShowWhitespaceItem1.Name = "toggleShowWhitespaceItem1";
     toolTipTitleItem41.Text = "Show/Hide ¶ (Ctrl+Shift+8)";
     toolTipItem41.Text = "Show paragraph marks and other hidden formatting symbols.";
     superToolTip41.Items.Add(toolTipTitleItem41);
     superToolTip41.Items.Add(toolTipItem41);
     this.toggleShowWhitespaceItem1.SuperTip = superToolTip41;
     //
     // showParagraphFormItem1
     //
     this.showParagraphFormItem1.Caption = "Paragraph";
     this.showParagraphFormItem1.Enabled = false;
     this.showParagraphFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.Glyph")));
     this.showParagraphFormItem1.Id = 44;
     this.showParagraphFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showParagraphFormItem1.LargeGlyph")));
     this.showParagraphFormItem1.Name = "showParagraphFormItem1";
     toolTipTitleItem42.Text = "Paragraph";
     toolTipItem42.Text = "Show the Paragraph dialog box.";
     superToolTip42.Items.Add(toolTipTitleItem42);
     superToolTip42.Items.Add(toolTipItem42);
     this.showParagraphFormItem1.SuperTip = superToolTip42;
     //
     // findItem1
     //
     this.findItem1.Caption = "Find";
     this.findItem1.Enabled = false;
     this.findItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("findItem1.Glyph")));
     this.findItem1.Id = 46;
     this.findItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("findItem1.LargeGlyph")));
     this.findItem1.Name = "findItem1";
     toolTipTitleItem43.Text = "Find (Ctrl+F)";
     toolTipItem43.Text = "Find text in the document.";
     superToolTip43.Items.Add(toolTipTitleItem43);
     superToolTip43.Items.Add(toolTipItem43);
     this.findItem1.SuperTip = superToolTip43;
     //
     // replaceItem1
     //
     this.replaceItem1.Caption = "Replace";
     this.replaceItem1.Enabled = false;
     this.replaceItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.Glyph")));
     this.replaceItem1.Id = 47;
     this.replaceItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("replaceItem1.LargeGlyph")));
     this.replaceItem1.Name = "replaceItem1";
     toolTipTitleItem44.Text = "Replace (Ctrl+H)";
     toolTipItem44.Text = "Replace text in the document.";
     superToolTip44.Items.Add(toolTipTitleItem44);
     superToolTip44.Items.Add(toolTipItem44);
     this.replaceItem1.SuperTip = superToolTip44;
     //
     // changeTableCellsShadingItem1
     //
     this.changeTableCellsShadingItem1.Caption = "Shading";
     this.changeTableCellsShadingItem1.Enabled = false;
     this.changeTableCellsShadingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableCellsShadingItem1.Glyph")));
     this.changeTableCellsShadingItem1.Id = 48;
     this.changeTableCellsShadingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableCellsShadingItem1.LargeGlyph")));
     this.changeTableCellsShadingItem1.Name = "changeTableCellsShadingItem1";
     toolTipTitleItem45.Text = "Shading";
     toolTipItem45.Text = "Color the background behind the selected cells.";
     superToolTip45.Items.Add(toolTipTitleItem45);
     superToolTip45.Items.Add(toolTipItem45);
     this.changeTableCellsShadingItem1.SuperTip = superToolTip45;
     //
     // changeTableBordersItem1
     //
     this.changeTableBordersItem1.Caption = "Borders";
     this.changeTableBordersItem1.Enabled = false;
     this.changeTableBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableBordersItem1.Glyph")));
     this.changeTableBordersItem1.Id = 49;
     this.changeTableBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableBordersItem1.LargeGlyph")));
     this.changeTableBordersItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsBottomBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsTopBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsLeftBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsRightBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.resetTableCellsAllBordersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsAllBordersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsOutsideBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideHorizontalBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableCellsInsideVerticalBorderItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleShowTableGridLinesItem1)});
     this.changeTableBordersItem1.Name = "changeTableBordersItem1";
     toolTipTitleItem57.Text = "Borders";
     toolTipItem57.Text = "Customize the borders of the selected cells.";
     superToolTip57.Items.Add(toolTipTitleItem57);
     superToolTip57.Items.Add(toolTipItem57);
     this.changeTableBordersItem1.SuperTip = superToolTip57;
     //
     // toggleTableCellsBottomBorderItem1
     //
     this.toggleTableCellsBottomBorderItem1.Caption = "Bottom Border";
     this.toggleTableCellsBottomBorderItem1.Enabled = false;
     this.toggleTableCellsBottomBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomBorderItem1.Glyph")));
     this.toggleTableCellsBottomBorderItem1.Id = 50;
     this.toggleTableCellsBottomBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomBorderItem1.LargeGlyph")));
     this.toggleTableCellsBottomBorderItem1.Name = "toggleTableCellsBottomBorderItem1";
     toolTipTitleItem46.Text = "Bottom Border";
     toolTipItem46.Text = "Customize the borders of the selected cells.";
     superToolTip46.Items.Add(toolTipTitleItem46);
     superToolTip46.Items.Add(toolTipItem46);
     this.toggleTableCellsBottomBorderItem1.SuperTip = superToolTip46;
     //
     // toggleTableCellsTopBorderItem1
     //
     this.toggleTableCellsTopBorderItem1.Caption = "Top Border";
     this.toggleTableCellsTopBorderItem1.Enabled = false;
     this.toggleTableCellsTopBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopBorderItem1.Glyph")));
     this.toggleTableCellsTopBorderItem1.Id = 51;
     this.toggleTableCellsTopBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopBorderItem1.LargeGlyph")));
     this.toggleTableCellsTopBorderItem1.Name = "toggleTableCellsTopBorderItem1";
     toolTipTitleItem47.Text = "Top Border";
     toolTipItem47.Text = "Customize the borders of the selected cells.";
     superToolTip47.Items.Add(toolTipTitleItem47);
     superToolTip47.Items.Add(toolTipItem47);
     this.toggleTableCellsTopBorderItem1.SuperTip = superToolTip47;
     //
     // toggleTableCellsLeftBorderItem1
     //
     this.toggleTableCellsLeftBorderItem1.Caption = "Left Border";
     this.toggleTableCellsLeftBorderItem1.Enabled = false;
     this.toggleTableCellsLeftBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsLeftBorderItem1.Glyph")));
     this.toggleTableCellsLeftBorderItem1.Id = 52;
     this.toggleTableCellsLeftBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsLeftBorderItem1.LargeGlyph")));
     this.toggleTableCellsLeftBorderItem1.Name = "toggleTableCellsLeftBorderItem1";
     toolTipTitleItem48.Text = "Left Border";
     toolTipItem48.Text = "Customize the borders of the selected cells.";
     superToolTip48.Items.Add(toolTipTitleItem48);
     superToolTip48.Items.Add(toolTipItem48);
     this.toggleTableCellsLeftBorderItem1.SuperTip = superToolTip48;
     //
     // toggleTableCellsRightBorderItem1
     //
     this.toggleTableCellsRightBorderItem1.Caption = "Right Border";
     this.toggleTableCellsRightBorderItem1.Enabled = false;
     this.toggleTableCellsRightBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsRightBorderItem1.Glyph")));
     this.toggleTableCellsRightBorderItem1.Id = 53;
     this.toggleTableCellsRightBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsRightBorderItem1.LargeGlyph")));
     this.toggleTableCellsRightBorderItem1.Name = "toggleTableCellsRightBorderItem1";
     toolTipTitleItem49.Text = "Right Border";
     toolTipItem49.Text = "Customize the borders of the selected cells.";
     superToolTip49.Items.Add(toolTipTitleItem49);
     superToolTip49.Items.Add(toolTipItem49);
     this.toggleTableCellsRightBorderItem1.SuperTip = superToolTip49;
     //
     // resetTableCellsAllBordersItem1
     //
     this.resetTableCellsAllBordersItem1.Caption = "No Border";
     this.resetTableCellsAllBordersItem1.Enabled = false;
     this.resetTableCellsAllBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("resetTableCellsAllBordersItem1.Glyph")));
     this.resetTableCellsAllBordersItem1.Id = 54;
     this.resetTableCellsAllBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("resetTableCellsAllBordersItem1.LargeGlyph")));
     this.resetTableCellsAllBordersItem1.Name = "resetTableCellsAllBordersItem1";
     toolTipTitleItem50.Text = "No Border";
     toolTipItem50.Text = "Customize the borders of the selected cells.";
     superToolTip50.Items.Add(toolTipTitleItem50);
     superToolTip50.Items.Add(toolTipItem50);
     this.resetTableCellsAllBordersItem1.SuperTip = superToolTip50;
     //
     // toggleTableCellsAllBordersItem1
     //
     this.toggleTableCellsAllBordersItem1.Caption = "All Borders";
     this.toggleTableCellsAllBordersItem1.Enabled = false;
     this.toggleTableCellsAllBordersItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsAllBordersItem1.Glyph")));
     this.toggleTableCellsAllBordersItem1.Id = 55;
     this.toggleTableCellsAllBordersItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsAllBordersItem1.LargeGlyph")));
     this.toggleTableCellsAllBordersItem1.Name = "toggleTableCellsAllBordersItem1";
     toolTipTitleItem51.Text = "All Borders";
     toolTipItem51.Text = "Customize the borders of the selected cells.";
     superToolTip51.Items.Add(toolTipTitleItem51);
     superToolTip51.Items.Add(toolTipItem51);
     this.toggleTableCellsAllBordersItem1.SuperTip = superToolTip51;
     //
     // toggleTableCellsOutsideBorderItem1
     //
     this.toggleTableCellsOutsideBorderItem1.Caption = "Outside Border";
     this.toggleTableCellsOutsideBorderItem1.Enabled = false;
     this.toggleTableCellsOutsideBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsOutsideBorderItem1.Glyph")));
     this.toggleTableCellsOutsideBorderItem1.Id = 56;
     this.toggleTableCellsOutsideBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsOutsideBorderItem1.LargeGlyph")));
     this.toggleTableCellsOutsideBorderItem1.Name = "toggleTableCellsOutsideBorderItem1";
     toolTipTitleItem52.Text = "Outside Border";
     toolTipItem52.Text = "Customize the borders of the selected cells.";
     superToolTip52.Items.Add(toolTipTitleItem52);
     superToolTip52.Items.Add(toolTipItem52);
     this.toggleTableCellsOutsideBorderItem1.SuperTip = superToolTip52;
     //
     // toggleTableCellsInsideBorderItem1
     //
     this.toggleTableCellsInsideBorderItem1.Caption = "Inside Border";
     this.toggleTableCellsInsideBorderItem1.Enabled = false;
     this.toggleTableCellsInsideBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideBorderItem1.Glyph")));
     this.toggleTableCellsInsideBorderItem1.Id = 57;
     this.toggleTableCellsInsideBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideBorderItem1.Name = "toggleTableCellsInsideBorderItem1";
     toolTipTitleItem53.Text = "Inside Border";
     toolTipItem53.Text = "Customize the borders of the selected cells.";
     superToolTip53.Items.Add(toolTipTitleItem53);
     superToolTip53.Items.Add(toolTipItem53);
     this.toggleTableCellsInsideBorderItem1.SuperTip = superToolTip53;
     //
     // toggleTableCellsInsideHorizontalBorderItem1
     //
     this.toggleTableCellsInsideHorizontalBorderItem1.Caption = "Inside Horizontal Border";
     this.toggleTableCellsInsideHorizontalBorderItem1.Enabled = false;
     this.toggleTableCellsInsideHorizontalBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideHorizontalBorderItem1.Glyph")));
     this.toggleTableCellsInsideHorizontalBorderItem1.Id = 58;
     this.toggleTableCellsInsideHorizontalBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideHorizontalBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideHorizontalBorderItem1.Name = "toggleTableCellsInsideHorizontalBorderItem1";
     toolTipTitleItem54.Text = "Inside Horizontal Border";
     toolTipItem54.Text = "Customize the borders of the selected cells.";
     superToolTip54.Items.Add(toolTipTitleItem54);
     superToolTip54.Items.Add(toolTipItem54);
     this.toggleTableCellsInsideHorizontalBorderItem1.SuperTip = superToolTip54;
     //
     // toggleTableCellsInsideVerticalBorderItem1
     //
     this.toggleTableCellsInsideVerticalBorderItem1.Caption = "Inside Vertical Border";
     this.toggleTableCellsInsideVerticalBorderItem1.Enabled = false;
     this.toggleTableCellsInsideVerticalBorderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideVerticalBorderItem1.Glyph")));
     this.toggleTableCellsInsideVerticalBorderItem1.Id = 59;
     this.toggleTableCellsInsideVerticalBorderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsInsideVerticalBorderItem1.LargeGlyph")));
     this.toggleTableCellsInsideVerticalBorderItem1.Name = "toggleTableCellsInsideVerticalBorderItem1";
     toolTipTitleItem55.Text = "Inside Vertical Border";
     toolTipItem55.Text = "Customize the borders of the selected cells.";
     superToolTip55.Items.Add(toolTipTitleItem55);
     superToolTip55.Items.Add(toolTipItem55);
     this.toggleTableCellsInsideVerticalBorderItem1.SuperTip = superToolTip55;
     //
     // toggleShowTableGridLinesItem1
     //
     this.toggleShowTableGridLinesItem1.Caption = "View Gridlines";
     this.toggleShowTableGridLinesItem1.Enabled = false;
     this.toggleShowTableGridLinesItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowTableGridLinesItem1.Glyph")));
     this.toggleShowTableGridLinesItem1.Id = 60;
     this.toggleShowTableGridLinesItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowTableGridLinesItem1.LargeGlyph")));
     this.toggleShowTableGridLinesItem1.Name = "toggleShowTableGridLinesItem1";
     toolTipTitleItem56.Text = "View Gridlines";
     toolTipItem56.Text = "Show or hide the gridlines within the table.";
     superToolTip56.Items.Add(toolTipTitleItem56);
     superToolTip56.Items.Add(toolTipItem56);
     this.toggleShowTableGridLinesItem1.SuperTip = superToolTip56;
     //
     // changeTableBorderLineStyleItem1
     //
     this.changeTableBorderLineStyleItem1.Caption = "Line Style";
     this.changeTableBorderLineStyleItem1.Edit = this.repositoryItemBorderLineStyle1;
     this.changeTableBorderLineStyleItem1.Enabled = false;
     this.changeTableBorderLineStyleItem1.Id = 61;
     this.changeTableBorderLineStyleItem1.Name = "changeTableBorderLineStyleItem1";
     toolTipTitleItem58.Text = "Line Style";
     toolTipItem58.Text = "Change the style of the line used to draw borders.";
     superToolTip58.Items.Add(toolTipTitleItem58);
     superToolTip58.Items.Add(toolTipItem58);
     this.changeTableBorderLineStyleItem1.SuperTip = superToolTip58;
     //
     // repositoryItemBorderLineStyle1
     //
     this.repositoryItemBorderLineStyle1.AutoHeight = false;
     this.repositoryItemBorderLineStyle1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemBorderLineStyle1.Control = null;
     this.repositoryItemBorderLineStyle1.Name = "repositoryItemBorderLineStyle1";
     //
     // changeTableBorderLineWeightItem1
     //
     this.changeTableBorderLineWeightItem1.Caption = "Line Weight";
     this.changeTableBorderLineWeightItem1.Edit = this.repositoryItemBorderLineWeight1;
     this.changeTableBorderLineWeightItem1.Enabled = false;
     this.changeTableBorderLineWeightItem1.Id = 62;
     this.changeTableBorderLineWeightItem1.Name = "changeTableBorderLineWeightItem1";
     toolTipTitleItem59.Text = "Line Weight";
     toolTipItem59.Text = "Change the width of the line used to draw borders.";
     superToolTip59.Items.Add(toolTipTitleItem59);
     superToolTip59.Items.Add(toolTipItem59);
     this.changeTableBorderLineWeightItem1.SuperTip = superToolTip59;
     //
     // repositoryItemBorderLineWeight1
     //
     this.repositoryItemBorderLineWeight1.AutoHeight = false;
     this.repositoryItemBorderLineWeight1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemBorderLineWeight1.Control = null;
     this.repositoryItemBorderLineWeight1.Name = "repositoryItemBorderLineWeight1";
     //
     // changeTableBorderColorItem1
     //
     this.changeTableBorderColorItem1.Caption = "Pen Color";
     this.changeTableBorderColorItem1.Enabled = false;
     this.changeTableBorderColorItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeTableBorderColorItem1.Glyph")));
     this.changeTableBorderColorItem1.Id = 63;
     this.changeTableBorderColorItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeTableBorderColorItem1.LargeGlyph")));
     this.changeTableBorderColorItem1.Name = "changeTableBorderColorItem1";
     toolTipTitleItem60.Text = "Pen Color";
     toolTipItem60.Text = "Change the pen color.";
     superToolTip60.Items.Add(toolTipTitleItem60);
     superToolTip60.Items.Add(toolTipItem60);
     this.changeTableBorderColorItem1.SuperTip = superToolTip60;
     //
     // selectTableElementsItem1
     //
     this.selectTableElementsItem1.Caption = "Select";
     this.selectTableElementsItem1.Enabled = false;
     this.selectTableElementsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableElementsItem1.Glyph")));
     this.selectTableElementsItem1.Id = 64;
     this.selectTableElementsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableElementsItem1.LargeGlyph")));
     this.selectTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableCellItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableColumnItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableRowItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.selectTableItem1)});
     this.selectTableElementsItem1.Name = "selectTableElementsItem1";
     toolTipTitleItem65.Text = "Select";
     toolTipItem65.Text = "Select the current cell, row, column, or entire table";
     superToolTip65.Items.Add(toolTipTitleItem65);
     superToolTip65.Items.Add(toolTipItem65);
     this.selectTableElementsItem1.SuperTip = superToolTip65;
     //
     // selectTableCellItem1
     //
     this.selectTableCellItem1.Caption = "Select Cell";
     this.selectTableCellItem1.Enabled = false;
     this.selectTableCellItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableCellItem1.Glyph")));
     this.selectTableCellItem1.Id = 65;
     this.selectTableCellItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableCellItem1.LargeGlyph")));
     this.selectTableCellItem1.Name = "selectTableCellItem1";
     toolTipTitleItem61.Text = "Select Cell";
     toolTipItem61.Text = "Select Cell";
     superToolTip61.Items.Add(toolTipTitleItem61);
     superToolTip61.Items.Add(toolTipItem61);
     this.selectTableCellItem1.SuperTip = superToolTip61;
     //
     // selectTableColumnItem1
     //
     this.selectTableColumnItem1.Caption = "Select Column";
     this.selectTableColumnItem1.Enabled = false;
     this.selectTableColumnItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableColumnItem1.Glyph")));
     this.selectTableColumnItem1.Id = 66;
     this.selectTableColumnItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableColumnItem1.LargeGlyph")));
     this.selectTableColumnItem1.Name = "selectTableColumnItem1";
     toolTipTitleItem62.Text = "Select Column";
     toolTipItem62.Text = "Select Column";
     superToolTip62.Items.Add(toolTipTitleItem62);
     superToolTip62.Items.Add(toolTipItem62);
     this.selectTableColumnItem1.SuperTip = superToolTip62;
     //
     // selectTableRowItem1
     //
     this.selectTableRowItem1.Caption = "Select Row";
     this.selectTableRowItem1.Enabled = false;
     this.selectTableRowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableRowItem1.Glyph")));
     this.selectTableRowItem1.Id = 67;
     this.selectTableRowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableRowItem1.LargeGlyph")));
     this.selectTableRowItem1.Name = "selectTableRowItem1";
     toolTipTitleItem63.Text = "Select Row";
     toolTipItem63.Text = "Select Row";
     superToolTip63.Items.Add(toolTipTitleItem63);
     superToolTip63.Items.Add(toolTipItem63);
     this.selectTableRowItem1.SuperTip = superToolTip63;
     //
     // selectTableItem1
     //
     this.selectTableItem1.Caption = "Select Table";
     this.selectTableItem1.Enabled = false;
     this.selectTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("selectTableItem1.Glyph")));
     this.selectTableItem1.Id = 68;
     this.selectTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("selectTableItem1.LargeGlyph")));
     this.selectTableItem1.Name = "selectTableItem1";
     toolTipTitleItem64.Text = "Select Table";
     toolTipItem64.Text = "Select Table";
     superToolTip64.Items.Add(toolTipTitleItem64);
     superToolTip64.Items.Add(toolTipItem64);
     this.selectTableItem1.SuperTip = superToolTip64;
     //
     // showTablePropertiesFormItem1
     //
     this.showTablePropertiesFormItem1.Caption = "Properties";
     this.showTablePropertiesFormItem1.Enabled = false;
     this.showTablePropertiesFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showTablePropertiesFormItem1.Glyph")));
     this.showTablePropertiesFormItem1.Id = 69;
     this.showTablePropertiesFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showTablePropertiesFormItem1.LargeGlyph")));
     this.showTablePropertiesFormItem1.Name = "showTablePropertiesFormItem1";
     toolTipTitleItem66.Text = "Properties";
     toolTipItem66.Text = "Show the Table Properties dialog box to change advanced table properties, such as" +
         " indentation and text wrapping options.";
     superToolTip66.Items.Add(toolTipTitleItem66);
     superToolTip66.Items.Add(toolTipItem66);
     this.showTablePropertiesFormItem1.SuperTip = superToolTip66;
     //
     // deleteTableElementsItem1
     //
     this.deleteTableElementsItem1.Caption = "Delete";
     this.deleteTableElementsItem1.Enabled = false;
     this.deleteTableElementsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableElementsItem1.Glyph")));
     this.deleteTableElementsItem1.Id = 70;
     this.deleteTableElementsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableElementsItem1.LargeGlyph")));
     this.deleteTableElementsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.showDeleteTableCellsFormItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableRowsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.deleteTableItem1)});
     this.deleteTableElementsItem1.Name = "deleteTableElementsItem1";
     toolTipTitleItem71.Text = "Delete";
     toolTipItem71.Text = "Delete rows, columns, cells, or the entire Table";
     superToolTip71.Items.Add(toolTipTitleItem71);
     superToolTip71.Items.Add(toolTipItem71);
     this.deleteTableElementsItem1.SuperTip = superToolTip71;
     //
     // showDeleteTableCellsFormItem1
     //
     this.showDeleteTableCellsFormItem1.Caption = "Delete Cells";
     this.showDeleteTableCellsFormItem1.Enabled = false;
     this.showDeleteTableCellsFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showDeleteTableCellsFormItem1.Glyph")));
     this.showDeleteTableCellsFormItem1.Id = 71;
     this.showDeleteTableCellsFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showDeleteTableCellsFormItem1.LargeGlyph")));
     this.showDeleteTableCellsFormItem1.Name = "showDeleteTableCellsFormItem1";
     toolTipTitleItem67.Text = "Delete Cells";
     toolTipItem67.Text = "Delete rows, columns, or cells";
     superToolTip67.Items.Add(toolTipTitleItem67);
     superToolTip67.Items.Add(toolTipItem67);
     this.showDeleteTableCellsFormItem1.SuperTip = superToolTip67;
     //
     // deleteTableColumnsItem1
     //
     this.deleteTableColumnsItem1.Caption = "Delete Columns";
     this.deleteTableColumnsItem1.Enabled = false;
     this.deleteTableColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableColumnsItem1.Glyph")));
     this.deleteTableColumnsItem1.Id = 72;
     this.deleteTableColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableColumnsItem1.LargeGlyph")));
     this.deleteTableColumnsItem1.Name = "deleteTableColumnsItem1";
     toolTipTitleItem68.Text = "Delete Columns";
     toolTipItem68.Text = "Delete Columns";
     superToolTip68.Items.Add(toolTipTitleItem68);
     superToolTip68.Items.Add(toolTipItem68);
     this.deleteTableColumnsItem1.SuperTip = superToolTip68;
     //
     // deleteTableRowsItem1
     //
     this.deleteTableRowsItem1.Caption = "Delete Rows";
     this.deleteTableRowsItem1.Enabled = false;
     this.deleteTableRowsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableRowsItem1.Glyph")));
     this.deleteTableRowsItem1.Id = 73;
     this.deleteTableRowsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableRowsItem1.LargeGlyph")));
     this.deleteTableRowsItem1.Name = "deleteTableRowsItem1";
     toolTipTitleItem69.Text = "Delete Rows";
     toolTipItem69.Text = "Delete Rows";
     superToolTip69.Items.Add(toolTipTitleItem69);
     superToolTip69.Items.Add(toolTipItem69);
     this.deleteTableRowsItem1.SuperTip = superToolTip69;
     //
     // deleteTableItem1
     //
     this.deleteTableItem1.Caption = "Delete Table";
     this.deleteTableItem1.Enabled = false;
     this.deleteTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("deleteTableItem1.Glyph")));
     this.deleteTableItem1.Id = 74;
     this.deleteTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("deleteTableItem1.LargeGlyph")));
     this.deleteTableItem1.Name = "deleteTableItem1";
     toolTipTitleItem70.Text = "Delete Table";
     toolTipItem70.Text = "Delete Entire Table";
     superToolTip70.Items.Add(toolTipTitleItem70);
     superToolTip70.Items.Add(toolTipItem70);
     this.deleteTableItem1.SuperTip = superToolTip70;
     //
     // insertTableRowAboveItem1
     //
     this.insertTableRowAboveItem1.Caption = "Insert Rows Above";
     this.insertTableRowAboveItem1.Enabled = false;
     this.insertTableRowAboveItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.Glyph")));
     this.insertTableRowAboveItem1.Id = 75;
     this.insertTableRowAboveItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowAboveItem1.LargeGlyph")));
     this.insertTableRowAboveItem1.Name = "insertTableRowAboveItem1";
     toolTipTitleItem72.Text = "Insert Rows Above";
     toolTipItem72.Text = "Add a new row directly above the selected row.";
     superToolTip72.Items.Add(toolTipTitleItem72);
     superToolTip72.Items.Add(toolTipItem72);
     this.insertTableRowAboveItem1.SuperTip = superToolTip72;
     //
     // insertTableRowBelowItem1
     //
     this.insertTableRowBelowItem1.Caption = "Insert Rows Below";
     this.insertTableRowBelowItem1.Enabled = false;
     this.insertTableRowBelowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.Glyph")));
     this.insertTableRowBelowItem1.Id = 76;
     this.insertTableRowBelowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableRowBelowItem1.LargeGlyph")));
     this.insertTableRowBelowItem1.Name = "insertTableRowBelowItem1";
     toolTipTitleItem73.Text = "Insert Rows Below";
     toolTipItem73.Text = "Add a new row directly below the selected row.";
     superToolTip73.Items.Add(toolTipTitleItem73);
     superToolTip73.Items.Add(toolTipItem73);
     this.insertTableRowBelowItem1.SuperTip = superToolTip73;
     //
     // insertTableColumnToLeftItem1
     //
     this.insertTableColumnToLeftItem1.Caption = "Insert Columns to the Left";
     this.insertTableColumnToLeftItem1.Enabled = false;
     this.insertTableColumnToLeftItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToLeftItem1.Glyph")));
     this.insertTableColumnToLeftItem1.Id = 77;
     this.insertTableColumnToLeftItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToLeftItem1.LargeGlyph")));
     this.insertTableColumnToLeftItem1.Name = "insertTableColumnToLeftItem1";
     toolTipTitleItem74.Text = "Insert Columns to the Left";
     toolTipItem74.Text = "Add a new column directly to the left of the selected column";
     superToolTip74.Items.Add(toolTipTitleItem74);
     superToolTip74.Items.Add(toolTipItem74);
     this.insertTableColumnToLeftItem1.SuperTip = superToolTip74;
     //
     // insertTableColumnToRightItem1
     //
     this.insertTableColumnToRightItem1.Caption = "Insert Columns to the Right";
     this.insertTableColumnToRightItem1.Enabled = false;
     this.insertTableColumnToRightItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToRightItem1.Glyph")));
     this.insertTableColumnToRightItem1.Id = 78;
     this.insertTableColumnToRightItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableColumnToRightItem1.LargeGlyph")));
     this.insertTableColumnToRightItem1.Name = "insertTableColumnToRightItem1";
     toolTipTitleItem75.Text = "Insert Columns to the Right";
     toolTipItem75.Text = "Add a new column directly to the right of the selected column";
     superToolTip75.Items.Add(toolTipTitleItem75);
     superToolTip75.Items.Add(toolTipItem75);
     this.insertTableColumnToRightItem1.SuperTip = superToolTip75;
     //
     // showInsertTableCellsFormItem1
     //
     this.showInsertTableCellsFormItem1.Caption = "Insert Cells";
     this.showInsertTableCellsFormItem1.Enabled = false;
     this.showInsertTableCellsFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showInsertTableCellsFormItem1.Glyph")));
     this.showInsertTableCellsFormItem1.Id = 79;
     this.showInsertTableCellsFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showInsertTableCellsFormItem1.LargeGlyph")));
     this.showInsertTableCellsFormItem1.Name = "showInsertTableCellsFormItem1";
     toolTipTitleItem76.Text = "Insert Cells";
     toolTipItem76.Text = "Insert Cells";
     superToolTip76.Items.Add(toolTipTitleItem76);
     superToolTip76.Items.Add(toolTipItem76);
     this.showInsertTableCellsFormItem1.SuperTip = superToolTip76;
     //
     // mergeTableCellsItem1
     //
     this.mergeTableCellsItem1.Caption = "Merge Cells";
     this.mergeTableCellsItem1.Enabled = false;
     this.mergeTableCellsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("mergeTableCellsItem1.Glyph")));
     this.mergeTableCellsItem1.Id = 80;
     this.mergeTableCellsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("mergeTableCellsItem1.LargeGlyph")));
     this.mergeTableCellsItem1.Name = "mergeTableCellsItem1";
     toolTipTitleItem77.Text = "Merge Cells";
     toolTipItem77.Text = "Merge the selected cells into one cell.";
     superToolTip77.Items.Add(toolTipTitleItem77);
     superToolTip77.Items.Add(toolTipItem77);
     this.mergeTableCellsItem1.SuperTip = superToolTip77;
     //
     // showSplitTableCellsForm1
     //
     this.showSplitTableCellsForm1.Caption = "Split Cells";
     this.showSplitTableCellsForm1.Enabled = false;
     this.showSplitTableCellsForm1.Glyph = ((System.Drawing.Image)(resources.GetObject("showSplitTableCellsForm1.Glyph")));
     this.showSplitTableCellsForm1.Id = 81;
     this.showSplitTableCellsForm1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showSplitTableCellsForm1.LargeGlyph")));
     this.showSplitTableCellsForm1.Name = "showSplitTableCellsForm1";
     toolTipTitleItem78.Text = "Split Cells";
     toolTipItem78.Text = "Split the selected cells into multiple new cells";
     superToolTip78.Items.Add(toolTipTitleItem78);
     superToolTip78.Items.Add(toolTipItem78);
     this.showSplitTableCellsForm1.SuperTip = superToolTip78;
     //
     // splitTableItem1
     //
     this.splitTableItem1.Caption = "Split Table";
     this.splitTableItem1.Enabled = false;
     this.splitTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("splitTableItem1.Glyph")));
     this.splitTableItem1.Id = 82;
     this.splitTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("splitTableItem1.LargeGlyph")));
     this.splitTableItem1.Name = "splitTableItem1";
     toolTipTitleItem79.Text = "Split Table";
     toolTipItem79.Text = "Split the table into two tables.\r\nThe selected row will become the first row of t" +
         "he new table.";
     superToolTip79.Items.Add(toolTipTitleItem79);
     superToolTip79.Items.Add(toolTipItem79);
     this.splitTableItem1.SuperTip = superToolTip79;
     //
     // toggleTableAutoFitItem1
     //
     this.toggleTableAutoFitItem1.Caption = "AutoFit";
     this.toggleTableAutoFitItem1.Enabled = false;
     this.toggleTableAutoFitItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitItem1.Glyph")));
     this.toggleTableAutoFitItem1.Id = 83;
     this.toggleTableAutoFitItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitItem1.LargeGlyph")));
     this.toggleTableAutoFitItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitContentsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableAutoFitWindowItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleTableFixedColumnWidthItem1)});
     this.toggleTableAutoFitItem1.Name = "toggleTableAutoFitItem1";
     toolTipTitleItem83.Text = "AutoFit";
     toolTipItem83.Text = "Automatically resize the column widths based on the text in them.\r\n\r\nYou can set " +
         "the table width based on the window size or convert it back to use fixed column " +
         "widths.";
     superToolTip83.Items.Add(toolTipTitleItem83);
     superToolTip83.Items.Add(toolTipItem83);
     this.toggleTableAutoFitItem1.SuperTip = superToolTip83;
     //
     // toggleTableAutoFitContentsItem1
     //
     this.toggleTableAutoFitContentsItem1.Caption = "AutoFit Contents";
     this.toggleTableAutoFitContentsItem1.Enabled = false;
     this.toggleTableAutoFitContentsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitContentsItem1.Glyph")));
     this.toggleTableAutoFitContentsItem1.Id = 84;
     this.toggleTableAutoFitContentsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitContentsItem1.LargeGlyph")));
     this.toggleTableAutoFitContentsItem1.Name = "toggleTableAutoFitContentsItem1";
     toolTipTitleItem80.Text = "AutoFit Contents";
     toolTipItem80.Text = "Auto-Fit Table to the contents.";
     superToolTip80.Items.Add(toolTipTitleItem80);
     superToolTip80.Items.Add(toolTipItem80);
     this.toggleTableAutoFitContentsItem1.SuperTip = superToolTip80;
     //
     // toggleTableAutoFitWindowItem1
     //
     this.toggleTableAutoFitWindowItem1.Caption = "AutoFit Window";
     this.toggleTableAutoFitWindowItem1.Enabled = false;
     this.toggleTableAutoFitWindowItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitWindowItem1.Glyph")));
     this.toggleTableAutoFitWindowItem1.Id = 85;
     this.toggleTableAutoFitWindowItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableAutoFitWindowItem1.LargeGlyph")));
     this.toggleTableAutoFitWindowItem1.Name = "toggleTableAutoFitWindowItem1";
     toolTipTitleItem81.Text = "AutoFit Window";
     toolTipItem81.Text = "Auto-Fit Table to the window.";
     superToolTip81.Items.Add(toolTipTitleItem81);
     superToolTip81.Items.Add(toolTipItem81);
     this.toggleTableAutoFitWindowItem1.SuperTip = superToolTip81;
     //
     // toggleTableFixedColumnWidthItem1
     //
     this.toggleTableFixedColumnWidthItem1.Caption = "Fixed Column Width";
     this.toggleTableFixedColumnWidthItem1.Enabled = false;
     this.toggleTableFixedColumnWidthItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableFixedColumnWidthItem1.Glyph")));
     this.toggleTableFixedColumnWidthItem1.Id = 86;
     this.toggleTableFixedColumnWidthItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableFixedColumnWidthItem1.LargeGlyph")));
     this.toggleTableFixedColumnWidthItem1.Name = "toggleTableFixedColumnWidthItem1";
     toolTipTitleItem82.Text = "Fixed Column Width";
     toolTipItem82.Text = "Set table size to a fixed width.";
     superToolTip82.Items.Add(toolTipTitleItem82);
     superToolTip82.Items.Add(toolTipItem82);
     this.toggleTableFixedColumnWidthItem1.SuperTip = superToolTip82;
     //
     // toggleTableCellsTopLeftAlignmentItem1
     //
     this.toggleTableCellsTopLeftAlignmentItem1.Caption = "Align Top Left";
     this.toggleTableCellsTopLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsTopLeftAlignmentItem1.Id = 87;
     this.toggleTableCellsTopLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopLeftAlignmentItem1.Name = "toggleTableCellsTopLeftAlignmentItem1";
     toolTipTitleItem84.Text = "Align Top Left";
     toolTipItem84.Text = "Align text to the top left corner of the cell.";
     superToolTip84.Items.Add(toolTipTitleItem84);
     superToolTip84.Items.Add(toolTipItem84);
     this.toggleTableCellsTopLeftAlignmentItem1.SuperTip = superToolTip84;
     //
     // toggleTableCellsTopCenterAlignmentItem1
     //
     this.toggleTableCellsTopCenterAlignmentItem1.Caption = "Align Top Center";
     this.toggleTableCellsTopCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsTopCenterAlignmentItem1.Id = 88;
     this.toggleTableCellsTopCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopCenterAlignmentItem1.Name = "toggleTableCellsTopCenterAlignmentItem1";
     toolTipTitleItem85.Text = "Align Top Center";
     toolTipItem85.Text = "Center text and align it to the top of the cell.";
     superToolTip85.Items.Add(toolTipTitleItem85);
     superToolTip85.Items.Add(toolTipItem85);
     this.toggleTableCellsTopCenterAlignmentItem1.SuperTip = superToolTip85;
     //
     // toggleTableCellsTopRightAlignmentItem1
     //
     this.toggleTableCellsTopRightAlignmentItem1.Caption = "Align Top Right";
     this.toggleTableCellsTopRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsTopRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopRightAlignmentItem1.Glyph")));
     this.toggleTableCellsTopRightAlignmentItem1.Id = 89;
     this.toggleTableCellsTopRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsTopRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsTopRightAlignmentItem1.Name = "toggleTableCellsTopRightAlignmentItem1";
     toolTipTitleItem86.Text = "Align Top Right";
     toolTipItem86.Text = "Align text to the top right corner of the cell.";
     superToolTip86.Items.Add(toolTipTitleItem86);
     superToolTip86.Items.Add(toolTipItem86);
     this.toggleTableCellsTopRightAlignmentItem1.SuperTip = superToolTip86;
     //
     // toggleTableCellsMiddleLeftAlignmentItem1
     //
     this.toggleTableCellsMiddleLeftAlignmentItem1.Caption = "Align Center Left";
     this.toggleTableCellsMiddleLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleLeftAlignmentItem1.Id = 90;
     this.toggleTableCellsMiddleLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleLeftAlignmentItem1.Name = "toggleTableCellsMiddleLeftAlignmentItem1";
     toolTipTitleItem87.Text = "Align Center Left";
     toolTipItem87.Text = "Center text vertically and align it to the left side of the cell.";
     superToolTip87.Items.Add(toolTipTitleItem87);
     superToolTip87.Items.Add(toolTipItem87);
     this.toggleTableCellsMiddleLeftAlignmentItem1.SuperTip = superToolTip87;
     //
     // toggleTableCellsMiddleCenterAlignmentItem1
     //
     this.toggleTableCellsMiddleCenterAlignmentItem1.Caption = "Align Center";
     this.toggleTableCellsMiddleCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleCenterAlignmentItem1.Id = 91;
     this.toggleTableCellsMiddleCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleCenterAlignmentItem1.Name = "toggleTableCellsMiddleCenterAlignmentItem1";
     toolTipTitleItem88.Text = "Align Center";
     toolTipItem88.Text = "Center text horizontally and vertically within the cell.";
     superToolTip88.Items.Add(toolTipTitleItem88);
     superToolTip88.Items.Add(toolTipItem88);
     this.toggleTableCellsMiddleCenterAlignmentItem1.SuperTip = superToolTip88;
     //
     // toggleTableCellsMiddleRightAlignmentItem1
     //
     this.toggleTableCellsMiddleRightAlignmentItem1.Caption = "Align Center Right";
     this.toggleTableCellsMiddleRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsMiddleRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleRightAlignmentItem1.Glyph")));
     this.toggleTableCellsMiddleRightAlignmentItem1.Id = 92;
     this.toggleTableCellsMiddleRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsMiddleRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsMiddleRightAlignmentItem1.Name = "toggleTableCellsMiddleRightAlignmentItem1";
     toolTipTitleItem89.Text = "Align Center Right";
     toolTipItem89.Text = "Center text vertically and align it to the right side of the cell.";
     superToolTip89.Items.Add(toolTipTitleItem89);
     superToolTip89.Items.Add(toolTipItem89);
     this.toggleTableCellsMiddleRightAlignmentItem1.SuperTip = superToolTip89;
     //
     // toggleTableCellsBottomLeftAlignmentItem1
     //
     this.toggleTableCellsBottomLeftAlignmentItem1.Caption = "Align Bottom Left";
     this.toggleTableCellsBottomLeftAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomLeftAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomLeftAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomLeftAlignmentItem1.Id = 93;
     this.toggleTableCellsBottomLeftAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomLeftAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomLeftAlignmentItem1.Name = "toggleTableCellsBottomLeftAlignmentItem1";
     toolTipTitleItem90.Text = "Align Bottom Left";
     toolTipItem90.Text = "Align text to the bottom left corner of the cell.";
     superToolTip90.Items.Add(toolTipTitleItem90);
     superToolTip90.Items.Add(toolTipItem90);
     this.toggleTableCellsBottomLeftAlignmentItem1.SuperTip = superToolTip90;
     //
     // toggleTableCellsBottomCenterAlignmentItem1
     //
     this.toggleTableCellsBottomCenterAlignmentItem1.Caption = "Align Bottom Center";
     this.toggleTableCellsBottomCenterAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomCenterAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomCenterAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomCenterAlignmentItem1.Id = 94;
     this.toggleTableCellsBottomCenterAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomCenterAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomCenterAlignmentItem1.Name = "toggleTableCellsBottomCenterAlignmentItem1";
     toolTipTitleItem91.Text = "Align Bottom Center";
     toolTipItem91.Text = "Center text and align it to the bottom of the cell.";
     superToolTip91.Items.Add(toolTipTitleItem91);
     superToolTip91.Items.Add(toolTipItem91);
     this.toggleTableCellsBottomCenterAlignmentItem1.SuperTip = superToolTip91;
     //
     // toggleTableCellsBottomRightAlignmentItem1
     //
     this.toggleTableCellsBottomRightAlignmentItem1.Caption = "Align Bottom Right";
     this.toggleTableCellsBottomRightAlignmentItem1.Enabled = false;
     this.toggleTableCellsBottomRightAlignmentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomRightAlignmentItem1.Glyph")));
     this.toggleTableCellsBottomRightAlignmentItem1.Id = 95;
     this.toggleTableCellsBottomRightAlignmentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleTableCellsBottomRightAlignmentItem1.LargeGlyph")));
     this.toggleTableCellsBottomRightAlignmentItem1.Name = "toggleTableCellsBottomRightAlignmentItem1";
     toolTipTitleItem92.Text = "Align Bottom Right";
     toolTipItem92.Text = "Align text to the bottom right corner of the cell.";
     superToolTip92.Items.Add(toolTipTitleItem92);
     superToolTip92.Items.Add(toolTipItem92);
     this.toggleTableCellsBottomRightAlignmentItem1.SuperTip = superToolTip92;
     //
     // switchToSimpleViewItem1
     //
     this.switchToSimpleViewItem1.Caption = "Simple View";
     this.switchToSimpleViewItem1.Enabled = false;
     this.switchToSimpleViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.Glyph")));
     this.switchToSimpleViewItem1.Id = 96;
     this.switchToSimpleViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToSimpleViewItem1.LargeGlyph")));
     this.switchToSimpleViewItem1.Name = "switchToSimpleViewItem1";
     toolTipTitleItem93.Text = "Simple View";
     toolTipItem93.Text = "View the document as a simple memo.\r\n\r\nThis view ignores the page layout to draw " +
         "attention to text editing.";
     superToolTip93.Items.Add(toolTipTitleItem93);
     superToolTip93.Items.Add(toolTipItem93);
     this.switchToSimpleViewItem1.SuperTip = superToolTip93;
     //
     // switchToDraftViewItem1
     //
     this.switchToDraftViewItem1.Caption = "Draft View";
     this.switchToDraftViewItem1.Enabled = false;
     this.switchToDraftViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.Glyph")));
     this.switchToDraftViewItem1.Id = 97;
     this.switchToDraftViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToDraftViewItem1.LargeGlyph")));
     this.switchToDraftViewItem1.Name = "switchToDraftViewItem1";
     toolTipTitleItem94.Text = "Draft View";
     toolTipItem94.Text = "View the document as a draft to quickly edit the text.\r\n\r\nCertain elements of the" +
         " document such as headers and footers will not be visible in this view.";
     superToolTip94.Items.Add(toolTipTitleItem94);
     superToolTip94.Items.Add(toolTipItem94);
     this.switchToDraftViewItem1.SuperTip = superToolTip94;
     //
     // switchToPrintLayoutViewItem1
     //
     this.switchToPrintLayoutViewItem1.Caption = "Print Layout";
     this.switchToPrintLayoutViewItem1.Enabled = false;
     this.switchToPrintLayoutViewItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.Glyph")));
     this.switchToPrintLayoutViewItem1.Id = 98;
     this.switchToPrintLayoutViewItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("switchToPrintLayoutViewItem1.LargeGlyph")));
     this.switchToPrintLayoutViewItem1.Name = "switchToPrintLayoutViewItem1";
     toolTipTitleItem95.Text = "Print Layout";
     toolTipItem95.Text = "View the document as it will appear on the printed page.";
     superToolTip95.Items.Add(toolTipTitleItem95);
     superToolTip95.Items.Add(toolTipItem95);
     this.switchToPrintLayoutViewItem1.SuperTip = superToolTip95;
     //
     // toggleShowHorizontalRulerItem1
     //
     this.toggleShowHorizontalRulerItem1.Caption = "Horizontal Ruler";
     this.toggleShowHorizontalRulerItem1.Enabled = false;
     this.toggleShowHorizontalRulerItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowHorizontalRulerItem1.Glyph")));
     this.toggleShowHorizontalRulerItem1.Id = 99;
     this.toggleShowHorizontalRulerItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowHorizontalRulerItem1.LargeGlyph")));
     this.toggleShowHorizontalRulerItem1.Name = "toggleShowHorizontalRulerItem1";
     toolTipTitleItem96.Text = "Horizontal Ruler";
     toolTipItem96.Text = "View the horizontal ruler, used to measure and line up objects in the document";
     superToolTip96.Items.Add(toolTipTitleItem96);
     superToolTip96.Items.Add(toolTipItem96);
     this.toggleShowHorizontalRulerItem1.SuperTip = superToolTip96;
     //
     // toggleShowVerticalRulerItem1
     //
     this.toggleShowVerticalRulerItem1.Caption = "Vertical Ruler";
     this.toggleShowVerticalRulerItem1.Enabled = false;
     this.toggleShowVerticalRulerItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleShowVerticalRulerItem1.Glyph")));
     this.toggleShowVerticalRulerItem1.Id = 100;
     this.toggleShowVerticalRulerItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleShowVerticalRulerItem1.LargeGlyph")));
     this.toggleShowVerticalRulerItem1.Name = "toggleShowVerticalRulerItem1";
     toolTipTitleItem97.Text = "Vertical Ruler";
     toolTipItem97.Text = "View the vertical ruler, used to measure and line up objects in the document";
     superToolTip97.Items.Add(toolTipTitleItem97);
     superToolTip97.Items.Add(toolTipItem97);
     this.toggleShowVerticalRulerItem1.SuperTip = superToolTip97;
     //
     // zoomOutItem1
     //
     this.zoomOutItem1.Caption = "Zoom Out";
     this.zoomOutItem1.Enabled = false;
     this.zoomOutItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.Glyph")));
     this.zoomOutItem1.Id = 101;
     this.zoomOutItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomOutItem1.LargeGlyph")));
     this.zoomOutItem1.Name = "zoomOutItem1";
     toolTipTitleItem98.Text = "Zoom Out (Ctrl+Subtract)";
     toolTipItem98.Text = "Zoom Out";
     superToolTip98.Items.Add(toolTipTitleItem98);
     superToolTip98.Items.Add(toolTipItem98);
     this.zoomOutItem1.SuperTip = superToolTip98;
     //
     // zoomInItem1
     //
     this.zoomInItem1.Caption = "Zoom In";
     this.zoomInItem1.Enabled = false;
     this.zoomInItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.Glyph")));
     this.zoomInItem1.Id = 102;
     this.zoomInItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("zoomInItem1.LargeGlyph")));
     this.zoomInItem1.Name = "zoomInItem1";
     toolTipTitleItem99.Text = "Zoom In (Ctrl+Add)";
     toolTipItem99.Text = "Zoom In";
     superToolTip99.Items.Add(toolTipTitleItem99);
     superToolTip99.Items.Add(toolTipItem99);
     this.zoomInItem1.SuperTip = superToolTip99;
     //
     // toggleBulletedListItem1
     //
     this.toggleBulletedListItem1.Caption = "Bullets";
     this.toggleBulletedListItem1.Enabled = false;
     this.toggleBulletedListItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.Glyph")));
     this.toggleBulletedListItem1.Id = 112;
     this.toggleBulletedListItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("toggleBulletedListItem1.LargeGlyph")));
     this.toggleBulletedListItem1.Name = "toggleBulletedListItem1";
     toolTipTitleItem100.Text = "Bullets";
     toolTipItem100.Text = "Start a bulleted list.";
     superToolTip100.Items.Add(toolTipTitleItem100);
     superToolTip100.Items.Add(toolTipItem100);
     this.toggleBulletedListItem1.SuperTip = superToolTip100;
     //
     // insertPageBreakItem1
     //
     this.insertPageBreakItem1.Caption = "Page";
     this.insertPageBreakItem1.Enabled = false;
     this.insertPageBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.Glyph")));
     this.insertPageBreakItem1.Id = 113;
     this.insertPageBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem1.LargeGlyph")));
     this.insertPageBreakItem1.Name = "insertPageBreakItem1";
     toolTipTitleItem101.Text = "Page (Ctrl+Return)";
     toolTipItem101.Text = "Start the next page at the current position.";
     superToolTip101.Items.Add(toolTipTitleItem101);
     superToolTip101.Items.Add(toolTipItem101);
     this.insertPageBreakItem1.SuperTip = superToolTip101;
     //
     // insertTableItem1
     //
     this.insertTableItem1.Caption = "Table";
     this.insertTableItem1.Enabled = false;
     this.insertTableItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.Glyph")));
     this.insertTableItem1.Id = 114;
     this.insertTableItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertTableItem1.LargeGlyph")));
     this.insertTableItem1.Name = "insertTableItem1";
     toolTipTitleItem102.Text = "Table";
     toolTipItem102.Text = "Insert a table into the document.";
     superToolTip102.Items.Add(toolTipTitleItem102);
     superToolTip102.Items.Add(toolTipItem102);
     this.insertTableItem1.SuperTip = superToolTip102;
     //
     // insertPictureItem1
     //
     this.insertPictureItem1.Caption = "Picture";
     this.insertPictureItem1.Enabled = false;
     this.insertPictureItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.Glyph")));
     this.insertPictureItem1.Id = 115;
     this.insertPictureItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPictureItem1.LargeGlyph")));
     this.insertPictureItem1.Name = "insertPictureItem1";
     toolTipTitleItem103.Text = "Picture";
     toolTipItem103.Text = "Insert a picture from a file.";
     superToolTip103.Items.Add(toolTipTitleItem103);
     superToolTip103.Items.Add(toolTipItem103);
     this.insertPictureItem1.SuperTip = superToolTip103;
     //
     // insertBookmarkItem1
     //
     this.insertBookmarkItem1.Caption = "Bookmark";
     this.insertBookmarkItem1.Enabled = false;
     this.insertBookmarkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.Glyph")));
     this.insertBookmarkItem1.Id = 116;
     this.insertBookmarkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertBookmarkItem1.LargeGlyph")));
     this.insertBookmarkItem1.Name = "insertBookmarkItem1";
     toolTipTitleItem104.Text = "Bookmark";
     toolTipItem104.Text = "Create a bookmark to assign a name to a specific point in a document\r\n\r\nYou can m" +
         "ake hyperlinks that jump directly to a bookmarked location.";
     superToolTip104.Items.Add(toolTipTitleItem104);
     superToolTip104.Items.Add(toolTipItem104);
     this.insertBookmarkItem1.SuperTip = superToolTip104;
     //
     // insertHyperlinkItem1
     //
     this.insertHyperlinkItem1.Caption = "Hyperlink";
     this.insertHyperlinkItem1.Enabled = false;
     this.insertHyperlinkItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.Glyph")));
     this.insertHyperlinkItem1.Id = 117;
     this.insertHyperlinkItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertHyperlinkItem1.LargeGlyph")));
     this.insertHyperlinkItem1.Name = "insertHyperlinkItem1";
     toolTipTitleItem105.Text = "Hyperlink (Ctrl+K)";
     toolTipItem105.Text = "Create a link to a Web page, a picture, an e-mail address, or a program.";
     superToolTip105.Items.Add(toolTipTitleItem105);
     superToolTip105.Items.Add(toolTipItem105);
     this.insertHyperlinkItem1.SuperTip = superToolTip105;
     //
     // editPageHeaderItem1
     //
     this.editPageHeaderItem1.Caption = "Header";
     this.editPageHeaderItem1.Enabled = false;
     this.editPageHeaderItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("editPageHeaderItem1.Glyph")));
     this.editPageHeaderItem1.Id = 118;
     this.editPageHeaderItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("editPageHeaderItem1.LargeGlyph")));
     this.editPageHeaderItem1.Name = "editPageHeaderItem1";
     toolTipTitleItem106.Text = "Header";
     toolTipItem106.Text = "Edit the header of the document.\r\n\r\nThe content in the header will appear at the " +
         "top of each printed page.";
     superToolTip106.Items.Add(toolTipTitleItem106);
     superToolTip106.Items.Add(toolTipItem106);
     this.editPageHeaderItem1.SuperTip = superToolTip106;
     //
     // editPageFooterItem1
     //
     this.editPageFooterItem1.Caption = "Footer";
     this.editPageFooterItem1.Enabled = false;
     this.editPageFooterItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("editPageFooterItem1.Glyph")));
     this.editPageFooterItem1.Id = 119;
     this.editPageFooterItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("editPageFooterItem1.LargeGlyph")));
     this.editPageFooterItem1.Name = "editPageFooterItem1";
     toolTipTitleItem107.Text = "Footer";
     toolTipItem107.Text = "Edit the footer of the document.\r\n\r\nThe content in the footer will appear at the " +
         "bottom of each printed page.";
     superToolTip107.Items.Add(toolTipTitleItem107);
     superToolTip107.Items.Add(toolTipItem107);
     this.editPageFooterItem1.SuperTip = superToolTip107;
     //
     // insertPageNumberItem1
     //
     this.insertPageNumberItem1.Caption = "Page Number";
     this.insertPageNumberItem1.Enabled = false;
     this.insertPageNumberItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageNumberItem1.Glyph")));
     this.insertPageNumberItem1.Id = 120;
     this.insertPageNumberItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageNumberItem1.LargeGlyph")));
     this.insertPageNumberItem1.Name = "insertPageNumberItem1";
     toolTipTitleItem108.Text = "Page Number";
     toolTipItem108.Text = "Insert page numbers into the document.";
     superToolTip108.Items.Add(toolTipTitleItem108);
     superToolTip108.Items.Add(toolTipItem108);
     this.insertPageNumberItem1.SuperTip = superToolTip108;
     //
     // insertPageCountItem1
     //
     this.insertPageCountItem1.Caption = "Page Count";
     this.insertPageCountItem1.Enabled = false;
     this.insertPageCountItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageCountItem1.Glyph")));
     this.insertPageCountItem1.Id = 121;
     this.insertPageCountItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageCountItem1.LargeGlyph")));
     this.insertPageCountItem1.Name = "insertPageCountItem1";
     toolTipTitleItem109.Text = "Page Count";
     toolTipItem109.Text = "Insert total page count into the document.";
     superToolTip109.Items.Add(toolTipTitleItem109);
     superToolTip109.Items.Add(toolTipItem109);
     this.insertPageCountItem1.SuperTip = superToolTip109;
     //
     // insertSymbolItem1
     //
     this.insertSymbolItem1.Caption = "Symbol";
     this.insertSymbolItem1.Enabled = false;
     this.insertSymbolItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.Glyph")));
     this.insertSymbolItem1.Id = 122;
     this.insertSymbolItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSymbolItem1.LargeGlyph")));
     this.insertSymbolItem1.Name = "insertSymbolItem1";
     toolTipTitleItem110.Text = "Symbol";
     toolTipItem110.Text = "Insert symbols that are not on your keyboard, such as copyright symbols, trademar" +
         "k symbols, paragraph marks and Unicode characters.";
     superToolTip110.Items.Add(toolTipTitleItem110);
     superToolTip110.Items.Add(toolTipItem110);
     this.insertSymbolItem1.SuperTip = superToolTip110;
     //
     // changeSectionPageMarginsItem1
     //
     this.changeSectionPageMarginsItem1.Caption = "Margins";
     this.changeSectionPageMarginsItem1.Enabled = false;
     this.changeSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.Glyph")));
     this.changeSectionPageMarginsItem1.Id = 129;
     this.changeSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageMarginsItem1.LargeGlyph")));
     this.changeSectionPageMarginsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setNormalSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setNarrowSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setModerateSectionPageMarginsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setWideSectionPageMarginsItem1)});
     this.changeSectionPageMarginsItem1.Name = "changeSectionPageMarginsItem1";
     toolTipTitleItem115.Text = "Margins";
     toolTipItem115.Text = "Select the margin sizes for the entire document or the current section.";
     superToolTip115.Items.Add(toolTipTitleItem115);
     superToolTip115.Items.Add(toolTipItem115);
     this.changeSectionPageMarginsItem1.SuperTip = superToolTip115;
     //
     // setNormalSectionPageMarginsItem1
     //
     this.setNormalSectionPageMarginsItem1.Caption = "Normal\r\nTop:\t     0.79\"\tBottom:\t     0.79\"\r\nLeft:\t     1.18\"\tRight:\t\t     0.59\"";
     this.setNormalSectionPageMarginsItem1.Enabled = false;
     this.setNormalSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setNormalSectionPageMarginsItem1.Glyph")));
     this.setNormalSectionPageMarginsItem1.Id = 130;
     this.setNormalSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setNormalSectionPageMarginsItem1.LargeGlyph")));
     this.setNormalSectionPageMarginsItem1.Name = "setNormalSectionPageMarginsItem1";
     toolTipTitleItem111.Text = "Normal\r\nTop:\t     0.79\"\tBottom:\t     0.79\"\r\nLeft:\t     1.18\"\tRight:\t\t     0.59\"";
     toolTipItem111.Text = " ";
     superToolTip111.Items.Add(toolTipTitleItem111);
     superToolTip111.Items.Add(toolTipItem111);
     this.setNormalSectionPageMarginsItem1.SuperTip = superToolTip111;
     //
     // setNarrowSectionPageMarginsItem1
     //
     this.setNarrowSectionPageMarginsItem1.Caption = "Narrow\r\nTop:\t      0.5\"\tBottom:\t      0.5\"\r\nLeft:\t      0.5\"\tRight:\t\t      0.5\"";
     this.setNarrowSectionPageMarginsItem1.Enabled = false;
     this.setNarrowSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setNarrowSectionPageMarginsItem1.Glyph")));
     this.setNarrowSectionPageMarginsItem1.Id = 131;
     this.setNarrowSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setNarrowSectionPageMarginsItem1.LargeGlyph")));
     this.setNarrowSectionPageMarginsItem1.Name = "setNarrowSectionPageMarginsItem1";
     toolTipTitleItem112.Text = "Narrow\r\nTop:\t      0.5\"\tBottom:\t      0.5\"\r\nLeft:\t      0.5\"\tRight:\t\t      0.5\"";
     toolTipItem112.Text = " ";
     superToolTip112.Items.Add(toolTipTitleItem112);
     superToolTip112.Items.Add(toolTipItem112);
     this.setNarrowSectionPageMarginsItem1.SuperTip = superToolTip112;
     //
     // setModerateSectionPageMarginsItem1
     //
     this.setModerateSectionPageMarginsItem1.Caption = "Moderate\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t     0.75\"\tRight:\t\t     0.75\"" +
         "";
     this.setModerateSectionPageMarginsItem1.Enabled = false;
     this.setModerateSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setModerateSectionPageMarginsItem1.Glyph")));
     this.setModerateSectionPageMarginsItem1.Id = 132;
     this.setModerateSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setModerateSectionPageMarginsItem1.LargeGlyph")));
     this.setModerateSectionPageMarginsItem1.Name = "setModerateSectionPageMarginsItem1";
     toolTipTitleItem113.Text = "Moderate\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t     0.75\"\tRight:\t\t     0.75\"" +
         "";
     toolTipItem113.Text = " ";
     superToolTip113.Items.Add(toolTipTitleItem113);
     superToolTip113.Items.Add(toolTipItem113);
     this.setModerateSectionPageMarginsItem1.SuperTip = superToolTip113;
     //
     // setWideSectionPageMarginsItem1
     //
     this.setWideSectionPageMarginsItem1.Caption = "Wide\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t        2\"\tRight:\t\t        2\"";
     this.setWideSectionPageMarginsItem1.Enabled = false;
     this.setWideSectionPageMarginsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setWideSectionPageMarginsItem1.Glyph")));
     this.setWideSectionPageMarginsItem1.Id = 133;
     this.setWideSectionPageMarginsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setWideSectionPageMarginsItem1.LargeGlyph")));
     this.setWideSectionPageMarginsItem1.Name = "setWideSectionPageMarginsItem1";
     toolTipTitleItem114.Text = "Wide\r\nTop:\t        1\"\tBottom:\t        1\"\r\nLeft:\t        2\"\tRight:\t\t        2\"";
     toolTipItem114.Text = " ";
     superToolTip114.Items.Add(toolTipTitleItem114);
     superToolTip114.Items.Add(toolTipItem114);
     this.setWideSectionPageMarginsItem1.SuperTip = superToolTip114;
     //
     // changeSectionPageOrientationItem1
     //
     this.changeSectionPageOrientationItem1.Caption = "Orientation";
     this.changeSectionPageOrientationItem1.Enabled = false;
     this.changeSectionPageOrientationItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.Glyph")));
     this.changeSectionPageOrientationItem1.Id = 134;
     this.changeSectionPageOrientationItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPageOrientationItem1.LargeGlyph")));
     this.changeSectionPageOrientationItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setPortraitPageOrientationItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setLandscapePageOrientationItem1)});
     this.changeSectionPageOrientationItem1.Name = "changeSectionPageOrientationItem1";
     toolTipTitleItem118.Text = "Orientation";
     toolTipItem118.Text = "Switch the pages between portrait and landscape layouts.";
     superToolTip118.Items.Add(toolTipTitleItem118);
     superToolTip118.Items.Add(toolTipItem118);
     this.changeSectionPageOrientationItem1.SuperTip = superToolTip118;
     //
     // setPortraitPageOrientationItem1
     //
     this.setPortraitPageOrientationItem1.Caption = "Portrait";
     this.setPortraitPageOrientationItem1.Enabled = false;
     this.setPortraitPageOrientationItem1.Id = 135;
     this.setPortraitPageOrientationItem1.Name = "setPortraitPageOrientationItem1";
     toolTipTitleItem116.Text = "Portrait";
     toolTipItem116.Text = " ";
     superToolTip116.Items.Add(toolTipTitleItem116);
     superToolTip116.Items.Add(toolTipItem116);
     this.setPortraitPageOrientationItem1.SuperTip = superToolTip116;
     //
     // setLandscapePageOrientationItem1
     //
     this.setLandscapePageOrientationItem1.Caption = "Landscape";
     this.setLandscapePageOrientationItem1.Enabled = false;
     this.setLandscapePageOrientationItem1.Id = 136;
     this.setLandscapePageOrientationItem1.Name = "setLandscapePageOrientationItem1";
     toolTipTitleItem117.Text = "Landscape";
     toolTipItem117.Text = " ";
     superToolTip117.Items.Add(toolTipTitleItem117);
     superToolTip117.Items.Add(toolTipItem117);
     this.setLandscapePageOrientationItem1.SuperTip = superToolTip117;
     //
     // changeSectionPaperKindItem1
     //
     this.changeSectionPaperKindItem1.Caption = "Size";
     this.changeSectionPaperKindItem1.Enabled = false;
     this.changeSectionPaperKindItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPaperKindItem1.Glyph")));
     this.changeSectionPaperKindItem1.Id = 137;
     this.changeSectionPaperKindItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionPaperKindItem1.LargeGlyph")));
     this.changeSectionPaperKindItem1.Name = "changeSectionPaperKindItem1";
     toolTipTitleItem119.Text = "Size";
     toolTipItem119.Text = "Choose a paper size for the current section.";
     superToolTip119.Items.Add(toolTipTitleItem119);
     superToolTip119.Items.Add(toolTipItem119);
     this.changeSectionPaperKindItem1.SuperTip = superToolTip119;
     //
     // changeSectionColumnsItem1
     //
     this.changeSectionColumnsItem1.Caption = "Columns";
     this.changeSectionColumnsItem1.Enabled = false;
     this.changeSectionColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionColumnsItem1.Glyph")));
     this.changeSectionColumnsItem1.Id = 138;
     this.changeSectionColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionColumnsItem1.LargeGlyph")));
     this.changeSectionColumnsItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionOneColumnItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionTwoColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionThreeColumnsItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showColumnsSetupFormItem1)});
     this.changeSectionColumnsItem1.Name = "changeSectionColumnsItem1";
     toolTipTitleItem124.Text = "Columns";
     toolTipItem124.Text = "Split text into two or more columns.";
     superToolTip124.Items.Add(toolTipTitleItem124);
     superToolTip124.Items.Add(toolTipItem124);
     this.changeSectionColumnsItem1.SuperTip = superToolTip124;
     //
     // setSectionOneColumnItem1
     //
     this.setSectionOneColumnItem1.Caption = "One";
     this.setSectionOneColumnItem1.Enabled = false;
     this.setSectionOneColumnItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionOneColumnItem1.Glyph")));
     this.setSectionOneColumnItem1.Id = 139;
     this.setSectionOneColumnItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionOneColumnItem1.LargeGlyph")));
     this.setSectionOneColumnItem1.Name = "setSectionOneColumnItem1";
     toolTipTitleItem120.Text = "One";
     toolTipItem120.Text = "One column.";
     superToolTip120.Items.Add(toolTipTitleItem120);
     superToolTip120.Items.Add(toolTipItem120);
     this.setSectionOneColumnItem1.SuperTip = superToolTip120;
     //
     // setSectionTwoColumnsItem1
     //
     this.setSectionTwoColumnsItem1.Caption = "Two";
     this.setSectionTwoColumnsItem1.Enabled = false;
     this.setSectionTwoColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionTwoColumnsItem1.Glyph")));
     this.setSectionTwoColumnsItem1.Id = 140;
     this.setSectionTwoColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionTwoColumnsItem1.LargeGlyph")));
     this.setSectionTwoColumnsItem1.Name = "setSectionTwoColumnsItem1";
     toolTipTitleItem121.Text = "Two";
     toolTipItem121.Text = "Two columns.";
     superToolTip121.Items.Add(toolTipTitleItem121);
     superToolTip121.Items.Add(toolTipItem121);
     this.setSectionTwoColumnsItem1.SuperTip = superToolTip121;
     //
     // setSectionThreeColumnsItem1
     //
     this.setSectionThreeColumnsItem1.Caption = "Three";
     this.setSectionThreeColumnsItem1.Enabled = false;
     this.setSectionThreeColumnsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("setSectionThreeColumnsItem1.Glyph")));
     this.setSectionThreeColumnsItem1.Id = 141;
     this.setSectionThreeColumnsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("setSectionThreeColumnsItem1.LargeGlyph")));
     this.setSectionThreeColumnsItem1.Name = "setSectionThreeColumnsItem1";
     toolTipTitleItem122.Text = "Three";
     toolTipItem122.Text = "Three columns.";
     superToolTip122.Items.Add(toolTipTitleItem122);
     superToolTip122.Items.Add(toolTipItem122);
     this.setSectionThreeColumnsItem1.SuperTip = superToolTip122;
     //
     // showColumnsSetupFormItem1
     //
     this.showColumnsSetupFormItem1.Caption = "More Columns";
     this.showColumnsSetupFormItem1.Enabled = false;
     this.showColumnsSetupFormItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("showColumnsSetupFormItem1.Glyph")));
     this.showColumnsSetupFormItem1.Id = 142;
     this.showColumnsSetupFormItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("showColumnsSetupFormItem1.LargeGlyph")));
     this.showColumnsSetupFormItem1.Name = "showColumnsSetupFormItem1";
     toolTipTitleItem123.Text = "More Columns";
     toolTipItem123.Text = "Show the Column dialog box to customize column widths.";
     superToolTip123.Items.Add(toolTipTitleItem123);
     superToolTip123.Items.Add(toolTipItem123);
     this.showColumnsSetupFormItem1.SuperTip = superToolTip123;
     //
     // insertBreakItem1
     //
     this.insertBreakItem1.Caption = "Breaks";
     this.insertBreakItem1.Enabled = false;
     this.insertBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertBreakItem1.Glyph")));
     this.insertBreakItem1.Id = 143;
     this.insertBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertBreakItem1.LargeGlyph")));
     this.insertBreakItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.insertPageBreakItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertColumnBreakItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakNextPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakEvenPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.insertSectionBreakOddPageItem1)});
     this.insertBreakItem1.Name = "insertBreakItem1";
     toolTipTitleItem130.Text = "Breaks";
     toolTipItem130.Text = "Add page, section, or column breaks to the document.";
     superToolTip130.Items.Add(toolTipTitleItem130);
     superToolTip130.Items.Add(toolTipItem130);
     this.insertBreakItem1.SuperTip = superToolTip130;
     //
     // insertPageBreakItem2
     //
     this.insertPageBreakItem2.Caption = "Page";
     this.insertPageBreakItem2.Enabled = false;
     this.insertPageBreakItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem2.Glyph")));
     this.insertPageBreakItem2.Id = 144;
     this.insertPageBreakItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertPageBreakItem2.LargeGlyph")));
     this.insertPageBreakItem2.Name = "insertPageBreakItem2";
     toolTipTitleItem125.Text = "Page (Ctrl+Return)";
     toolTipItem125.Text = "Start the next page at the current position.";
     superToolTip125.Items.Add(toolTipTitleItem125);
     superToolTip125.Items.Add(toolTipItem125);
     this.insertPageBreakItem2.SuperTip = superToolTip125;
     //
     // insertColumnBreakItem1
     //
     this.insertColumnBreakItem1.Caption = "Column";
     this.insertColumnBreakItem1.Enabled = false;
     this.insertColumnBreakItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertColumnBreakItem1.Glyph")));
     this.insertColumnBreakItem1.Id = 145;
     this.insertColumnBreakItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertColumnBreakItem1.LargeGlyph")));
     this.insertColumnBreakItem1.Name = "insertColumnBreakItem1";
     toolTipTitleItem126.Text = "Column (Ctrl+Shift+Return)";
     toolTipItem126.Text = "Indicate that the text following the column break will begin in the next column.";
     superToolTip126.Items.Add(toolTipTitleItem126);
     superToolTip126.Items.Add(toolTipItem126);
     this.insertColumnBreakItem1.SuperTip = superToolTip126;
     //
     // insertSectionBreakNextPageItem1
     //
     this.insertSectionBreakNextPageItem1.Caption = "Section (Next Page)";
     this.insertSectionBreakNextPageItem1.Enabled = false;
     this.insertSectionBreakNextPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakNextPageItem1.Glyph")));
     this.insertSectionBreakNextPageItem1.Id = 146;
     this.insertSectionBreakNextPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakNextPageItem1.LargeGlyph")));
     this.insertSectionBreakNextPageItem1.Name = "insertSectionBreakNextPageItem1";
     toolTipTitleItem127.Text = "Section (Next Page)";
     toolTipItem127.Text = "Insert a section break and start the new section on the next page.";
     superToolTip127.Items.Add(toolTipTitleItem127);
     superToolTip127.Items.Add(toolTipItem127);
     this.insertSectionBreakNextPageItem1.SuperTip = superToolTip127;
     //
     // insertSectionBreakEvenPageItem1
     //
     this.insertSectionBreakEvenPageItem1.Caption = "Section (Even Page)";
     this.insertSectionBreakEvenPageItem1.Enabled = false;
     this.insertSectionBreakEvenPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakEvenPageItem1.Glyph")));
     this.insertSectionBreakEvenPageItem1.Id = 147;
     this.insertSectionBreakEvenPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakEvenPageItem1.LargeGlyph")));
     this.insertSectionBreakEvenPageItem1.Name = "insertSectionBreakEvenPageItem1";
     toolTipTitleItem128.Text = "Section (Even Page)";
     toolTipItem128.Text = "Insert a section break and start the new section on the next even-numbered page.";
     superToolTip128.Items.Add(toolTipTitleItem128);
     superToolTip128.Items.Add(toolTipItem128);
     this.insertSectionBreakEvenPageItem1.SuperTip = superToolTip128;
     //
     // insertSectionBreakOddPageItem1
     //
     this.insertSectionBreakOddPageItem1.Caption = "Section (Odd Page)";
     this.insertSectionBreakOddPageItem1.Enabled = false;
     this.insertSectionBreakOddPageItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakOddPageItem1.Glyph")));
     this.insertSectionBreakOddPageItem1.Id = 148;
     this.insertSectionBreakOddPageItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("insertSectionBreakOddPageItem1.LargeGlyph")));
     this.insertSectionBreakOddPageItem1.Name = "insertSectionBreakOddPageItem1";
     toolTipTitleItem129.Text = "Section (Odd Page)";
     toolTipItem129.Text = "Insert a section break and start the new section on the next odd-numbered page.";
     superToolTip129.Items.Add(toolTipTitleItem129);
     superToolTip129.Items.Add(toolTipItem129);
     this.insertSectionBreakOddPageItem1.SuperTip = superToolTip129;
     //
     // changeSectionLineNumberingItem1
     //
     this.changeSectionLineNumberingItem1.Caption = "Line Numbers";
     this.changeSectionLineNumberingItem1.Enabled = false;
     this.changeSectionLineNumberingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeSectionLineNumberingItem1.Glyph")));
     this.changeSectionLineNumberingItem1.Id = 149;
     this.changeSectionLineNumberingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeSectionLineNumberingItem1.LargeGlyph")));
     this.changeSectionLineNumberingItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingNoneItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingContinuousItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewPageItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.setSectionLineNumberingRestartNewSectionItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.toggleParagraphSuppressLineNumbersItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.showLineNumberingFormItem1)});
     this.changeSectionLineNumberingItem1.Name = "changeSectionLineNumberingItem1";
     toolTipTitleItem137.Text = "Line Numbers";
     toolTipItem137.Text = "Add line numbers in the margin alongside of each line of the document.";
     superToolTip137.Items.Add(toolTipTitleItem137);
     superToolTip137.Items.Add(toolTipItem137);
     this.changeSectionLineNumberingItem1.SuperTip = superToolTip137;
     //
     // setSectionLineNumberingNoneItem1
     //
     this.setSectionLineNumberingNoneItem1.Caption = "None";
     this.setSectionLineNumberingNoneItem1.Enabled = false;
     this.setSectionLineNumberingNoneItem1.Id = 150;
     this.setSectionLineNumberingNoneItem1.Name = "setSectionLineNumberingNoneItem1";
     toolTipTitleItem131.Text = "None";
     toolTipItem131.Text = "No line numbers.";
     superToolTip131.Items.Add(toolTipTitleItem131);
     superToolTip131.Items.Add(toolTipItem131);
     this.setSectionLineNumberingNoneItem1.SuperTip = superToolTip131;
     //
     // setSectionLineNumberingContinuousItem1
     //
     this.setSectionLineNumberingContinuousItem1.Caption = "Continuous";
     this.setSectionLineNumberingContinuousItem1.Enabled = false;
     this.setSectionLineNumberingContinuousItem1.Id = 151;
     this.setSectionLineNumberingContinuousItem1.Name = "setSectionLineNumberingContinuousItem1";
     toolTipTitleItem132.Text = "Continuous";
     toolTipItem132.Text = "Continuous";
     superToolTip132.Items.Add(toolTipTitleItem132);
     superToolTip132.Items.Add(toolTipItem132);
     this.setSectionLineNumberingContinuousItem1.SuperTip = superToolTip132;
     //
     // setSectionLineNumberingRestartNewPageItem1
     //
     this.setSectionLineNumberingRestartNewPageItem1.Caption = "Restart Each Page";
     this.setSectionLineNumberingRestartNewPageItem1.Enabled = false;
     this.setSectionLineNumberingRestartNewPageItem1.Id = 152;
     this.setSectionLineNumberingRestartNewPageItem1.Name = "setSectionLineNumberingRestartNewPageItem1";
     toolTipTitleItem133.Text = "Restart Each Page";
     toolTipItem133.Text = "Restart Each Page";
     superToolTip133.Items.Add(toolTipTitleItem133);
     superToolTip133.Items.Add(toolTipItem133);
     this.setSectionLineNumberingRestartNewPageItem1.SuperTip = superToolTip133;
     //
     // setSectionLineNumberingRestartNewSectionItem1
     //
     this.setSectionLineNumberingRestartNewSectionItem1.Caption = "Restart Each Section";
     this.setSectionLineNumberingRestartNewSectionItem1.Enabled = false;
     this.setSectionLineNumberingRestartNewSectionItem1.Id = 153;
     this.setSectionLineNumberingRestartNewSectionItem1.Name = "setSectionLineNumberingRestartNewSectionItem1";
     toolTipTitleItem134.Text = "Restart Each Section";
     toolTipItem134.Text = "Restart Each Section";
     superToolTip134.Items.Add(toolTipTitleItem134);
     superToolTip134.Items.Add(toolTipItem134);
     this.setSectionLineNumberingRestartNewSectionItem1.SuperTip = superToolTip134;
     //
     // toggleParagraphSuppressLineNumbersItem1
     //
     this.toggleParagraphSuppressLineNumbersItem1.Caption = "Suppress Line Numbers for Current Paragraph";
     this.toggleParagraphSuppressLineNumbersItem1.Enabled = false;
     this.toggleParagraphSuppressLineNumbersItem1.Id = 154;
     this.toggleParagraphSuppressLineNumbersItem1.Name = "toggleParagraphSuppressLineNumbersItem1";
     toolTipTitleItem135.Text = "Suppress Line Numbers for Current Paragraph";
     toolTipItem135.Text = "Suppress Line Numbers for Current Paragraph";
     superToolTip135.Items.Add(toolTipTitleItem135);
     superToolTip135.Items.Add(toolTipItem135);
     this.toggleParagraphSuppressLineNumbersItem1.SuperTip = superToolTip135;
     //
     // showLineNumberingFormItem1
     //
     this.showLineNumberingFormItem1.Caption = "Line Numbering Options";
     this.showLineNumberingFormItem1.Enabled = false;
     this.showLineNumberingFormItem1.Id = 155;
     this.showLineNumberingFormItem1.Name = "showLineNumberingFormItem1";
     toolTipTitleItem136.Text = "Line Numbering Options";
     toolTipItem136.Text = "Line Numbering Options";
     superToolTip136.Items.Add(toolTipTitleItem136);
     superToolTip136.Items.Add(toolTipItem136);
     this.showLineNumberingFormItem1.SuperTip = superToolTip136;
     //
     // checkSpellingItem1
     //
     this.checkSpellingItem1.Caption = "Spelling";
     this.checkSpellingItem1.Enabled = false;
     this.checkSpellingItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("checkSpellingItem1.Glyph")));
     this.checkSpellingItem1.Id = 156;
     this.checkSpellingItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("checkSpellingItem1.LargeGlyph")));
     this.checkSpellingItem1.Name = "checkSpellingItem1";
     toolTipTitleItem138.Text = "Spelling";
     toolTipItem138.Text = "Check the spelling of text in the document.";
     superToolTip138.Items.Add(toolTipTitleItem138);
     superToolTip138.Items.Add(toolTipItem138);
     this.checkSpellingItem1.SuperTip = superToolTip138;
     //
     // protectDocumentItem1
     //
     this.protectDocumentItem1.Caption = "Protect Document";
     this.protectDocumentItem1.Enabled = false;
     this.protectDocumentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("protectDocumentItem1.Glyph")));
     this.protectDocumentItem1.Id = 157;
     this.protectDocumentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("protectDocumentItem1.LargeGlyph")));
     this.protectDocumentItem1.Name = "protectDocumentItem1";
     toolTipTitleItem139.Text = "Protect Document";
     toolTipItem139.Text = "Help restrict people from editing the document by specifying a password.";
     superToolTip139.Items.Add(toolTipTitleItem139);
     superToolTip139.Items.Add(toolTipItem139);
     this.protectDocumentItem1.SuperTip = superToolTip139;
     //
     // changeRangeEditingPermissionsItem1
     //
     this.changeRangeEditingPermissionsItem1.Caption = "Range Editing Permissions";
     this.changeRangeEditingPermissionsItem1.Enabled = false;
     this.changeRangeEditingPermissionsItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("changeRangeEditingPermissionsItem1.Glyph")));
     this.changeRangeEditingPermissionsItem1.Id = 158;
     this.changeRangeEditingPermissionsItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("changeRangeEditingPermissionsItem1.LargeGlyph")));
     this.changeRangeEditingPermissionsItem1.Name = "changeRangeEditingPermissionsItem1";
     toolTipTitleItem140.Text = "Range Editing Permissions";
     toolTipItem140.Text = "Range Editing Permissions";
     superToolTip140.Items.Add(toolTipTitleItem140);
     superToolTip140.Items.Add(toolTipItem140);
     this.changeRangeEditingPermissionsItem1.SuperTip = superToolTip140;
     //
     // unprotectDocumentItem1
     //
     this.unprotectDocumentItem1.Caption = "Unprotect Document";
     this.unprotectDocumentItem1.Enabled = false;
     this.unprotectDocumentItem1.Glyph = ((System.Drawing.Image)(resources.GetObject("unprotectDocumentItem1.Glyph")));
     this.unprotectDocumentItem1.Id = 159;
     this.unprotectDocumentItem1.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("unprotectDocumentItem1.LargeGlyph")));
     this.unprotectDocumentItem1.Name = "unprotectDocumentItem1";
     toolTipTitleItem141.Text = "Unprotect Document";
     toolTipItem141.Text = "Unprotect Document";
     superToolTip141.Items.Add(toolTipTitleItem141);
     superToolTip141.Items.Add(toolTipItem141);
     this.unprotectDocumentItem1.SuperTip = superToolTip141;
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "テンプレート";
     this.barStaticItem1.Id = 123;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // cboTemplate
     //
     this.cboTemplate.Caption = "cbo1";
     this.cboTemplate.Edit = this.repositoryItemComboBox1;
     this.cboTemplate.Id = 124;
     this.cboTemplate.Name = "cboTemplate";
     //
     // repositoryItemComboBox1
     //
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "表示";
     this.barStaticItem2.Id = 126;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barEditItem1
     //
     this.barEditItem1.Caption = "hs";
     this.barEditItem1.Edit = this.repositoryItemPictureEdit2;
     this.barEditItem1.Id = 161;
     this.barEditItem1.Name = "barEditItem1";
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "Img";
     this.barButtonItem1.Id = 189;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // repositoryItemRichEditStyleEdit1
     //
     this.repositoryItemRichEditStyleEdit1.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit1.Control = null;
     this.repositoryItemRichEditStyleEdit1.Name = "repositoryItemRichEditStyleEdit1";
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // repositoryItemRichEditStyleEdit2
     //
     this.repositoryItemRichEditStyleEdit2.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit2.Control = null;
     this.repositoryItemRichEditStyleEdit2.Name = "repositoryItemRichEditStyleEdit2";
     //
     // repositoryItemComboBox2
     //
     this.repositoryItemComboBox2.AutoHeight = false;
     this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
     //
     // repositoryItemComboBox4
     //
     this.repositoryItemComboBox4.AutoHeight = false;
     this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
     //
     // repositoryItemRichEditStyleEdit3
     //
     this.repositoryItemRichEditStyleEdit3.AutoHeight = false;
     this.repositoryItemRichEditStyleEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemRichEditStyleEdit3.Control = null;
     this.repositoryItemRichEditStyleEdit3.Name = "repositoryItemRichEditStyleEdit3";
     //
     // richEditBarController1
     //
     this.richEditBarController1.BarItems.Add(this.cutItem1);
     this.richEditBarController1.BarItems.Add(this.copyItem1);
     this.richEditBarController1.BarItems.Add(this.pasteItem1);
     this.richEditBarController1.BarItems.Add(this.pasteSpecialItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontNameItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontSizeItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontColorItem1);
     this.richEditBarController1.BarItems.Add(this.changeFontBackColorItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontBoldItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontItalicItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontUnderlineItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontDoubleUnderlineItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontStrikeoutItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontDoubleStrikeoutItem1);
     this.richEditBarController1.BarItems.Add(this.toggleFontSubscriptItem1);
     this.richEditBarController1.BarItems.Add(this.changeTextCaseItem1);
     this.richEditBarController1.BarItems.Add(this.makeTextUpperCaseItem1);
     this.richEditBarController1.BarItems.Add(this.makeTextLowerCaseItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTextCaseItem1);
     this.richEditBarController1.BarItems.Add(this.fontSizeIncreaseItem1);
     this.richEditBarController1.BarItems.Add(this.fontSizeDecreaseItem1);
     this.richEditBarController1.BarItems.Add(this.clearFormattingItem1);
     this.richEditBarController1.BarItems.Add(this.showFontFormItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentLeftItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentCenterItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentRightItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphAlignmentJustifyItem1);
     this.richEditBarController1.BarItems.Add(this.changeParagraphLineSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setSingleParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setSesquialteralParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.setDoubleParagraphSpacingItem1);
     this.richEditBarController1.BarItems.Add(this.showLineSpacingFormItem1);
     this.richEditBarController1.BarItems.Add(this.addSpacingBeforeParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.removeSpacingBeforeParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.addSpacingAfterParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.removeSpacingAfterParagraphItem1);
     this.richEditBarController1.BarItems.Add(this.toggleNumberingListItem1);
     this.richEditBarController1.BarItems.Add(this.toggleMultiLevelListItem1);
     this.richEditBarController1.BarItems.Add(this.decreaseIndentItem1);
     this.richEditBarController1.BarItems.Add(this.increaseIndentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowWhitespaceItem1);
     this.richEditBarController1.BarItems.Add(this.showParagraphFormItem1);
     this.richEditBarController1.BarItems.Add(this.findItem1);
     this.richEditBarController1.BarItems.Add(this.replaceItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableCellsShadingItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsLeftBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsRightBorderItem1);
     this.richEditBarController1.BarItems.Add(this.resetTableCellsAllBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsAllBordersItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsOutsideBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideHorizontalBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsInsideVerticalBorderItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowTableGridLinesItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderLineStyleItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderLineWeightItem1);
     this.richEditBarController1.BarItems.Add(this.changeTableBorderColorItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableElementsItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableCellItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableColumnItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableRowItem1);
     this.richEditBarController1.BarItems.Add(this.selectTableItem1);
     this.richEditBarController1.BarItems.Add(this.showTablePropertiesFormItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableElementsItem1);
     this.richEditBarController1.BarItems.Add(this.showDeleteTableCellsFormItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableRowsItem1);
     this.richEditBarController1.BarItems.Add(this.deleteTableItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableRowAboveItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableRowBelowItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableColumnToLeftItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableColumnToRightItem1);
     this.richEditBarController1.BarItems.Add(this.showInsertTableCellsFormItem1);
     this.richEditBarController1.BarItems.Add(this.mergeTableCellsItem1);
     this.richEditBarController1.BarItems.Add(this.showSplitTableCellsForm1);
     this.richEditBarController1.BarItems.Add(this.splitTableItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitContentsItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableAutoFitWindowItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableFixedColumnWidthItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsTopRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsMiddleRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomLeftAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomCenterAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.toggleTableCellsBottomRightAlignmentItem1);
     this.richEditBarController1.BarItems.Add(this.switchToSimpleViewItem1);
     this.richEditBarController1.BarItems.Add(this.switchToDraftViewItem1);
     this.richEditBarController1.BarItems.Add(this.switchToPrintLayoutViewItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowHorizontalRulerItem1);
     this.richEditBarController1.BarItems.Add(this.toggleShowVerticalRulerItem1);
     this.richEditBarController1.BarItems.Add(this.zoomOutItem1);
     this.richEditBarController1.BarItems.Add(this.zoomInItem1);
     this.richEditBarController1.BarItems.Add(this.toggleBulletedListItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertTableItem1);
     this.richEditBarController1.BarItems.Add(this.insertPictureItem1);
     this.richEditBarController1.BarItems.Add(this.insertBookmarkItem1);
     this.richEditBarController1.BarItems.Add(this.insertHyperlinkItem1);
     this.richEditBarController1.BarItems.Add(this.editPageHeaderItem1);
     this.richEditBarController1.BarItems.Add(this.editPageFooterItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageNumberItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageCountItem1);
     this.richEditBarController1.BarItems.Add(this.insertSymbolItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setNormalSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setNarrowSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setModerateSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.setWideSectionPageMarginsItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.setPortraitPageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.setLandscapePageOrientationItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionPaperKindItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionOneColumnItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionTwoColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionThreeColumnsItem1);
     this.richEditBarController1.BarItems.Add(this.showColumnsSetupFormItem1);
     this.richEditBarController1.BarItems.Add(this.insertBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertPageBreakItem2);
     this.richEditBarController1.BarItems.Add(this.insertColumnBreakItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakNextPageItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakEvenPageItem1);
     this.richEditBarController1.BarItems.Add(this.insertSectionBreakOddPageItem1);
     this.richEditBarController1.BarItems.Add(this.changeSectionLineNumberingItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingNoneItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingContinuousItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewPageItem1);
     this.richEditBarController1.BarItems.Add(this.setSectionLineNumberingRestartNewSectionItem1);
     this.richEditBarController1.BarItems.Add(this.toggleParagraphSuppressLineNumbersItem1);
     this.richEditBarController1.BarItems.Add(this.showLineNumberingFormItem1);
     this.richEditBarController1.BarItems.Add(this.checkSpellingItem1);
     this.richEditBarController1.BarItems.Add(this.protectDocumentItem1);
     this.richEditBarController1.BarItems.Add(this.changeRangeEditingPermissionsItem1);
     this.richEditBarController1.BarItems.Add(this.unprotectDocumentItem1);
     //
     // stylesBar2
     //
     this.stylesBar2.BarName = "";
     this.stylesBar2.DockCol = 0;
     this.stylesBar2.DockRow = 5;
     this.stylesBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.stylesBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barStaticItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.stylesBar2.Text = "";
     //
     // grdContent
     //
     this.grdContent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdContent.EmbeddedNavigator.Appearance.Options.UseBorderColor = true;
     this.grdContent.Location = new System.Drawing.Point(0, 29);
     this.grdContent.MainView = this.gridView1;
     this.grdContent.Name = "grdContent";
     this.grdContent.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemRichTextEdit1,
     this.repositoryItemMemoEdit1,
     this.repositoryItemComboBox3,
     this.repositoryItemGridLookUpEdit1,
     this.repositoryItemRichTextEdit2,
     this.repositoryItemRichTextEdit3,
     this.repositoryItemTextEdit2,
     this.repositoryItemTextEdit3,
     this.repositoryItemPictureEdit3,
     this.repositoryItemLookUpEdit1,
     this.repositoryItemMemoEdit2});
     this.grdContent.ShowOnlyPredefinedDetails = true;
     this.grdContent.Size = new System.Drawing.Size(728, 462);
     this.grdContent.TabIndex = 5;
     this.grdContent.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     this.grdContent.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grdContent_KeyDown);
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTagCode,
     this.colTagName,
     this.colNotes,
     this.CreateDate,
     this.colType});
     this.gridView1.GridControl = this.grdContent;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.RowAutoHeight = true;
     this.gridView1.OptionsView.ShowColumnHeaders = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.OptionsView.ShowIndicator = false;
     this.gridView1.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.gridView1_SelectionChanged);
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     this.gridView1.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanging);
     this.gridView1.CustomRowCellEdit += new DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventHandler(this.gridView1_CustomRowCellEdit);
     this.gridView1.ColumnChanged += new System.EventHandler(this.gridView1_ColumnChanged);
     //
     // colTagCode
     //
     this.colTagCode.Caption = "Tag code";
     this.colTagCode.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.colTagCode.FieldName = "TagCode";
     this.colTagCode.Name = "colTagCode";
     this.colTagCode.OptionsColumn.AllowSize = false;
     this.colTagCode.OptionsColumn.FixedWidth = true;
     this.colTagCode.Visible = true;
     this.colTagCode.VisibleIndex = 0;
     this.colTagCode.Width = 74;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     //
     // colTagName
     //
     this.colTagName.Caption = "Tag Name";
     this.colTagName.FieldName = "TagName";
     this.colTagName.Name = "colTagName";
     this.colTagName.OptionsColumn.AllowEdit = false;
     this.colTagName.OptionsColumn.AllowSize = false;
     this.colTagName.OptionsColumn.FixedWidth = true;
     this.colTagName.OptionsColumn.ReadOnly = true;
     this.colTagName.Visible = true;
     this.colTagName.VisibleIndex = 1;
     this.colTagName.Width = 74;
     //
     // colNotes
     //
     this.colNotes.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.colNotes.AppearanceHeader.Options.UseFont = true;
     this.colNotes.Caption = "Content";
     this.colNotes.ColumnEdit = this.repositoryItemMemoEdit2;
     this.colNotes.FieldName = "Content";
     this.colNotes.Name = "colNotes";
     this.colNotes.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
     this.colNotes.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.colNotes.OptionsFilter.AllowFilter = false;
     this.colNotes.Visible = true;
     this.colNotes.VisibleIndex = 2;
     this.colNotes.Width = 290;
     //
     // repositoryItemMemoEdit2
     //
     this.repositoryItemMemoEdit2.Name = "repositoryItemMemoEdit2";
     //
     // repositoryItemPictureEdit3
     //
     this.repositoryItemPictureEdit3.Name = "repositoryItemPictureEdit3";
     //
     // CreateDate
     //
     this.CreateDate.Caption = "CreateDate";
     this.CreateDate.FieldName = "CreateDate";
     this.CreateDate.Name = "CreateDate";
     //
     // colType
     //
     this.colType.Caption = "Product Type";
     this.colType.ColumnEdit = this.repositoryItemMemoEdit1;
     this.colType.FieldName = "Type";
     this.colType.Name = "colType";
     this.colType.Width = 97;
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemRichTextEdit1
     //
     this.repositoryItemRichTextEdit1.Name = "repositoryItemRichTextEdit1";
     this.repositoryItemRichTextEdit1.ShowCaretInReadOnly = false;
     //
     // repositoryItemComboBox3
     //
     this.repositoryItemComboBox3.AutoHeight = false;
     this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
     //
     // repositoryItemGridLookUpEdit1
     //
     this.repositoryItemGridLookUpEdit1.AutoHeight = false;
     this.repositoryItemGridLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdit1.Name = "repositoryItemGridLookUpEdit1";
     this.repositoryItemGridLookUpEdit1.View = this.repositoryItemGridLookUpEdit1View;
     //
     // repositoryItemGridLookUpEdit1View
     //
     this.repositoryItemGridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.repositoryItemGridLookUpEdit1View.Name = "repositoryItemGridLookUpEdit1View";
     this.repositoryItemGridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.repositoryItemGridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // repositoryItemRichTextEdit2
     //
     this.repositoryItemRichTextEdit2.Name = "repositoryItemRichTextEdit2";
     this.repositoryItemRichTextEdit2.ShowCaretInReadOnly = false;
     //
     // repositoryItemRichTextEdit3
     //
     this.repositoryItemRichTextEdit3.Name = "repositoryItemRichTextEdit3";
     this.repositoryItemRichTextEdit3.ShowCaretInReadOnly = false;
     //
     // repositoryItemTextEdit2
     //
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     //
     // repositoryItemTextEdit3
     //
     this.repositoryItemTextEdit3.AutoHeight = false;
     this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
     //
     // cboTempl1
     //
     this.cboTempl1.FormattingEnabled = true;
     this.cboTempl1.Location = new System.Drawing.Point(65, 4);
     this.cboTempl1.Name = "cboTempl1";
     this.cboTempl1.Size = new System.Drawing.Size(90, 21);
     this.cboTempl1.TabIndex = 10;
     this.cboTempl1.SelectedIndexChanged += new System.EventHandler(this.cboTempl1_SelectedIndexChanged);
     //
     // cboDisplay
     //
     this.cboDisplay.FormattingEnabled = true;
     this.cboDisplay.Location = new System.Drawing.Point(240, 4);
     this.cboDisplay.Name = "cboDisplay";
     this.cboDisplay.Size = new System.Drawing.Size(90, 21);
     this.cboDisplay.TabIndex = 11;
     this.cboDisplay.SelectedIndexChanged += new System.EventHandler(this.cboDisplay_SelectedIndexChanged);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(5, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(54, 13);
     this.labelControl1.TabIndex = 16;
     this.labelControl1.Text = "テンプレート";
     //
     // insertBookmark
     //
     this.insertBookmark.Location = new System.Drawing.Point(210, 9);
     this.insertBookmark.Name = "insertBookmark";
     this.insertBookmark.Size = new System.Drawing.Size(24, 13);
     this.insertBookmark.TabIndex = 17;
     this.insertBookmark.Text = "表示";
     //
     // fileSaveItem2
     //
     this.fileSaveItem2.Caption = "Save";
     this.fileSaveItem2.Enabled = false;
     this.fileSaveItem2.Glyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem2.Glyph")));
     this.fileSaveItem2.Id = 105;
     this.fileSaveItem2.LargeGlyph = ((System.Drawing.Image)(resources.GetObject("fileSaveItem2.LargeGlyph")));
     this.fileSaveItem2.Name = "fileSaveItem2";
     toolTipTitleItem142.Text = "Save (Ctrl+S)";
     toolTipItem142.Text = "Save";
     superToolTip142.Items.Add(toolTipTitleItem142);
     superToolTip142.Items.Add(toolTipItem142);
     this.fileSaveItem2.SuperTip = superToolTip142;
     //
     // commonBar2
     //
     this.commonBar2.BarName = "";
     this.commonBar2.DockCol = 0;
     this.commonBar2.DockRow = 0;
     this.commonBar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar2.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar2.OptionsBar.AllowQuickCustomization = false;
     this.commonBar2.Text = "";
     //
     // commonBar3
     //
     this.commonBar3.BarName = "";
     this.commonBar3.DockCol = 0;
     this.commonBar3.DockRow = 0;
     this.commonBar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar3.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar3.OptionsBar.AllowQuickCustomization = false;
     this.commonBar3.Text = "";
     //
     // commonBar4
     //
     this.commonBar4.BarName = "";
     this.commonBar4.DockCol = 0;
     this.commonBar4.DockRow = 0;
     this.commonBar4.DockStyle = DevExpress.XtraBars.BarDockStyle.Standalone;
     this.commonBar4.FloatLocation = new System.Drawing.Point(323, 168);
     this.commonBar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.cboTemplate)});
     this.commonBar4.OptionsBar.AllowQuickCustomization = false;
     this.commonBar4.Text = "";
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "edit_16x16.png");
     this.imageList1.Images.SetKeyName(1, "edit_box_24x24.png");
     this.imageList1.Images.SetKeyName(2, "insert-bookmark_16x16.png");
     this.imageList1.Images.SetKeyName(3, "insert-bookmark_box_24x24.png");
     this.imageList1.Images.SetKeyName(4, "insert-image_16x16.png");
     this.imageList1.Images.SetKeyName(5, "insert-image_box_24x24.png");
     this.imageList1.Images.SetKeyName(6, "insert-pdf_16x16.png");
     this.imageList1.Images.SetKeyName(7, "insert-pdf_box_24x24.png");
     this.imageList1.Images.SetKeyName(8, "log_box_24x24.png");
     this.imageList1.Images.SetKeyName(9, "log-history_16x16.png");
     this.imageList1.Images.SetKeyName(10, "print_box_24x24.png");
     this.imageList1.Images.SetKeyName(11, "printer_16x16.png");
     this.imageList1.Images.SetKeyName(12, "refesh_16x16.png");
     this.imageList1.Images.SetKeyName(13, "refesh_box_24x24.png");
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.Images.SetKeyName(0, "file_unlock.png");
     this.imageCollection1.Images.SetKeyName(1, "bar_chart_add.png");
     this.imageCollection1.Images.SetKeyName(2, "chart_remove.png");
     //
     // dateEdit
     //
     this.dateEdit.EditValue = null;
     this.dateEdit.Location = new System.Drawing.Point(580, 3);
     this.dateEdit.MenuManager = this.barManager1;
     this.dateEdit.Name = "dateEdit";
     this.dateEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit.Size = new System.Drawing.Size(94, 20);
     this.dateEdit.TabIndex = 22;
     this.dateEdit.EditValueChanged += new System.EventHandler(this.dateEdit_EditValueChanged);
     //
     // Editor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dateEdit);
     this.Controls.Add(this.insertBookmark);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.cboDisplay);
     this.Controls.Add(this.cboTempl1);
     this.Controls.Add(this.grdContent);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "Editor";
     this.Size = new System.Drawing.Size(728, 514);
     this.Load += new System.EventHandler(this.Editor_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemFontEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditFontSizeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineStyle1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemBorderLineWeight1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichEditStyleEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.richEditBarController1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdContent)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemRichTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 37
0
 private void InitializeComponent()
 {
     GridLevelNode node = new GridLevelNode();
     GridLevelNode node2 = new GridLevelNode();
     this.gpgGroupBoxMembers = new GPGGroupBox();
     this.skinLabel2 = new SkinLabel();
     this.skinLabel3 = new SkinLabel();
     this.skinLabel1 = new SkinLabel();
     this.gpgLabel2 = new GPGLabel();
     this.gpgLabel1 = new GPGLabel();
     this.gpgLabelFaction = new GPGLabel();
     this.gpgLabelName = new GPGLabel();
     this.gpgPictureBoxPrefMap = new GPGPictureBox();
     this.skinButtonLaunch = new SkinButton();
     this.skinButtonChangeMap = new SkinButton();
     this.textBoxMsg = new GPGTextBox();
     this.gpgChatGrid = new GPGChatGrid();
     this.gvChat = new GridView();
     this.colIcon = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.colPlayer = new GridColumn();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.colText = new GridColumn();
     this.gcVisible = new GridColumn();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.gpgLabel3 = new GPGLabel();
     this.gpgLabePreflMapName = new GPGLabel();
     this.gpgLabeNonPreflMapName = new GPGLabel();
     this.gpgLabel5 = new GPGLabel();
     this.gpgPictureBoxNonPrefMap = new GPGPictureBox();
     this.gpgGroupBox1 = new GPGGroupBox();
     this.skinButtonLeaveTeam = new SkinButton();
     this.gpgGroupBoxMembers.SuspendLayout();
     ((ISupportInitialize) this.gpgPictureBoxPrefMap).BeginInit();
     this.textBoxMsg.Properties.BeginInit();
     this.gpgChatGrid.BeginInit();
     this.gvChat.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     ((ISupportInitialize) this.gpgPictureBoxNonPrefMap).BeginInit();
     this.gpgGroupBox1.SuspendLayout();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgGroupBoxMembers.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgGroupBoxMembers.Controls.Add(this.skinLabel2);
     this.gpgGroupBoxMembers.Controls.Add(this.skinLabel3);
     this.gpgGroupBoxMembers.Controls.Add(this.skinLabel1);
     this.gpgGroupBoxMembers.Controls.Add(this.gpgLabel2);
     this.gpgGroupBoxMembers.Controls.Add(this.gpgLabel1);
     this.gpgGroupBoxMembers.Controls.Add(this.gpgLabelFaction);
     this.gpgGroupBoxMembers.Controls.Add(this.gpgLabelName);
     this.gpgGroupBoxMembers.Location = new Point(12, 0x53);
     this.gpgGroupBoxMembers.Name = "gpgGroupBoxMembers";
     this.gpgGroupBoxMembers.Size = new Size(0x239, 0xf2);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxMembers, null);
     this.gpgGroupBoxMembers.TabIndex = 7;
     this.gpgGroupBoxMembers.TabStop = false;
     this.gpgGroupBoxMembers.Text = "<LOC>Team Members";
     this.skinLabel2.AutoStyle = false;
     this.skinLabel2.BackColor = Color.Transparent;
     this.skinLabel2.DrawEdges = false;
     this.skinLabel2.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel2.ForeColor = Color.White;
     this.skinLabel2.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel2.IsStyled = false;
     this.skinLabel2.Location = new Point(0xcb, 0x16);
     this.skinLabel2.Name = "skinLabel2";
     this.skinLabel2.Size = new Size(0xa6, 20);
     this.skinLabel2.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel2, null);
     this.skinLabel2.TabIndex = 5;
     this.skinLabel2.Text = "<LOC>Faction";
     this.skinLabel2.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel2.TextPadding = new Padding(0);
     this.skinLabel3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel3.AutoStyle = false;
     this.skinLabel3.BackColor = Color.Transparent;
     this.skinLabel3.DrawEdges = true;
     this.skinLabel3.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel3.ForeColor = Color.White;
     this.skinLabel3.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel3.IsStyled = false;
     this.skinLabel3.Location = new Point(0x16e, 0x16);
     this.skinLabel3.Name = "skinLabel3";
     this.skinLabel3.Size = new Size(0xc3, 20);
     this.skinLabel3.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel3, null);
     this.skinLabel3.TabIndex = 6;
     this.skinLabel3.Text = "<LOC>Ready";
     this.skinLabel3.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel3.TextPadding = new Padding(0);
     this.skinLabel1.AutoStyle = false;
     this.skinLabel1.BackColor = Color.Transparent;
     this.skinLabel1.DrawEdges = true;
     this.skinLabel1.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel1.ForeColor = Color.White;
     this.skinLabel1.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel1.IsStyled = false;
     this.skinLabel1.Location = new Point(9, 0x16);
     this.skinLabel1.Name = "skinLabel1";
     this.skinLabel1.Size = new Size(0xc4, 20);
     this.skinLabel1.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel1, null);
     this.skinLabel1.TabIndex = 4;
     this.skinLabel1.Text = "<LOC>Name";
     this.skinLabel1.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel1.TextPadding = new Padding(0);
     this.gpgLabel2.AutoSize = true;
     this.gpgLabel2.AutoStyle = true;
     this.gpgLabel2.Font = new Font("Arial", 9.75f);
     this.gpgLabel2.ForeColor = Color.White;
     this.gpgLabel2.IgnoreMouseWheel = false;
     this.gpgLabel2.IsStyled = false;
     this.gpgLabel2.Location = new Point(0x1a8, 0x1a);
     this.gpgLabel2.Name = "gpgLabel2";
     this.gpgLabel2.Size = new Size(0x4c, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel2, null);
     this.gpgLabel2.TabIndex = 3;
     this.gpgLabel2.Text = "<LOC>Ping";
     this.gpgLabel2.TextStyle = TextStyles.Bold;
     this.gpgLabel2.Visible = false;
     this.gpgLabel1.AutoSize = true;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.Font = new Font("Arial", 9.75f);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(0x16b, 0x1a);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0x57, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 2;
     this.gpgLabel1.Text = "<LOC>Ready";
     this.gpgLabel1.TextStyle = TextStyles.Bold;
     this.gpgLabelFaction.AutoSize = true;
     this.gpgLabelFaction.AutoStyle = true;
     this.gpgLabelFaction.Font = new Font("Arial", 9.75f);
     this.gpgLabelFaction.ForeColor = Color.White;
     this.gpgLabelFaction.IgnoreMouseWheel = false;
     this.gpgLabelFaction.IsStyled = false;
     this.gpgLabelFaction.Location = new Point(200, 0x1a);
     this.gpgLabelFaction.Name = "gpgLabelFaction";
     this.gpgLabelFaction.Size = new Size(0x5d, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelFaction, null);
     this.gpgLabelFaction.TabIndex = 1;
     this.gpgLabelFaction.Text = "<LOC>Faction";
     this.gpgLabelFaction.TextStyle = TextStyles.Bold;
     this.gpgLabelName.AutoSize = true;
     this.gpgLabelName.AutoStyle = true;
     this.gpgLabelName.Font = new Font("Arial", 9.75f);
     this.gpgLabelName.ForeColor = Color.White;
     this.gpgLabelName.IgnoreMouseWheel = false;
     this.gpgLabelName.IsStyled = false;
     this.gpgLabelName.Location = new Point(6, 0x1a);
     this.gpgLabelName.Name = "gpgLabelName";
     this.gpgLabelName.Size = new Size(0x54, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelName, null);
     this.gpgLabelName.TabIndex = 0;
     this.gpgLabelName.Text = "<LOC>Name";
     this.gpgLabelName.TextStyle = TextStyles.Bold;
     this.gpgPictureBoxPrefMap.Location = new Point(6, 0x23);
     this.gpgPictureBoxPrefMap.Name = "gpgPictureBoxPrefMap";
     this.gpgPictureBoxPrefMap.Size = new Size(0x80, 0x80);
     this.gpgPictureBoxPrefMap.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.gpgPictureBoxPrefMap, null);
     this.gpgPictureBoxPrefMap.TabIndex = 8;
     this.gpgPictureBoxPrefMap.TabStop = false;
     this.skinButtonLaunch.Anchor = AnchorStyles.Bottom;
     this.skinButtonLaunch.AutoStyle = true;
     this.skinButtonLaunch.BackColor = Color.Black;
     this.skinButtonLaunch.DialogResult = DialogResult.OK;
     this.skinButtonLaunch.DisabledForecolor = Color.Gray;
     this.skinButtonLaunch.DrawEdges = true;
     this.skinButtonLaunch.Enabled = false;
     this.skinButtonLaunch.FocusColor = Color.Yellow;
     this.skinButtonLaunch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonLaunch.ForeColor = Color.White;
     this.skinButtonLaunch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonLaunch.IsStyled = true;
     this.skinButtonLaunch.Location = new Point(0x1d3, 0x227);
     this.skinButtonLaunch.Name = "skinButtonLaunch";
     this.skinButtonLaunch.Size = new Size(130, 0x1a);
     this.skinButtonLaunch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonLaunch, null);
     this.skinButtonLaunch.TabIndex = 9;
     this.skinButtonLaunch.Text = "<LOC>Launch";
     this.skinButtonLaunch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonLaunch.TextPadding = new Padding(0);
     this.skinButtonLaunch.Click += new EventHandler(this.skinButtonLaunch_Click);
     this.skinButtonChangeMap.AutoStyle = true;
     this.skinButtonChangeMap.BackColor = Color.Black;
     this.skinButtonChangeMap.DialogResult = DialogResult.OK;
     this.skinButtonChangeMap.DisabledForecolor = Color.Gray;
     this.skinButtonChangeMap.DrawEdges = true;
     this.skinButtonChangeMap.Enabled = false;
     this.skinButtonChangeMap.FocusColor = Color.Yellow;
     this.skinButtonChangeMap.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonChangeMap.ForeColor = Color.White;
     this.skinButtonChangeMap.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonChangeMap.IsStyled = true;
     this.skinButtonChangeMap.Location = new Point(0x40, 210);
     this.skinButtonChangeMap.Name = "skinButtonChangeMap";
     this.skinButtonChangeMap.Size = new Size(0x9d, 0x1a);
     this.skinButtonChangeMap.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonChangeMap, null);
     this.skinButtonChangeMap.TabIndex = 10;
     this.skinButtonChangeMap.Text = "<LOC>Set Map Preferences";
     this.skinButtonChangeMap.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonChangeMap.TextPadding = new Padding(0);
     this.skinButtonChangeMap.Click += new EventHandler(this.skinButtonChangeMap_Click);
     this.textBoxMsg.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.textBoxMsg.Location = new Point(12, 0x205);
     this.textBoxMsg.Name = "textBoxMsg";
     this.textBoxMsg.Properties.Appearance.BackColor = Color.Black;
     this.textBoxMsg.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.textBoxMsg.Properties.Appearance.ForeColor = Color.White;
     this.textBoxMsg.Properties.Appearance.Options.UseBackColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseForeColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.textBoxMsg.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.textBoxMsg.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.textBoxMsg.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.BorderStyle = BorderStyles.Simple;
     this.textBoxMsg.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.textBoxMsg.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.textBoxMsg.Size = new Size(850, 20);
     this.textBoxMsg.TabIndex = 11;
     this.gpgChatGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgChatGrid.CustomizeStyle = true;
     this.gpgChatGrid.EmbeddedNavigator.Name = "";
     this.gpgChatGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgChatGrid.IgnoreMouseWheel = false;
     node.RelationName = "Level1";
     node2.RelationName = "Level2";
     this.gpgChatGrid.LevelTree.Nodes.AddRange(new GridLevelNode[] { node, node2 });
     this.gpgChatGrid.Location = new Point(12, 0x151);
     this.gpgChatGrid.MainView = this.gvChat;
     this.gpgChatGrid.Name = "gpgChatGrid";
     this.gpgChatGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgChatGrid.ShowOnlyPredefinedDetails = true;
     this.gpgChatGrid.Size = new Size(850, 170);
     this.gpgChatGrid.TabIndex = 12;
     this.gpgChatGrid.ViewCollection.AddRange(new BaseView[] { this.gvChat });
     this.gvChat.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvChat.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvChat.Appearance.Empty.BackColor = Color.Black;
     this.gvChat.Appearance.Empty.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvChat.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvChat.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvChat.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvChat.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvChat.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvChat.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvChat.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvChat.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.Options.UseFont = true;
     this.gvChat.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvChat.Appearance.FocusedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.FocusedRow.BackColor2 = Color.Black;
     this.gvChat.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Bold);
     this.gvChat.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvChat.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedRow.Options.UseFont = true;
     this.gvChat.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvChat.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvChat.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvChat.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseFont = true;
     this.gvChat.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupButton.BackColor = Color.Black;
     this.gvChat.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvChat.Appearance.GroupButton.ForeColor = Color.White;
     this.gvChat.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvChat.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvChat.Appearance.GroupPanel.BackColor2 = Color.White;
     this.gvChat.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvChat.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupPanel.Options.UseFont = true;
     this.gvChat.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvChat.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.GroupRow.ForeColor = Color.White;
     this.gvChat.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupRow.Options.UseFont = true;
     this.gvChat.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvChat.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvChat.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.HeaderPanel.ForeColor = Color.White;
     this.gvChat.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.HideSelectionRow.BackColor = Color.Black;
     this.gvChat.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HorzLine.BackColor = Color.Yellow;
     this.gvChat.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.BackColor = Color.White;
     this.gvChat.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.Preview.ForeColor = Color.Purple;
     this.gvChat.Appearance.Preview.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.Options.UseFont = true;
     this.gvChat.Appearance.Preview.Options.UseForeColor = true;
     this.gvChat.Appearance.Row.BackColor = Color.Black;
     this.gvChat.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0xb2);
     this.gvChat.Appearance.Row.ForeColor = Color.White;
     this.gvChat.Appearance.Row.Options.UseBackColor = true;
     this.gvChat.Appearance.Row.Options.UseFont = true;
     this.gvChat.Appearance.Row.Options.UseForeColor = true;
     this.gvChat.Appearance.RowSeparator.BackColor = Color.White;
     this.gvChat.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvChat.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.SelectedRow.BackColor2 = Color.Black;
     this.gvChat.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvChat.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvChat.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.Options.UseFont = true;
     this.gvChat.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvChat.Appearance.TopNewRow.Options.UseFont = true;
     this.gvChat.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvChat.Appearance.VertLine.BackColor = Color.Yellow;
     this.gvChat.Appearance.VertLine.Options.UseBackColor = true;
     this.gvChat.BorderStyle = BorderStyles.NoBorder;
     this.gvChat.Columns.AddRange(new GridColumn[] { this.colIcon, this.colPlayer, this.colText, this.gcVisible });
     this.gvChat.GridControl = this.gpgChatGrid;
     this.gvChat.Name = "gvChat";
     this.gvChat.OptionsDetail.AllowZoomDetail = false;
     this.gvChat.OptionsDetail.EnableMasterViewMode = false;
     this.gvChat.OptionsDetail.ShowDetailTabs = false;
     this.gvChat.OptionsDetail.SmartDetailExpand = false;
     this.gvChat.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvChat.OptionsSelection.MultiSelect = true;
     this.gvChat.OptionsView.RowAutoHeight = true;
     this.gvChat.OptionsView.ShowColumnHeaders = false;
     this.gvChat.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvChat.OptionsView.ShowGroupPanel = false;
     this.gvChat.OptionsView.ShowHorzLines = false;
     this.gvChat.OptionsView.ShowIndicator = false;
     this.gvChat.OptionsView.ShowVertLines = false;
     this.colIcon.Caption = "Player Icon";
     this.colIcon.ColumnEdit = this.rimPictureEdit3;
     this.colIcon.FieldName = "Icon";
     this.colIcon.Name = "colIcon";
     this.colIcon.OptionsColumn.AllowEdit = false;
     this.colIcon.OptionsColumn.FixedWidth = true;
     this.colIcon.OptionsColumn.ReadOnly = true;
     this.colIcon.Width = 40;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.colPlayer.Caption = "Player Name";
     this.colPlayer.ColumnEdit = this.rimMemoEdit3;
     this.colPlayer.FieldName = "PlayerInfo";
     this.colPlayer.Name = "colPlayer";
     this.colPlayer.OptionsColumn.AllowEdit = false;
     this.colPlayer.OptionsColumn.FixedWidth = true;
     this.colPlayer.OptionsColumn.ReadOnly = true;
     this.colPlayer.Visible = true;
     this.colPlayer.VisibleIndex = 0;
     this.colPlayer.Width = 150;
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.colText.Caption = "Chat Content";
     this.colText.ColumnEdit = this.rimMemoEdit3;
     this.colText.FieldName = "Text";
     this.colText.Name = "colText";
     this.colText.OptionsColumn.AllowEdit = false;
     this.colText.OptionsColumn.ReadOnly = true;
     this.colText.Visible = true;
     this.colText.VisibleIndex = 1;
     this.colText.Width = 0x120;
     this.gcVisible.Caption = "gcVisible";
     this.gcVisible.FieldName = "IsVisible";
     this.gcVisible.Name = "gcVisible";
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.gpgLabel3.AutoStyle = true;
     this.gpgLabel3.Font = new Font("Arial", 9.75f);
     this.gpgLabel3.ForeColor = Color.White;
     this.gpgLabel3.IgnoreMouseWheel = false;
     this.gpgLabel3.IsStyled = false;
     this.gpgLabel3.Location = new Point(3, 0x10);
     this.gpgLabel3.Name = "gpgLabel3";
     this.gpgLabel3.Size = new Size(0x83, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel3, null);
     this.gpgLabel3.TabIndex = 13;
     this.gpgLabel3.Text = "<LOC>Thumbs Up";
     this.gpgLabel3.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabel3.TextStyle = TextStyles.Bold;
     this.gpgLabePreflMapName.AutoStyle = true;
     this.gpgLabePreflMapName.Font = new Font("Arial", 9.75f);
     this.gpgLabePreflMapName.ForeColor = Color.White;
     this.gpgLabePreflMapName.IgnoreMouseWheel = false;
     this.gpgLabePreflMapName.IsStyled = false;
     this.gpgLabePreflMapName.Location = new Point(3, 0xa6);
     this.gpgLabePreflMapName.Name = "gpgLabePreflMapName";
     this.gpgLabePreflMapName.Size = new Size(0x83, 0x29);
     base.ttDefault.SetSuperTip(this.gpgLabePreflMapName, null);
     this.gpgLabePreflMapName.TabIndex = 14;
     this.gpgLabePreflMapName.Text = "Map Name";
     this.gpgLabePreflMapName.TextAlign = ContentAlignment.TopCenter;
     this.gpgLabePreflMapName.TextStyle = TextStyles.Default;
     this.gpgLabeNonPreflMapName.AutoStyle = true;
     this.gpgLabeNonPreflMapName.Font = new Font("Arial", 9.75f);
     this.gpgLabeNonPreflMapName.ForeColor = Color.White;
     this.gpgLabeNonPreflMapName.IgnoreMouseWheel = false;
     this.gpgLabeNonPreflMapName.IsStyled = false;
     this.gpgLabeNonPreflMapName.Location = new Point(140, 0xa6);
     this.gpgLabeNonPreflMapName.Name = "gpgLabeNonPreflMapName";
     this.gpgLabeNonPreflMapName.Size = new Size(0x80, 0x29);
     base.ttDefault.SetSuperTip(this.gpgLabeNonPreflMapName, null);
     this.gpgLabeNonPreflMapName.TabIndex = 0x11;
     this.gpgLabeNonPreflMapName.Text = "Map Name";
     this.gpgLabeNonPreflMapName.TextAlign = ContentAlignment.TopCenter;
     this.gpgLabeNonPreflMapName.TextStyle = TextStyles.Default;
     this.gpgLabel5.AutoStyle = true;
     this.gpgLabel5.Font = new Font("Arial", 9.75f);
     this.gpgLabel5.ForeColor = Color.White;
     this.gpgLabel5.IgnoreMouseWheel = false;
     this.gpgLabel5.IsStyled = false;
     this.gpgLabel5.Location = new Point(0x89, 0x10);
     this.gpgLabel5.Name = "gpgLabel5";
     this.gpgLabel5.Size = new Size(0x83, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel5, null);
     this.gpgLabel5.TabIndex = 0x10;
     this.gpgLabel5.Text = "<LOC>Thumbs down";
     this.gpgLabel5.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabel5.TextStyle = TextStyles.Bold;
     this.gpgPictureBoxNonPrefMap.Location = new Point(140, 0x23);
     this.gpgPictureBoxNonPrefMap.Name = "gpgPictureBoxNonPrefMap";
     this.gpgPictureBoxNonPrefMap.Size = new Size(0x80, 0x80);
     this.gpgPictureBoxNonPrefMap.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.gpgPictureBoxNonPrefMap, null);
     this.gpgPictureBoxNonPrefMap.TabIndex = 15;
     this.gpgPictureBoxNonPrefMap.TabStop = false;
     this.gpgGroupBox1.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgGroupBox1.Controls.Add(this.gpgLabel3);
     this.gpgGroupBox1.Controls.Add(this.gpgLabeNonPreflMapName);
     this.gpgGroupBox1.Controls.Add(this.gpgPictureBoxPrefMap);
     this.gpgGroupBox1.Controls.Add(this.gpgLabel5);
     this.gpgGroupBox1.Controls.Add(this.skinButtonChangeMap);
     this.gpgGroupBox1.Controls.Add(this.gpgPictureBoxNonPrefMap);
     this.gpgGroupBox1.Controls.Add(this.gpgLabePreflMapName);
     this.gpgGroupBox1.Location = new Point(0x24b, 0x53);
     this.gpgGroupBox1.Name = "gpgGroupBox1";
     this.gpgGroupBox1.Size = new Size(0x113, 0xf2);
     base.ttDefault.SetSuperTip(this.gpgGroupBox1, null);
     this.gpgGroupBox1.TabIndex = 0x12;
     this.gpgGroupBox1.TabStop = false;
     this.gpgGroupBox1.Text = "<LOC>Current Map Preferences";
     this.skinButtonLeaveTeam.Anchor = AnchorStyles.Bottom;
     this.skinButtonLeaveTeam.AutoStyle = true;
     this.skinButtonLeaveTeam.BackColor = Color.Black;
     this.skinButtonLeaveTeam.DialogResult = DialogResult.OK;
     this.skinButtonLeaveTeam.DisabledForecolor = Color.Gray;
     this.skinButtonLeaveTeam.DrawEdges = true;
     this.skinButtonLeaveTeam.FocusColor = Color.Yellow;
     this.skinButtonLeaveTeam.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonLeaveTeam.ForeColor = Color.White;
     this.skinButtonLeaveTeam.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonLeaveTeam.IsStyled = true;
     this.skinButtonLeaveTeam.Location = new Point(0x14b, 0x227);
     this.skinButtonLeaveTeam.Name = "skinButtonLeaveTeam";
     this.skinButtonLeaveTeam.Size = new Size(130, 0x1a);
     this.skinButtonLeaveTeam.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonLeaveTeam, null);
     this.skinButtonLeaveTeam.TabIndex = 10;
     this.skinButtonLeaveTeam.Text = "<LOC>Disband";
     this.skinButtonLeaveTeam.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonLeaveTeam.TextPadding = new Padding(0);
     this.skinButtonLeaveTeam.Click += new EventHandler(this.skinButtonLeaveTeam_Click);
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x369, 640);
     base.Controls.Add(this.skinButtonLeaveTeam);
     base.Controls.Add(this.gpgGroupBox1);
     base.Controls.Add(this.gpgChatGrid);
     base.Controls.Add(this.textBoxMsg);
     base.Controls.Add(this.skinButtonLaunch);
     base.Controls.Add(this.gpgGroupBoxMembers);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x369, 640);
     base.Name = "DlgTeamGame";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Team Selection";
     base.Controls.SetChildIndex(this.gpgGroupBoxMembers, 0);
     base.Controls.SetChildIndex(this.skinButtonLaunch, 0);
     base.Controls.SetChildIndex(this.textBoxMsg, 0);
     base.Controls.SetChildIndex(this.gpgChatGrid, 0);
     base.Controls.SetChildIndex(this.gpgGroupBox1, 0);
     base.Controls.SetChildIndex(this.skinButtonLeaveTeam, 0);
     this.gpgGroupBoxMembers.ResumeLayout(false);
     this.gpgGroupBoxMembers.PerformLayout();
     ((ISupportInitialize) this.gpgPictureBoxPrefMap).EndInit();
     this.textBoxMsg.Properties.EndInit();
     this.gpgChatGrid.EndInit();
     this.gvChat.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimMemoEdit3.EndInit();
     this.rimTextEdit.EndInit();
     ((ISupportInitialize) this.gpgPictureBoxNonPrefMap).EndInit();
     this.gpgGroupBox1.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 38
0
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(DlgJoinGame));
     this.skinButtonJoin = new SkinButton();
     this.skinButtonCancel = new SkinButton();
     this.skinButtonRefresh = new SkinButton();
     this.gpgGameGrid = new GPGChatGrid();
     this.gvGameView = new GridView();
     this.colHasPassword = new GridColumn();
     this.riHasPassword = new RepositoryItemCheckEdit();
     this.colDescription = new GridColumn();
     this.colHostName = new GridColumn();
     this.colPlayerCount = new GridColumn();
     this.colPlayerLevels = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgGameGrid.BeginInit();
     this.gvGameView.BeginInit();
     this.riHasPassword.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.repositoryItemPictureEdit1.BeginInit();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x264, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.skinButtonJoin.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonJoin.AutoStyle = true;
     this.skinButtonJoin.BackColor = Color.Black;
     this.skinButtonJoin.ButtonState = 0;
     this.skinButtonJoin.DialogResult = DialogResult.OK;
     this.skinButtonJoin.DisabledForecolor = Color.Gray;
     this.skinButtonJoin.DrawColor = Color.White;
     this.skinButtonJoin.DrawEdges = true;
     this.skinButtonJoin.Enabled = false;
     this.skinButtonJoin.FocusColor = Color.Yellow;
     this.skinButtonJoin.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonJoin.ForeColor = Color.White;
     this.skinButtonJoin.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonJoin.IsStyled = true;
     this.skinButtonJoin.Location = new Point(0x150, 430);
     this.skinButtonJoin.Name = "skinButtonJoin";
     this.skinButtonJoin.Size = new Size(0x68, 0x17);
     this.skinButtonJoin.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonJoin, null);
     this.skinButtonJoin.TabIndex = 0x23;
     this.skinButtonJoin.TabStop = true;
     this.skinButtonJoin.Text = "<LOC>Join Game";
     this.skinButtonJoin.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonJoin.TextPadding = new Padding(0);
     this.skinButtonJoin.Click += new EventHandler(this.skinButtonJoin_Click);
     this.skinButtonCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonCancel.AutoStyle = true;
     this.skinButtonCancel.BackColor = Color.Black;
     this.skinButtonCancel.ButtonState = 0;
     this.skinButtonCancel.DialogResult = DialogResult.OK;
     this.skinButtonCancel.DisabledForecolor = Color.Gray;
     this.skinButtonCancel.DrawColor = Color.White;
     this.skinButtonCancel.DrawEdges = true;
     this.skinButtonCancel.FocusColor = Color.Yellow;
     this.skinButtonCancel.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonCancel.ForeColor = Color.White;
     this.skinButtonCancel.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonCancel.IsStyled = true;
     this.skinButtonCancel.Location = new Point(0x22c, 430);
     this.skinButtonCancel.Name = "skinButtonCancel";
     this.skinButtonCancel.Size = new Size(0x68, 0x17);
     this.skinButtonCancel.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonCancel, null);
     this.skinButtonCancel.TabIndex = 0x22;
     this.skinButtonCancel.TabStop = true;
     this.skinButtonCancel.Text = "<LOC>Cancel";
     this.skinButtonCancel.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonCancel.TextPadding = new Padding(0);
     this.skinButtonCancel.Click += new EventHandler(this.skinButtonCancel_Click);
     this.skinButtonRefresh.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonRefresh.AutoStyle = true;
     this.skinButtonRefresh.BackColor = Color.Black;
     this.skinButtonRefresh.ButtonState = 0;
     this.skinButtonRefresh.DialogResult = DialogResult.OK;
     this.skinButtonRefresh.DisabledForecolor = Color.Gray;
     this.skinButtonRefresh.DrawColor = Color.White;
     this.skinButtonRefresh.DrawEdges = true;
     this.skinButtonRefresh.FocusColor = Color.Yellow;
     this.skinButtonRefresh.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonRefresh.ForeColor = Color.White;
     this.skinButtonRefresh.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonRefresh.IsStyled = true;
     this.skinButtonRefresh.Location = new Point(0x1be, 430);
     this.skinButtonRefresh.Name = "skinButtonRefresh";
     this.skinButtonRefresh.Size = new Size(0x68, 0x17);
     this.skinButtonRefresh.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonRefresh, null);
     this.skinButtonRefresh.TabIndex = 0x21;
     this.skinButtonRefresh.TabStop = true;
     this.skinButtonRefresh.Text = "<LOC>Refresh List";
     this.skinButtonRefresh.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonRefresh.TextPadding = new Padding(0);
     this.skinButtonRefresh.Click += new EventHandler(this.skinButtonRefresh_Click);
     this.gpgGameGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgGameGrid.CustomizeStyle = false;
     this.gpgGameGrid.EmbeddedNavigator.Name = "";
     this.gpgGameGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgGameGrid.IgnoreMouseWheel = false;
     this.gpgGameGrid.Location = new Point(12, 0x53);
     this.gpgGameGrid.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgGameGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgGameGrid.MainView = this.gvGameView;
     this.gpgGameGrid.Name = "gpgGameGrid";
     this.gpgGameGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3, this.riHasPassword, this.repositoryItemPictureEdit1 });
     this.gpgGameGrid.ShowOnlyPredefinedDetails = true;
     this.gpgGameGrid.Size = new Size(0x287, 0x155);
     this.gpgGameGrid.TabIndex = 0x20;
     this.gpgGameGrid.ViewCollection.AddRange(new BaseView[] { this.gvGameView });
     this.gpgGameGrid.DoubleClick += new EventHandler(this.gpgGameGrid_DoubleClick);
     this.gvGameView.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvGameView.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvGameView.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvGameView.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvGameView.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvGameView.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvGameView.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvGameView.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvGameView.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvGameView.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvGameView.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvGameView.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvGameView.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvGameView.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvGameView.Appearance.Empty.BackColor = Color.Black;
     this.gvGameView.Appearance.Empty.Options.UseBackColor = true;
     this.gvGameView.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvGameView.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvGameView.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvGameView.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvGameView.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvGameView.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvGameView.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvGameView.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvGameView.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvGameView.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvGameView.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvGameView.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvGameView.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvGameView.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvGameView.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvGameView.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvGameView.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvGameView.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvGameView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvGameView.Appearance.FocusedCell.Options.UseFont = true;
     this.gvGameView.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvGameView.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvGameView.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvGameView.Appearance.FocusedRow.Font = new Font("Arial", 9.75f);
     this.gvGameView.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvGameView.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvGameView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvGameView.Appearance.FocusedRow.Options.UseFont = true;
     this.gvGameView.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvGameView.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvGameView.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvGameView.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvGameView.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvGameView.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvGameView.Appearance.FooterPanel.Options.UseFont = true;
     this.gvGameView.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvGameView.Appearance.GroupButton.BackColor = Color.Black;
     this.gvGameView.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvGameView.Appearance.GroupButton.ForeColor = Color.White;
     this.gvGameView.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvGameView.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvGameView.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvGameView.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvGameView.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvGameView.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvGameView.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvGameView.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvGameView.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvGameView.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvGameView.Appearance.GroupPanel.BackColor2 = Color.Black;
     this.gvGameView.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvGameView.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvGameView.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvGameView.Appearance.GroupPanel.Options.UseFont = true;
     this.gvGameView.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvGameView.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvGameView.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.GroupRow.ForeColor = Color.White;
     this.gvGameView.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvGameView.Appearance.GroupRow.Options.UseFont = true;
     this.gvGameView.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvGameView.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvGameView.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvGameView.Appearance.HeaderPanel.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gvGameView.Appearance.HeaderPanel.ForeColor = Color.Black;
     this.gvGameView.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvGameView.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvGameView.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvGameView.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvGameView.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvGameView.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvGameView.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvGameView.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvGameView.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvGameView.Appearance.HorzLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvGameView.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvGameView.Appearance.Preview.BackColor = Color.White;
     this.gvGameView.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.Preview.ForeColor = Color.Purple;
     this.gvGameView.Appearance.Preview.Options.UseBackColor = true;
     this.gvGameView.Appearance.Preview.Options.UseFont = true;
     this.gvGameView.Appearance.Preview.Options.UseForeColor = true;
     this.gvGameView.Appearance.Row.BackColor = Color.Black;
     this.gvGameView.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0xb2);
     this.gvGameView.Appearance.Row.ForeColor = Color.White;
     this.gvGameView.Appearance.Row.Options.UseBackColor = true;
     this.gvGameView.Appearance.Row.Options.UseFont = true;
     this.gvGameView.Appearance.Row.Options.UseForeColor = true;
     this.gvGameView.Appearance.RowSeparator.BackColor = Color.White;
     this.gvGameView.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvGameView.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvGameView.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvGameView.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvGameView.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvGameView.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvGameView.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvGameView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvGameView.Appearance.SelectedRow.Options.UseFont = true;
     this.gvGameView.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvGameView.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvGameView.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvGameView.Appearance.TopNewRow.Options.UseFont = true;
     this.gvGameView.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvGameView.Appearance.VertLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvGameView.Appearance.VertLine.Options.UseBackColor = true;
     this.gvGameView.BorderStyle = BorderStyles.NoBorder;
     this.gvGameView.Columns.AddRange(new GridColumn[] { this.colHasPassword, this.colDescription, this.colHostName, this.colPlayerCount, this.colPlayerLevels });
     this.gvGameView.GridControl = this.gpgGameGrid;
     this.gvGameView.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvGameView.Name = "gvGameView";
     this.gvGameView.OptionsBehavior.AutoPopulateColumns = false;
     this.gvGameView.OptionsCustomization.AllowRowSizing = true;
     this.gvGameView.OptionsDetail.AllowZoomDetail = false;
     this.gvGameView.OptionsDetail.EnableMasterViewMode = false;
     this.gvGameView.OptionsDetail.ShowDetailTabs = false;
     this.gvGameView.OptionsDetail.SmartDetailExpand = false;
     this.gvGameView.OptionsMenu.EnableColumnMenu = false;
     this.gvGameView.OptionsMenu.EnableFooterMenu = false;
     this.gvGameView.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvGameView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvGameView.OptionsSelection.MultiSelect = true;
     this.gvGameView.OptionsView.RowAutoHeight = true;
     this.gvGameView.RowHeight = 50;
     this.gvGameView.SelectionChanged += new SelectionChangedEventHandler(this.gvGameView_SelectionChanged);
     this.colHasPassword.ColumnEdit = this.riHasPassword;
     this.colHasPassword.FieldName = "HasPassword";
     this.colHasPassword.MinWidth = 0x19;
     this.colHasPassword.Name = "colHasPassword";
     this.colHasPassword.OptionsColumn.AllowSize = false;
     this.colHasPassword.OptionsColumn.FixedWidth = true;
     this.colHasPassword.OptionsColumn.ReadOnly = true;
     this.colHasPassword.OptionsColumn.ShowCaption = false;
     this.colHasPassword.Visible = true;
     this.colHasPassword.VisibleIndex = 0;
     this.colHasPassword.Width = 0x19;
     this.riHasPassword.AutoHeight = false;
     this.riHasPassword.CheckStyle = CheckStyles.UserDefined;
     this.riHasPassword.Name = "riHasPassword";
     this.riHasPassword.PictureChecked = (Image) manager.GetObject("riHasPassword.PictureChecked");
     this.riHasPassword.PictureGrayed = (Image) manager.GetObject("riHasPassword.PictureGrayed");
     this.riHasPassword.PictureUnchecked = (Image) manager.GetObject("riHasPassword.PictureUnchecked");
     this.colDescription.Caption = "<LOC>Game Name";
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.AllowEdit = false;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 1;
     this.colDescription.Width = 0x9a;
     this.colHostName.Caption = "<LOC>Host Name";
     this.colHostName.FieldName = "HostName";
     this.colHostName.Name = "colHostName";
     this.colHostName.OptionsColumn.AllowEdit = false;
     this.colHostName.Visible = true;
     this.colHostName.VisibleIndex = 2;
     this.colHostName.Width = 0x68;
     this.colPlayerCount.Caption = "<LOC>Player Count";
     this.colPlayerCount.FieldName = "PlayerCount";
     this.colPlayerCount.Name = "colPlayerCount";
     this.colPlayerCount.OptionsColumn.AllowEdit = false;
     this.colPlayerCount.Visible = true;
     this.colPlayerCount.VisibleIndex = 3;
     this.colPlayerCount.Width = 0x68;
     this.colPlayerLevels.Caption = "<LOC>Avg. Player Level";
     this.colPlayerLevels.FieldName = "PlayerLevels";
     this.colPlayerLevels.Name = "colPlayerLevels";
     this.colPlayerLevels.Visible = true;
     this.colPlayerLevels.VisibleIndex = 4;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.repositoryItemPictureEdit1.CustomHeight = 0x18;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemPictureEdit1.ReadOnly = true;
     this.repositoryItemPictureEdit1.SizeMode = PictureSizeMode.Zoom;
     base.AcceptButton = this.skinButtonJoin;
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.CancelButton = this.skinButtonCancel;
     base.ClientSize = new Size(0x29f, 0x204);
     base.Controls.Add(this.skinButtonJoin);
     base.Controls.Add(this.skinButtonCancel);
     base.Controls.Add(this.skinButtonRefresh);
     base.Controls.Add(this.gpgGameGrid);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     base.Name = "DlgJoinGame";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Available Games";
     base.Controls.SetChildIndex(this.gpgGameGrid, 0);
     base.Controls.SetChildIndex(this.skinButtonRefresh, 0);
     base.Controls.SetChildIndex(this.skinButtonCancel, 0);
     base.Controls.SetChildIndex(this.skinButtonJoin, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgGameGrid.EndInit();
     this.gvGameView.EndInit();
     this.riHasPassword.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.rimMemoEdit3.EndInit();
     this.repositoryItemPictureEdit1.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 39
0
 private void InitializeComponent()
 {
     this.splitContainerChatAndInput = new SplitContainer();
     this.gpgTextListCommands = new GPGTextList();
     this.textBoxMsg = new GPGTextArea();
     this.gpgChatGrid = new GPGChatGrid();
     this.gvChat = new GridView();
     this.colIcon = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.colPlayer = new GridColumn();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.colText = new GridColumn();
     this.gcVisible = new GridColumn();
     this.colTimeStamp = new GridColumn();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.gpgContextMenuChatText = new GPGContextMenu();
     this.ciChatText_Clear = new MenuItem();
     this.ciChatText_Copy = new MenuItem();
     this.ciChatText_Filter = new MenuItem();
     this.ciChatText_Filter_Self = new MenuItem();
     this.ciChatText_Filter_System = new MenuItem();
     this.ciChatText_Filter_Events = new MenuItem();
     this.ciChatText_Filter_Errors = new MenuItem();
     this.ciChatText_Filter_Game = new MenuItem();
     this.ciChatText_Filter_Friends = new MenuItem();
     this.ciChatText_Filter_Clan = new MenuItem();
     this.ciChatText_Filter_Admin = new MenuItem();
     this.ciChatText_Filter_Other = new MenuItem();
     this.menuItem4 = new MenuItem();
     this.ciChatText_Filters_Reset = new MenuItem();
     this.miShowColumns = new MenuItem();
     this.ciChatText_ShowEmotes = new MenuItem();
     this.menuItm15 = new MenuItem();
     this.ciChatText_PrivateMsg = new MenuItem();
     this.ciChatText_Ignore = new MenuItem();
     this.ciChatText_Unignore = new MenuItem();
     this.ciChatText_ViewRank = new MenuItem();
     this.ciChatText_WebStats = new MenuItem();
     this.ciChatText_ViewPlayer = new MenuItem();
     this.ciChatText_Replays = new MenuItem();
     this.menuItem6 = new MenuItem();
     this.ciChatText_FriendInvite = new MenuItem();
     this.ciChatText_FriendRemove = new MenuItem();
     this.menuItem11 = new MenuItem();
     this.ciChatText_ClanInvite = new MenuItem();
     this.ciChatText_ClanRequest = new MenuItem();
     this.ciChatText_ClanRemove = new MenuItem();
     this.ciChatText_Promote = new MenuItem();
     this.ciChatText_Demote = new MenuItem();
     this.ciChatText_ViewClan = new MenuItem();
     this.ciChatText_LeaveClan = new MenuItem();
     this.menuItem18 = new MenuItem();
     this.ciChatText_Kick = new MenuItem();
     this.ciChatText_Ban = new MenuItem();
     this.menuItem12 = new MenuItem();
     this.ciChatText_Solution = new MenuItem();
     this.miTranslate = new MenuItem();
     this.menuItem23 = new MenuItem();
     this.menuItem24 = new MenuItem();
     this.menuItem25 = new MenuItem();
     this.menuItem26 = new MenuItem();
     this.menuItem27 = new MenuItem();
     this.menuItem28 = new MenuItem();
     this.menuItem29 = new MenuItem();
     this.gpgContextMenuEmote = new GPGContextMenu();
     this.ciEmote_Manager = new MenuItem();
     this.menuItem13 = new MenuItem();
     this.ciEmote_Hide = new MenuItem();
     this.ciEmote_Share = new MenuItem();
     this.ciEmote_Animate = new MenuItem();
     this.menuItem9 = new MenuItem();
     this.ciEmote_Delete = new MenuItem();
     this.gpgPanel1 = new GPGPanel();
     this.splitContainerChatAndInput.Panel1.SuspendLayout();
     this.splitContainerChatAndInput.Panel2.SuspendLayout();
     this.splitContainerChatAndInput.SuspendLayout();
     this.textBoxMsg.Properties.BeginInit();
     this.gpgChatGrid.BeginInit();
     this.gvChat.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.gpgPanel1.SuspendLayout();
     base.SuspendLayout();
     this.splitContainerChatAndInput.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerChatAndInput.BackColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.splitContainerChatAndInput.Location = new Point(2, 2);
     this.splitContainerChatAndInput.Name = "splitContainerChatAndInput";
     this.splitContainerChatAndInput.Orientation = Orientation.Horizontal;
     this.splitContainerChatAndInput.Panel1.Controls.Add(this.gpgTextListCommands);
     this.splitContainerChatAndInput.Panel1.Controls.Add(this.gpgChatGrid);
     this.splitContainerChatAndInput.Panel2.Controls.Add(this.textBoxMsg);
     this.splitContainerChatAndInput.Size = new Size(0x193, 0xe2);
     this.splitContainerChatAndInput.SplitterDistance = 0xc4;
     this.splitContainerChatAndInput.SplitterWidth = 2;
     this.splitContainerChatAndInput.TabIndex = 1;
     this.gpgTextListCommands.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgTextListCommands.AnchorControl = this.textBoxMsg;
     this.gpgTextListCommands.AutoScroll = true;
     this.gpgTextListCommands.AutoSize = true;
     this.gpgTextListCommands.BackColor = Color.Black;
     this.gpgTextListCommands.Location = new Point(0, 180);
     this.gpgTextListCommands.Margin = new Padding(0);
     this.gpgTextListCommands.MaxLines = 6;
     this.gpgTextListCommands.Name = "gpgTextListCommands";
     this.gpgTextListCommands.SelectedIndex = -1;
     this.gpgTextListCommands.Size = new Size(0x193, 20);
     this.gpgTextListCommands.TabIndex = 14;
     this.gpgTextListCommands.TextLines = null;
     this.gpgTextListCommands.Visible = false;
     this.textBoxMsg.BorderColor = Color.White;
     this.textBoxMsg.Dock = DockStyle.Fill;
     this.textBoxMsg.Location = new Point(0, 0);
     this.textBoxMsg.Name = "textBoxMsg";
     this.textBoxMsg.Properties.AcceptsReturn = false;
     this.textBoxMsg.Properties.Appearance.BackColor = Color.Black;
     this.textBoxMsg.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.textBoxMsg.Properties.Appearance.ForeColor = Color.White;
     this.textBoxMsg.Properties.Appearance.Options.UseBackColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseForeColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x2e, 0x2e, 0x49);
     this.textBoxMsg.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.textBoxMsg.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.textBoxMsg.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.BorderStyle = BorderStyles.NoBorder;
     this.textBoxMsg.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.textBoxMsg.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.textBoxMsg.Properties.MaxLength = 0x400;
     this.textBoxMsg.Size = new Size(0x193, 0x1c);
     this.textBoxMsg.TabIndex = 0;
     this.textBoxMsg.EditValueChanging += new ChangingEventHandler(this.textBoxMsg_EditValueChanging);
     this.textBoxMsg.KeyDown += new KeyEventHandler(this.textBoxMsg_KeyDown);
     this.gpgChatGrid.CustomizeStyle = true;
     this.gpgChatGrid.Dock = DockStyle.Fill;
     this.gpgChatGrid.EmbeddedNavigator.Name = "";
     this.gpgChatGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgChatGrid.IgnoreMouseWheel = false;
     this.gpgChatGrid.Location = new Point(0, 0);
     this.gpgChatGrid.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgChatGrid.LookAndFeel.Style = LookAndFeelStyle.UltraFlat;
     this.gpgChatGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgChatGrid.MainView = this.gvChat;
     this.gpgChatGrid.Name = "gpgChatGrid";
     this.gpgChatGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgChatGrid.ShowOnlyPredefinedDetails = true;
     this.gpgChatGrid.Size = new Size(0x193, 0xc4);
     this.gpgChatGrid.TabIndex = 10;
     this.gpgChatGrid.ViewCollection.AddRange(new BaseView[] { this.gvChat });
     this.gvChat.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvChat.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvChat.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvChat.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvChat.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvChat.Appearance.Empty.BackColor = Color.Black;
     this.gvChat.Appearance.Empty.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvChat.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvChat.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvChat.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvChat.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvChat.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvChat.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvChat.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvChat.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvChat.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvChat.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedCell.Options.UseFont = true;
     this.gvChat.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvChat.Appearance.FocusedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.FocusedRow.BackColor2 = Color.Black;
     this.gvChat.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Bold);
     this.gvChat.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvChat.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.FocusedRow.Options.UseFont = true;
     this.gvChat.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvChat.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvChat.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvChat.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.FooterPanel.Options.UseFont = true;
     this.gvChat.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupButton.BackColor = Color.Black;
     this.gvChat.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvChat.Appearance.GroupButton.ForeColor = Color.White;
     this.gvChat.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvChat.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvChat.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvChat.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvChat.Appearance.GroupPanel.BackColor2 = Color.White;
     this.gvChat.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvChat.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupPanel.Options.UseFont = true;
     this.gvChat.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvChat.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.GroupRow.ForeColor = Color.White;
     this.gvChat.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvChat.Appearance.GroupRow.Options.UseFont = true;
     this.gvChat.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvChat.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvChat.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvChat.Appearance.HeaderPanel.ForeColor = Color.White;
     this.gvChat.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvChat.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvChat.Appearance.HideSelectionRow.BackColor = Color.Black;
     this.gvChat.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.HideSelectionRow.ForeColor = Color.Black;
     this.gvChat.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvChat.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvChat.Appearance.HorzLine.BackColor = Color.Yellow;
     this.gvChat.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.BackColor = Color.White;
     this.gvChat.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.Preview.ForeColor = Color.Purple;
     this.gvChat.Appearance.Preview.Options.UseBackColor = true;
     this.gvChat.Appearance.Preview.Options.UseFont = true;
     this.gvChat.Appearance.Preview.Options.UseForeColor = true;
     this.gvChat.Appearance.Row.BackColor = Color.Black;
     this.gvChat.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0xb2);
     this.gvChat.Appearance.Row.ForeColor = Color.White;
     this.gvChat.Appearance.Row.Options.UseBackColor = true;
     this.gvChat.Appearance.Row.Options.UseFont = true;
     this.gvChat.Appearance.Row.Options.UseForeColor = true;
     this.gvChat.Appearance.RowSeparator.BackColor = Color.Black;
     this.gvChat.Appearance.RowSeparator.BackColor2 = Color.Black;
     this.gvChat.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChat.Appearance.SelectedRow.BackColor2 = Color.Black;
     this.gvChat.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvChat.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvChat.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvChat.Appearance.SelectedRow.Options.UseFont = true;
     this.gvChat.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvChat.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvChat.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvChat.Appearance.TopNewRow.Options.UseFont = true;
     this.gvChat.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvChat.Appearance.VertLine.BackColor = Color.Yellow;
     this.gvChat.Appearance.VertLine.Options.UseBackColor = true;
     this.gvChat.BorderStyle = BorderStyles.NoBorder;
     this.gvChat.Columns.AddRange(new GridColumn[] { this.colIcon, this.colPlayer, this.colText, this.gcVisible, this.colTimeStamp });
     this.gvChat.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvChat.GridControl = this.gpgChatGrid;
     this.gvChat.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvChat.Name = "gvChat";
     this.gvChat.OptionsDetail.AllowZoomDetail = false;
     this.gvChat.OptionsDetail.EnableMasterViewMode = false;
     this.gvChat.OptionsDetail.ShowDetailTabs = false;
     this.gvChat.OptionsDetail.SmartDetailExpand = false;
     this.gvChat.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvChat.OptionsSelection.MultiSelect = true;
     this.gvChat.OptionsView.RowAutoHeight = true;
     this.gvChat.OptionsView.ShowColumnHeaders = false;
     this.gvChat.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvChat.OptionsView.ShowGroupPanel = false;
     this.gvChat.OptionsView.ShowHorzLines = false;
     this.gvChat.OptionsView.ShowIndicator = false;
     this.gvChat.OptionsView.ShowVertLines = false;
     this.gvChat.PaintStyleName = "Web";
     this.gvChat.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvChat_CustomDrawCell);
     this.gvChat.MouseDown += new MouseEventHandler(this.gvChat_MouseDown);
     this.gvChat.MouseUp += new MouseEventHandler(this.gvChat_MouseUp);
     this.gvChat.MouseMove += new MouseEventHandler(this.gvChat_MouseMove);
     this.gvChat.CalcRowHeight += new RowHeightEventHandler(this.gvChat_CalcRowHeight);
     this.colIcon.Caption = "<LOC>Player Icon";
     this.colIcon.ColumnEdit = this.rimPictureEdit3;
     this.colIcon.FieldName = "Icon";
     this.colIcon.MinWidth = 0x2a;
     this.colIcon.Name = "colIcon";
     this.colIcon.OptionsColumn.AllowEdit = false;
     this.colIcon.OptionsColumn.FixedWidth = true;
     this.colIcon.OptionsColumn.ReadOnly = true;
     this.colIcon.Width = 0x2a;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.colPlayer.Caption = "<LOC>Player Name";
     this.colPlayer.ColumnEdit = this.rimMemoEdit3;
     this.colPlayer.FieldName = "PlayerInfo";
     this.colPlayer.Name = "colPlayer";
     this.colPlayer.OptionsColumn.AllowEdit = false;
     this.colPlayer.OptionsColumn.FixedWidth = true;
     this.colPlayer.OptionsColumn.ReadOnly = true;
     this.colPlayer.Visible = true;
     this.colPlayer.VisibleIndex = 0;
     this.colPlayer.Width = 150;
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.colText.Caption = "<LOC>Chat Content";
     this.colText.ColumnEdit = this.rimMemoEdit3;
     this.colText.FieldName = "Text";
     this.colText.Name = "colText";
     this.colText.OptionsColumn.AllowEdit = false;
     this.colText.OptionsColumn.ReadOnly = true;
     this.colText.Visible = true;
     this.colText.VisibleIndex = 1;
     this.colText.Width = 0x188;
     this.gcVisible.Caption = "Visible";
     this.gcVisible.FieldName = "IsVisible";
     this.gcVisible.Name = "gcVisible";
     this.gcVisible.OptionsColumn.ShowInCustomizationForm = false;
     this.colTimeStamp.AppearanceCell.ForeColor = Color.White;
     this.colTimeStamp.AppearanceCell.Options.UseForeColor = true;
     this.colTimeStamp.Caption = "<LOC>Time";
     this.colTimeStamp.FieldName = "TimeStamp";
     this.colTimeStamp.Name = "colTimeStamp";
     this.colTimeStamp.OptionsColumn.AllowEdit = false;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.gpgContextMenuChatText.MenuItems.AddRange(new MenuItem[] { 
         this.ciChatText_Clear, this.ciChatText_Copy, this.ciChatText_Filter, this.miShowColumns, this.ciChatText_ShowEmotes, this.menuItm15, this.ciChatText_PrivateMsg, this.ciChatText_Ignore, this.ciChatText_Unignore, this.ciChatText_ViewRank, this.ciChatText_WebStats, this.ciChatText_ViewPlayer, this.ciChatText_Replays, this.menuItem6, this.ciChatText_FriendInvite, this.ciChatText_FriendRemove, 
         this.menuItem11, this.ciChatText_ClanInvite, this.ciChatText_ClanRequest, this.ciChatText_ClanRemove, this.ciChatText_Promote, this.ciChatText_Demote, this.ciChatText_ViewClan, this.ciChatText_LeaveClan, this.menuItem18, this.ciChatText_Kick, this.ciChatText_Ban, this.menuItem12, this.ciChatText_Solution, this.miTranslate
      });
     this.ciChatText_Clear.Index = 0;
     this.ciChatText_Clear.Text = "<LOC>Clear Chat";
     this.ciChatText_Clear.Click += new EventHandler(this.ciChatText_Clear_Click);
     this.ciChatText_Copy.Index = 1;
     this.ciChatText_Copy.Text = "<LOC>Copy to Clipboard";
     this.ciChatText_Copy.Click += new EventHandler(this.ciChatText_Copy_Click);
     this.ciChatText_Filter.Index = 2;
     this.ciChatText_Filter.MenuItems.AddRange(new MenuItem[] { this.ciChatText_Filter_Self, this.ciChatText_Filter_System, this.ciChatText_Filter_Events, this.ciChatText_Filter_Errors, this.ciChatText_Filter_Game, this.ciChatText_Filter_Friends, this.ciChatText_Filter_Clan, this.ciChatText_Filter_Admin, this.ciChatText_Filter_Other, this.menuItem4, this.ciChatText_Filters_Reset });
     this.ciChatText_Filter.Text = "<LOC>Filter by";
     this.ciChatText_Filter_Self.Checked = true;
     this.ciChatText_Filter_Self.Index = 0;
     this.ciChatText_Filter_Self.Text = "<LOC>Self";
     this.ciChatText_Filter_System.Checked = true;
     this.ciChatText_Filter_System.Index = 1;
     this.ciChatText_Filter_System.Text = "<LOC>System Messages";
     this.ciChatText_Filter_Events.Checked = true;
     this.ciChatText_Filter_Events.Index = 2;
     this.ciChatText_Filter_Events.Text = "<LOC>System Events";
     this.ciChatText_Filter_Errors.Checked = true;
     this.ciChatText_Filter_Errors.Index = 3;
     this.ciChatText_Filter_Errors.Text = "<LOC>System Errors";
     this.ciChatText_Filter_Game.Checked = true;
     this.ciChatText_Filter_Game.Index = 4;
     this.ciChatText_Filter_Game.Text = "<LOC>Game Events";
     this.ciChatText_Filter_Friends.Checked = true;
     this.ciChatText_Filter_Friends.Index = 5;
     this.ciChatText_Filter_Friends.Text = "<LOC>Friends";
     this.ciChatText_Filter_Clan.Checked = true;
     this.ciChatText_Filter_Clan.Index = 6;
     this.ciChatText_Filter_Clan.Text = "<LOC>Clan";
     this.ciChatText_Filter_Admin.Checked = true;
     this.ciChatText_Filter_Admin.Index = 7;
     this.ciChatText_Filter_Admin.Text = "<LOC>Admins";
     this.ciChatText_Filter_Other.Checked = true;
     this.ciChatText_Filter_Other.Index = 8;
     this.ciChatText_Filter_Other.Text = "<LOC>Other";
     this.menuItem4.Index = 9;
     this.menuItem4.Text = "-";
     this.ciChatText_Filters_Reset.Index = 10;
     this.ciChatText_Filters_Reset.Text = "<LOC>Reset Filters";
     this.miShowColumns.Index = 3;
     this.miShowColumns.Text = "<LOC>Show Columns";
     this.ciChatText_ShowEmotes.Index = 4;
     this.ciChatText_ShowEmotes.Text = "<LOC>Show emotes";
     this.menuItm15.Index = 5;
     this.menuItm15.Text = "-";
     this.ciChatText_PrivateMsg.Index = 6;
     this.ciChatText_PrivateMsg.Text = "<LOC>Send private message";
     this.ciChatText_Ignore.Index = 7;
     this.ciChatText_Ignore.Text = "<LOC>Ignore this player";
     this.ciChatText_Unignore.Index = 8;
     this.ciChatText_Unignore.Text = "<LOC>Unignore this player";
     this.ciChatText_ViewRank.Index = 9;
     this.ciChatText_ViewRank.Text = "<LOC>View in ranking ladder";
     this.ciChatText_ViewRank.Visible = false;
     this.ciChatText_WebStats.Index = 10;
     this.ciChatText_WebStats.Text = "<LOC>View web statistics";
     this.ciChatText_ViewPlayer.Index = 11;
     this.ciChatText_ViewPlayer.Text = "<LOC>View this player's profile";
     this.ciChatText_Replays.Index = 12;
     this.ciChatText_Replays.Text = "<LOC>View this player's Replays";
     this.menuItem6.Index = 13;
     this.menuItem6.Text = "-";
     this.ciChatText_FriendInvite.Index = 14;
     this.ciChatText_FriendInvite.Text = "<LOC>Invite this player to join Friends list";
     this.ciChatText_FriendRemove.Index = 15;
     this.ciChatText_FriendRemove.Text = "<LOC>Remove this player from Friends list";
     this.menuItem11.Index = 0x10;
     this.menuItem11.Text = "-";
     this.ciChatText_ClanInvite.Index = 0x11;
     this.ciChatText_ClanInvite.Text = "<LOC>Invite this player to join clan";
     this.ciChatText_ClanRequest.Index = 0x12;
     this.ciChatText_ClanRequest.Text = "<LOC>Request to join this player's clan";
     this.ciChatText_ClanRemove.Index = 0x13;
     this.ciChatText_ClanRemove.Text = "<LOC>Remove this player from clan";
     this.ciChatText_Promote.Index = 20;
     this.ciChatText_Promote.Text = "<LOC>Promote";
     this.ciChatText_Demote.Index = 0x15;
     this.ciChatText_Demote.Text = "<LOC>Demote";
     this.ciChatText_ViewClan.Index = 0x16;
     this.ciChatText_ViewClan.Text = "<LOC>View this clan's profile";
     this.ciChatText_LeaveClan.Index = 0x17;
     this.ciChatText_LeaveClan.Text = "<LOC>Leave clan";
     this.menuItem18.Index = 0x18;
     this.menuItem18.Text = "-";
     this.ciChatText_Kick.Index = 0x19;
     this.ciChatText_Kick.Text = "<LOC>Kick";
     this.ciChatText_Ban.Index = 0x1a;
     this.ciChatText_Ban.Text = "<LOC>Ban";
     this.menuItem12.Index = 0x1b;
     this.menuItem12.Text = "-";
     this.ciChatText_Solution.Index = 0x1c;
     this.ciChatText_Solution.Text = "<LOC>Point user to solution";
     this.miTranslate.Index = 0x1d;
     this.miTranslate.MenuItems.AddRange(new MenuItem[] { this.menuItem23, this.menuItem24, this.menuItem25, this.menuItem26, this.menuItem27, this.menuItem28, this.menuItem29 });
     this.miTranslate.Text = "Translate to English";
     this.miTranslate.Visible = false;
     this.menuItem23.Index = 0;
     this.menuItem23.Text = "German ";
     this.menuItem24.Index = 1;
     this.menuItem24.Text = "French";
     this.menuItem25.Index = 2;
     this.menuItem25.Text = "Itialian";
     this.menuItem26.Index = 3;
     this.menuItem26.Text = "Spanish";
     this.menuItem27.Index = 4;
     this.menuItem27.Text = "Russian";
     this.menuItem28.Index = 5;
     this.menuItem28.Text = "Korean";
     this.menuItem29.Index = 6;
     this.menuItem29.Text = "Japanese";
     this.gpgContextMenuEmote.MenuItems.AddRange(new MenuItem[] { this.ciEmote_Manager, this.menuItem13, this.ciEmote_Hide, this.ciEmote_Share, this.ciEmote_Animate, this.menuItem9, this.ciEmote_Delete });
     this.ciEmote_Manager.Index = 0;
     this.ciEmote_Manager.Text = "<LOC>Emote manager...";
     this.menuItem13.Index = 1;
     this.menuItem13.Text = "-";
     this.ciEmote_Hide.Index = 2;
     this.ciEmote_Hide.Text = "<LOC>Hide emotes";
     this.ciEmote_Share.Index = 3;
     this.ciEmote_Share.Text = "<LOC>Share emotes";
     this.ciEmote_Animate.Index = 4;
     this.ciEmote_Animate.Text = "<LOC>Animate emotes";
     this.menuItem9.Index = 5;
     this.menuItem9.Text = "-";
     this.ciEmote_Delete.Index = 6;
     this.ciEmote_Delete.Text = "<LOC>Delete emote";
     this.gpgPanel1.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanel1.BorderThickness = 2;
     this.gpgPanel1.Controls.Add(this.splitContainerChatAndInput);
     this.gpgPanel1.Dock = DockStyle.Fill;
     this.gpgPanel1.DrawBorder = true;
     this.gpgPanel1.Location = new Point(0, 0);
     this.gpgPanel1.Name = "gpgPanel1";
     this.gpgPanel1.Size = new Size(0x197, 230);
     this.gpgPanel1.TabIndex = 2;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.gpgPanel1);
     base.Name = "ChatPanel";
     base.Size = new Size(0x197, 230);
     this.splitContainerChatAndInput.Panel1.ResumeLayout(false);
     this.splitContainerChatAndInput.Panel1.PerformLayout();
     this.splitContainerChatAndInput.Panel2.ResumeLayout(false);
     this.splitContainerChatAndInput.ResumeLayout(false);
     this.textBoxMsg.Properties.EndInit();
     this.gpgChatGrid.EndInit();
     this.gvChat.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimMemoEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.gpgPanel1.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 40
0
 private void InitializeComponent()
 {
     this.components = new Container();
     GridLevelNode node = new GridLevelNode();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(FrmPrivateChat));
     this.splitContainer1 = new SplitContainer();
     this.gpgChatGrid = new GPGChatGrid();
     this.gvPrivateChat = new GridView();
     this.colIcon = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.colPlayer = new GridColumn();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.colText = new GridColumn();
     this.gcVisible = new GridColumn();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.textBoxMsg = new GPGTextBox();
     this.msQuickButtons = new GPGMenuStrip(this.components);
     this.btnAddFriend = new ToolStripMenuItem();
     this.btnRemoveFriend = new ToolStripMenuItem();
     this.btnIgnore = new ToolStripMenuItem();
     this.btnClanInvite = new ToolStripMenuItem();
     this.btnInviteToTeam = new ToolStripMenuItem();
     this.btnMore = new ToolStripMenuItem();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.gpgChatGrid.BeginInit();
     this.gvPrivateChat.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.textBoxMsg.Properties.BeginInit();
     this.msQuickButtons.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x192, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.splitContainer1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainer1.FixedPanel = FixedPanel.Panel2;
     this.splitContainer1.IsSplitterFixed = true;
     this.splitContainer1.Location = new Point(12, 0x53);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = Orientation.Horizontal;
     this.splitContainer1.Panel1.Controls.Add(this.gpgChatGrid);
     base.ttDefault.SetSuperTip(this.splitContainer1.Panel1, null);
     this.splitContainer1.Panel2.Controls.Add(this.textBoxMsg);
     base.ttDefault.SetSuperTip(this.splitContainer1.Panel2, null);
     this.splitContainer1.Size = new Size(0x1b6, 0xcc);
     this.splitContainer1.SplitterDistance = 0xb2;
     this.splitContainer1.SplitterWidth = 1;
     base.ttDefault.SetSuperTip(this.splitContainer1, null);
     this.splitContainer1.TabIndex = 4;
     this.gpgChatGrid.CustomizeStyle = true;
     this.gpgChatGrid.Dock = DockStyle.Fill;
     this.gpgChatGrid.EmbeddedNavigator.Name = "";
     this.gpgChatGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgChatGrid.IgnoreMouseWheel = false;
     node.RelationName = "Level1";
     this.gpgChatGrid.LevelTree.Nodes.AddRange(new GridLevelNode[] { node });
     this.gpgChatGrid.Location = new Point(0, 0);
     this.gpgChatGrid.MainView = this.gvPrivateChat;
     this.gpgChatGrid.Name = "gpgChatGrid";
     this.gpgChatGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3 });
     this.gpgChatGrid.ShowOnlyPredefinedDetails = true;
     this.gpgChatGrid.Size = new Size(0x1b6, 0xb2);
     this.gpgChatGrid.TabIndex = 11;
     this.gpgChatGrid.ViewCollection.AddRange(new BaseView[] { this.gvPrivateChat });
     this.gvPrivateChat.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvPrivateChat.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvPrivateChat.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvPrivateChat.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.Empty.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.Empty.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPrivateChat.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvPrivateChat.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPrivateChat.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvPrivateChat.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPrivateChat.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPrivateChat.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPrivateChat.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvPrivateChat.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FocusedCell.Options.UseFont = true;
     this.gvPrivateChat.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.FocusedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvPrivateChat.Appearance.FocusedRow.BackColor2 = Color.Black;
     this.gvPrivateChat.Appearance.FocusedRow.Font = new Font("Arial", 9.75f, FontStyle.Bold);
     this.gvPrivateChat.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FocusedRow.Options.UseFont = true;
     this.gvPrivateChat.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvPrivateChat.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.FooterPanel.Options.UseFont = true;
     this.gvPrivateChat.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.GroupButton.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvPrivateChat.Appearance.GroupButton.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvPrivateChat.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvPrivateChat.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.GroupPanel.BackColor2 = Color.White;
     this.gvPrivateChat.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvPrivateChat.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.GroupPanel.Options.UseFont = true;
     this.gvPrivateChat.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvPrivateChat.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.GroupRow.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.GroupRow.Options.UseFont = true;
     this.gvPrivateChat.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvPrivateChat.Appearance.HeaderPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvPrivateChat.Appearance.HeaderPanel.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvPrivateChat.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvPrivateChat.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.HideSelectionRow.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPrivateChat.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvPrivateChat.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.HorzLine.BackColor = Color.Yellow;
     this.gvPrivateChat.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.Preview.BackColor = Color.White;
     this.gvPrivateChat.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.Preview.ForeColor = Color.Purple;
     this.gvPrivateChat.Appearance.Preview.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.Preview.Options.UseFont = true;
     this.gvPrivateChat.Appearance.Preview.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.Row.BackColor = Color.Black;
     this.gvPrivateChat.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0xb2);
     this.gvPrivateChat.Appearance.Row.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.Row.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.Row.Options.UseFont = true;
     this.gvPrivateChat.Appearance.Row.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.RowSeparator.BackColor = Color.White;
     this.gvPrivateChat.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvPrivateChat.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.SelectedRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvPrivateChat.Appearance.SelectedRow.BackColor2 = Color.Black;
     this.gvPrivateChat.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvPrivateChat.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvPrivateChat.Appearance.SelectedRow.Options.UseFont = true;
     this.gvPrivateChat.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvPrivateChat.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvPrivateChat.Appearance.TopNewRow.Options.UseFont = true;
     this.gvPrivateChat.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvPrivateChat.Appearance.VertLine.BackColor = Color.Yellow;
     this.gvPrivateChat.Appearance.VertLine.Options.UseBackColor = true;
     this.gvPrivateChat.BorderStyle = BorderStyles.NoBorder;
     this.gvPrivateChat.Columns.AddRange(new GridColumn[] { this.colIcon, this.colPlayer, this.colText, this.gcVisible });
     this.gvPrivateChat.GridControl = this.gpgChatGrid;
     this.gvPrivateChat.Name = "gvPrivateChat";
     this.gvPrivateChat.OptionsDetail.AllowZoomDetail = false;
     this.gvPrivateChat.OptionsDetail.EnableMasterViewMode = false;
     this.gvPrivateChat.OptionsDetail.ShowDetailTabs = false;
     this.gvPrivateChat.OptionsDetail.SmartDetailExpand = false;
     this.gvPrivateChat.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvPrivateChat.OptionsSelection.MultiSelect = true;
     this.gvPrivateChat.OptionsView.RowAutoHeight = true;
     this.gvPrivateChat.OptionsView.ShowColumnHeaders = false;
     this.gvPrivateChat.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvPrivateChat.OptionsView.ShowGroupPanel = false;
     this.gvPrivateChat.OptionsView.ShowHorzLines = false;
     this.gvPrivateChat.OptionsView.ShowIndicator = false;
     this.gvPrivateChat.OptionsView.ShowVertLines = false;
     this.gvPrivateChat.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvChat_CustomDrawCell);
     this.gvPrivateChat.MouseUp += new MouseEventHandler(this.gvChat_MouseUp);
     this.gvPrivateChat.CalcRowHeight += new RowHeightEventHandler(this.gvChat_CalcRowHeight);
     this.gvPrivateChat.MouseMove += new MouseEventHandler(this.gvChat_MouseMove);
     this.gvPrivateChat.MouseDown += new MouseEventHandler(this.gvChat_MouseDown);
     this.colIcon.Caption = "Player Icon";
     this.colIcon.ColumnEdit = this.rimPictureEdit3;
     this.colIcon.FieldName = "Icon";
     this.colIcon.Name = "colIcon";
     this.colIcon.OptionsColumn.AllowEdit = false;
     this.colIcon.OptionsColumn.FixedWidth = true;
     this.colIcon.OptionsColumn.ReadOnly = true;
     this.colIcon.Width = 40;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.colPlayer.Caption = "Player Name";
     this.colPlayer.ColumnEdit = this.rimMemoEdit3;
     this.colPlayer.FieldName = "PlayerInfo";
     this.colPlayer.Name = "colPlayer";
     this.colPlayer.OptionsColumn.AllowEdit = false;
     this.colPlayer.OptionsColumn.FixedWidth = true;
     this.colPlayer.OptionsColumn.ReadOnly = true;
     this.colPlayer.Visible = true;
     this.colPlayer.VisibleIndex = 0;
     this.colPlayer.Width = 150;
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.colText.Caption = "Chat Content";
     this.colText.ColumnEdit = this.rimMemoEdit3;
     this.colText.FieldName = "Text";
     this.colText.Name = "colText";
     this.colText.OptionsColumn.AllowEdit = false;
     this.colText.OptionsColumn.ReadOnly = true;
     this.colText.Visible = true;
     this.colText.VisibleIndex = 1;
     this.colText.Width = 0x120;
     this.gcVisible.Caption = "gcVisible";
     this.gcVisible.FieldName = "IsVisible";
     this.gcVisible.Name = "gcVisible";
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.textBoxMsg.Dock = DockStyle.Bottom;
     this.textBoxMsg.Location = new Point(0, 5);
     this.textBoxMsg.Name = "textBoxMsg";
     this.textBoxMsg.Properties.Appearance.BackColor = Color.Black;
     this.textBoxMsg.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.textBoxMsg.Properties.Appearance.ForeColor = Color.White;
     this.textBoxMsg.Properties.Appearance.Options.UseBackColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.Appearance.Options.UseForeColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.textBoxMsg.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.textBoxMsg.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.textBoxMsg.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.textBoxMsg.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.textBoxMsg.Properties.BorderStyle = BorderStyles.Simple;
     this.textBoxMsg.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.textBoxMsg.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.textBoxMsg.Properties.MaxLength = 300;
     this.textBoxMsg.Size = new Size(0x1b6, 20);
     this.textBoxMsg.TabIndex = 0;
     this.msQuickButtons.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.msQuickButtons.AutoSize = false;
     this.msQuickButtons.BackgroundImage = (Image) manager.GetObject("msQuickButtons.BackgroundImage");
     this.msQuickButtons.Dock = DockStyle.None;
     this.msQuickButtons.GripMargin = new Padding(0);
     this.msQuickButtons.ImageScalingSize = new Size(0x2d, 0x2d);
     this.msQuickButtons.Items.AddRange(new ToolStripItem[] { this.btnAddFriend, this.btnRemoveFriend, this.btnIgnore, this.btnClanInvite, this.btnInviteToTeam, this.btnMore });
     this.msQuickButtons.Location = new Point(9, 0xd1);
     this.msQuickButtons.Name = "msQuickButtons";
     this.msQuickButtons.Padding = new Padding(0, 0, 10, 0);
     this.msQuickButtons.RenderMode = ToolStripRenderMode.Professional;
     this.msQuickButtons.ShowItemToolTips = true;
     this.msQuickButtons.Size = new Size(0x1b9, 0x34);
     base.ttDefault.SetSuperTip(this.msQuickButtons, null);
     this.msQuickButtons.TabIndex = 7;
     this.msQuickButtons.Paint += new PaintEventHandler(this.msQuickButtons_Paint);
     this.msQuickButtons.SizeChanged += new EventHandler(this.msQuickButtons_SizeChanged);
     this.btnAddFriend.AutoSize = false;
     this.btnAddFriend.AutoToolTip = true;
     this.btnAddFriend.Image = (Image) manager.GetObject("btnAddFriend.Image");
     this.btnAddFriend.ImageScaling = ToolStripItemImageScaling.None;
     this.btnAddFriend.Name = "btnAddFriend";
     this.btnAddFriend.ShortcutKeys = Keys.F2;
     this.btnAddFriend.Size = new Size(0x25, 0x34);
     this.btnAddFriend.ToolTipText = "<LOC>Add to Friends List";
     this.btnAddFriend.Click += new EventHandler(this.btnAddFriend_Click);
     this.btnRemoveFriend.AutoSize = false;
     this.btnRemoveFriend.AutoToolTip = true;
     this.btnRemoveFriend.Image = (Image) manager.GetObject("btnRemoveFriend.Image");
     this.btnRemoveFriend.ImageScaling = ToolStripItemImageScaling.None;
     this.btnRemoveFriend.Name = "btnRemoveFriend";
     this.btnRemoveFriend.ShortcutKeys = Keys.F8;
     this.btnRemoveFriend.Size = new Size(0x25, 0x34);
     this.btnRemoveFriend.ToolTipText = "<LOC>Remove From Friends List";
     this.btnRemoveFriend.Click += new EventHandler(this.btnRemoveFriend_Click);
     this.btnIgnore.AutoSize = false;
     this.btnIgnore.AutoToolTip = true;
     this.btnIgnore.Image = (Image) manager.GetObject("btnIgnore.Image");
     this.btnIgnore.ImageScaling = ToolStripItemImageScaling.None;
     this.btnIgnore.Name = "btnIgnore";
     this.btnIgnore.ShortcutKeys = Keys.F7;
     this.btnIgnore.Size = new Size(0x25, 0x34);
     this.btnIgnore.ToolTipText = "<LOC>Ignore This Person";
     this.btnIgnore.Click += new EventHandler(this.btnIgnore_Click);
     this.btnClanInvite.AutoSize = false;
     this.btnClanInvite.AutoToolTip = true;
     this.btnClanInvite.Image = (Image) manager.GetObject("btnClanInvite.Image");
     this.btnClanInvite.ImageScaling = ToolStripItemImageScaling.None;
     this.btnClanInvite.Name = "btnClanInvite";
     this.btnClanInvite.ShortcutKeys = Keys.F8;
     this.btnClanInvite.Size = new Size(0x25, 0x34);
     this.btnClanInvite.ToolTipText = "<LOC>Invite To Clan";
     this.btnClanInvite.Click += new EventHandler(this.btnClanInvite_Click);
     this.btnInviteToTeam.AutoSize = false;
     this.btnInviteToTeam.AutoToolTip = true;
     this.btnInviteToTeam.Image = (Image) manager.GetObject("btnInviteToTeam.Image");
     this.btnInviteToTeam.ImageScaling = ToolStripItemImageScaling.None;
     this.btnInviteToTeam.Name = "btnInviteToTeam";
     this.btnInviteToTeam.ShortcutKeys = Keys.F8;
     this.btnInviteToTeam.Size = new Size(0x25, 0x34);
     this.btnInviteToTeam.ToolTipText = "<LOC>Invite To Arranged Team";
     this.btnInviteToTeam.Click += new EventHandler(this.btnInviteToTeam_Click);
     this.btnMore.AutoSize = false;
     this.btnMore.AutoToolTip = true;
     this.btnMore.Image = (Image) manager.GetObject("btnMore.Image");
     this.btnMore.ImageScaling = ToolStripItemImageScaling.None;
     this.btnMore.Name = "btnMore";
     this.btnMore.ShortcutKeys = Keys.F6;
     this.btnMore.Size = new Size(20, 0x34);
     this.btnMore.ToolTipText = "<LOC>More...";
     base.AutoScaleMode = AutoScaleMode.None;
     base.ClientSize = new Size(0x1cd, 0x156);
     base.Controls.Add(this.msQuickButtons);
     base.Controls.Add(this.splitContainer1);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(200, 0xdd);
     base.Name = "FrmPrivateChat";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "FrmPrivateChat";
     base.Controls.SetChildIndex(this.splitContainer1, 0);
     base.Controls.SetChildIndex(this.msQuickButtons, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.gpgChatGrid.EndInit();
     this.gvPrivateChat.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimMemoEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.textBoxMsg.Properties.EndInit();
     this.msQuickButtons.ResumeLayout(false);
     this.msQuickButtons.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 41
0
 private void InitializeComponent()
 {
     this.gpgGroupBoxResults = new GPGGroupBox();
     this.skinLabelPage = new SkinLabel();
     this.dgReplays = new GPGDataGrid();
     this.gvReplays = new GridView();
     this.colPlayerName = new GridColumn();
     this.colOpponent = new GridColumn();
     this.colTitle = new GridColumn();
     this.colMap = new GridColumn();
     this.colGameType = new GridColumn();
     this.colGameDate = new GridColumn();
     this.gcGameLength = new GridColumn();
     this.gcDownloads = new GridColumn();
     this.gcRating = new GridColumn();
     this.repositoryItemRatingStars = new RepositoryItemPictureEdit();
     this.gcChatLink = new GridColumn();
     this.repositoryItemChatLink = new RepositoryItemHyperLinkEdit();
     this.skinButtonStart = new SkinButton();
     this.skinButtonNext = new SkinButton();
     this.skinButtonPrevious = new SkinButton();
     this.gpgGroupBoxCriterial = new GPGGroupBox();
     this.gpgTextBoxKeywords = new GPGTextBox();
     this.comboBoxOpponentFaction = new System.Windows.Forms.ComboBox();
     this.gpgLabel7 = new GPGLabel();
     this.comboBoxPlayerFaction = new System.Windows.Forms.ComboBox();
     this.gpgLabel6 = new GPGLabel();
     this.comboBoxGameType = new System.Windows.Forms.ComboBox();
     this.gpgLabel5 = new GPGLabel();
     this.comboBoxMaps = new System.Windows.Forms.ComboBox();
     this.gpgLabelMap = new GPGLabel();
     this.dateEditEarliest = new DateEdit();
     this.dateEditLatest = new DateEdit();
     this.gpgLabel4 = new GPGLabel();
     this.gpgLabel3 = new GPGLabel();
     this.gpgLabel2 = new GPGLabel();
     this.gpgTextBoxPlayer = new GPGTextBox();
     this.gpgLabel1 = new GPGLabel();
     this.skinButtonSearch = new SkinButton();
     this.gpgContextMenuDownload = new GPGContextMenu();
     this.ciDownload_View = new MenuItem();
     this.ciDownload_Download = new MenuItem();
     this.gpgLabelTopRated = new GPGLabel();
     this.gpgLabelTopDownload = new GPGLabel();
     this.gpgLabelMostRecent = new GPGLabel();
     this.gpgGroupBoxReplayLists = new GPGGroupBox();
     this.gpgPanelReplayLists = new GPGPanel();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgGroupBoxResults.SuspendLayout();
     this.dgReplays.BeginInit();
     this.gvReplays.BeginInit();
     this.repositoryItemRatingStars.BeginInit();
     this.repositoryItemChatLink.BeginInit();
     this.gpgGroupBoxCriterial.SuspendLayout();
     this.gpgTextBoxKeywords.Properties.BeginInit();
     this.dateEditEarliest.Properties.BeginInit();
     this.dateEditLatest.Properties.BeginInit();
     this.gpgTextBoxPlayer.Properties.BeginInit();
     this.gpgGroupBoxReplayLists.SuspendLayout();
     this.gpgPanelReplayLists.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x284, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgGroupBoxResults.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgGroupBoxResults.Controls.Add(this.skinLabelPage);
     this.gpgGroupBoxResults.Controls.Add(this.dgReplays);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonStart);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonNext);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonPrevious);
     this.gpgGroupBoxResults.Location = new Point(12, 0x8f);
     this.gpgGroupBoxResults.Name = "gpgGroupBoxResults";
     this.gpgGroupBoxResults.Size = new Size(680, 0xd4);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxResults, null);
     this.gpgGroupBoxResults.TabIndex = 7;
     this.gpgGroupBoxResults.TabStop = false;
     this.gpgGroupBoxResults.Text = "<LOC>Search Results";
     this.skinLabelPage.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinLabelPage.AutoStyle = false;
     this.skinLabelPage.BackColor = Color.Transparent;
     this.skinLabelPage.DrawEdges = true;
     this.skinLabelPage.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabelPage.ForeColor = Color.White;
     this.skinLabelPage.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabelPage.IsStyled = false;
     this.skinLabelPage.Location = new Point(0x55, 0xb8);
     this.skinLabelPage.Name = "skinLabelPage";
     this.skinLabelPage.Size = new Size(550, 0x16);
     this.skinLabelPage.SkinBasePath = @"Controls\Background Label\BlackBar";
     base.ttDefault.SetSuperTip(this.skinLabelPage, null);
     this.skinLabelPage.TabIndex = 0x19;
     this.skinLabelPage.Text = "<LOC>No Results";
     this.skinLabelPage.TextAlign = ContentAlignment.MiddleCenter;
     this.skinLabelPage.TextPadding = new Padding(0);
     this.dgReplays.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.dgReplays.CustomizeStyle = false;
     this.dgReplays.EmbeddedNavigator.Name = "";
     this.dgReplays.Location = new Point(6, 0x13);
     this.dgReplays.MainView = this.gvReplays;
     this.dgReplays.Name = "dgReplays";
     this.dgReplays.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemRatingStars, this.repositoryItemChatLink });
     this.dgReplays.ShowOnlyPredefinedDetails = true;
     this.dgReplays.Size = new Size(0x29c, 0x9f);
     this.dgReplays.TabIndex = 0x18;
     this.dgReplays.ViewCollection.AddRange(new BaseView[] { this.gvReplays });
     this.gvReplays.Appearance.EvenRow.BackColor = Color.Black;
     this.gvReplays.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvReplays.Appearance.OddRow.BackColor = Color.Black;
     this.gvReplays.Appearance.OddRow.Options.UseBackColor = true;
     this.gvReplays.Appearance.Preview.ForeColor = Color.Silver;
     this.gvReplays.Appearance.Preview.Options.UseForeColor = true;
     this.gvReplays.Columns.AddRange(new GridColumn[] { this.colPlayerName, this.colOpponent, this.colTitle, this.colMap, this.colGameType, this.colGameDate, this.gcGameLength, this.gcDownloads, this.gcRating, this.gcChatLink });
     this.gvReplays.GridControl = this.dgReplays;
     this.gvReplays.GroupPanelText = "<LOC>Select a replay to watch.";
     this.gvReplays.Name = "gvReplays";
     this.gvReplays.OptionsBehavior.Editable = false;
     this.gvReplays.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvReplays.OptionsView.AutoCalcPreviewLineCount = true;
     this.gvReplays.OptionsView.RowAutoHeight = true;
     this.gvReplays.OptionsView.ShowPreview = true;
     this.gvReplays.PreviewFieldName = "GameInfo";
     this.gvReplays.MouseDown += new MouseEventHandler(this.gvReplays_MouseDown);
     this.gvReplays.DoubleClick += new EventHandler(this.gvReplays_DoubleClick);
     this.gvReplays.CustomColumnSort += new CustomColumnSortEventHandler(this.gvReplays_CustomColumnSort);
     this.gvReplays.MouseUp += new MouseEventHandler(this.gvReplays_MouseUp);
     this.colPlayerName.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.colPlayerName.AppearanceCell.ForeColor = Color.Green;
     this.colPlayerName.AppearanceCell.Options.UseFont = true;
     this.colPlayerName.AppearanceCell.Options.UseForeColor = true;
     this.colPlayerName.Caption = "<LOC>Player Name";
     this.colPlayerName.FieldName = "PlayerName";
     this.colPlayerName.Name = "colPlayerName";
     this.colPlayerName.Visible = true;
     this.colPlayerName.VisibleIndex = 0;
     this.colOpponent.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.colOpponent.AppearanceCell.ForeColor = Color.FromArgb(0xc0, 0, 0);
     this.colOpponent.AppearanceCell.Options.UseFont = true;
     this.colOpponent.AppearanceCell.Options.UseForeColor = true;
     this.colOpponent.Caption = "<LOC>Other Players";
     this.colOpponent.FieldName = "Opponent";
     this.colOpponent.Name = "colOpponent";
     this.colOpponent.Visible = true;
     this.colOpponent.VisibleIndex = 1;
     this.colTitle.Caption = "<LOC>Title";
     this.colTitle.FieldName = "Title";
     this.colTitle.Name = "colTitle";
     this.colTitle.Visible = true;
     this.colTitle.VisibleIndex = 3;
     this.colMap.Caption = "<LOC>Map";
     this.colMap.FieldName = "MapName";
     this.colMap.Name = "colMap";
     this.colMap.Visible = true;
     this.colMap.VisibleIndex = 2;
     this.colGameType.Caption = "<LOC>Game Type";
     this.colGameType.FieldName = "GameType";
     this.colGameType.Name = "colGameType";
     this.colGameType.Visible = true;
     this.colGameType.VisibleIndex = 4;
     this.colGameDate.Caption = "<LOC>Game Date";
     this.colGameDate.FieldName = "CreateDate";
     this.colGameDate.Name = "colGameDate";
     this.colGameDate.Visible = true;
     this.colGameDate.VisibleIndex = 5;
     this.gcGameLength.Caption = "<LOC>Game Length";
     this.gcGameLength.FieldName = "GameLength";
     this.gcGameLength.Name = "gcGameLength";
     this.gcGameLength.Visible = true;
     this.gcGameLength.VisibleIndex = 6;
     this.gcDownloads.AppearanceCell.Options.UseTextOptions = true;
     this.gcDownloads.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Center;
     this.gcDownloads.Caption = "<LOC>Downloads";
     this.gcDownloads.FieldName = "Downloads";
     this.gcDownloads.Name = "gcDownloads";
     this.gcDownloads.Visible = true;
     this.gcDownloads.VisibleIndex = 7;
     this.gcRating.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcRating.AppearanceCell.ForeColor = Color.Gold;
     this.gcRating.AppearanceCell.Options.UseFont = true;
     this.gcRating.AppearanceCell.Options.UseForeColor = true;
     this.gcRating.AppearanceCell.Options.UseTextOptions = true;
     this.gcRating.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Center;
     this.gcRating.Caption = "<LOC>Rating";
     this.gcRating.ColumnEdit = this.repositoryItemRatingStars;
     this.gcRating.FieldName = "RatingImage";
     this.gcRating.Name = "gcRating";
     this.gcRating.OptionsColumn.AllowSort = DefaultBoolean.True;
     this.gcRating.SortMode = ColumnSortMode.Custom;
     this.gcRating.Visible = true;
     this.gcRating.VisibleIndex = 8;
     this.repositoryItemRatingStars.Name = "repositoryItemRatingStars";
     this.gcChatLink.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Center;
     this.gcChatLink.AppearanceCell.TextOptions.VAlignment = VertAlignment.Center;
     this.gcChatLink.Caption = "<LOC>Link to Chat";
     this.gcChatLink.ColumnEdit = this.repositoryItemChatLink;
     this.gcChatLink.FieldName = "ChatLink";
     this.gcChatLink.ImageAlignment = StringAlignment.Center;
     this.gcChatLink.Name = "gcChatLink";
     this.gcChatLink.OptionsColumn.AllowSort = DefaultBoolean.False;
     this.gcChatLink.Visible = true;
     this.gcChatLink.VisibleIndex = 9;
     this.repositoryItemChatLink.Appearance.Options.UseTextOptions = true;
     this.repositoryItemChatLink.Appearance.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.Appearance.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.Options.UseTextOptions = true;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AutoHeight = false;
     this.repositoryItemChatLink.LinkColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.repositoryItemChatLink.Name = "repositoryItemChatLink";
     this.repositoryItemChatLink.SingleClick = true;
     this.skinButtonStart.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonStart.AutoStyle = true;
     this.skinButtonStart.BackColor = Color.Black;
     this.skinButtonStart.DialogResult = DialogResult.OK;
     this.skinButtonStart.DisabledForecolor = Color.Gray;
     this.skinButtonStart.DrawEdges = false;
     this.skinButtonStart.FocusColor = Color.Yellow;
     this.skinButtonStart.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonStart.ForeColor = Color.White;
     this.skinButtonStart.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonStart.IsStyled = true;
     this.skinButtonStart.Location = new Point(6, 0xb8);
     this.skinButtonStart.Name = "skinButtonStart";
     this.skinButtonStart.Size = new Size(40, 0x16);
     this.skinButtonStart.SkinBasePath = @"Controls\Button\First";
     base.ttDefault.SetSuperTip(this.skinButtonStart, null);
     this.skinButtonStart.TabIndex = 5;
     this.skinButtonStart.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonStart.TextPadding = new Padding(0);
     this.skinButtonStart.Click += new EventHandler(this.skinButtonStart_Click);
     this.skinButtonNext.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonNext.AutoStyle = true;
     this.skinButtonNext.BackColor = Color.Black;
     this.skinButtonNext.DialogResult = DialogResult.OK;
     this.skinButtonNext.DisabledForecolor = Color.Gray;
     this.skinButtonNext.DrawEdges = false;
     this.skinButtonNext.FocusColor = Color.Yellow;
     this.skinButtonNext.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonNext.ForeColor = Color.White;
     this.skinButtonNext.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonNext.IsStyled = true;
     this.skinButtonNext.Location = new Point(0x27a, 0xb8);
     this.skinButtonNext.Name = "skinButtonNext";
     this.skinButtonNext.Size = new Size(40, 0x16);
     this.skinButtonNext.SkinBasePath = @"Controls\Button\Next_End";
     base.ttDefault.SetSuperTip(this.skinButtonNext, null);
     this.skinButtonNext.TabIndex = 7;
     this.skinButtonNext.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonNext.TextPadding = new Padding(0);
     this.skinButtonNext.Click += new EventHandler(this.skinButtonNext_Click);
     this.skinButtonPrevious.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonPrevious.AutoStyle = true;
     this.skinButtonPrevious.BackColor = Color.Black;
     this.skinButtonPrevious.DialogResult = DialogResult.OK;
     this.skinButtonPrevious.DisabledForecolor = Color.Gray;
     this.skinButtonPrevious.DrawEdges = false;
     this.skinButtonPrevious.FocusColor = Color.Yellow;
     this.skinButtonPrevious.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonPrevious.ForeColor = Color.White;
     this.skinButtonPrevious.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonPrevious.IsStyled = true;
     this.skinButtonPrevious.Location = new Point(0x2e, 0xb8);
     this.skinButtonPrevious.Name = "skinButtonPrevious";
     this.skinButtonPrevious.Size = new Size(40, 0x16);
     this.skinButtonPrevious.SkinBasePath = @"Controls\Button\Previous";
     base.ttDefault.SetSuperTip(this.skinButtonPrevious, null);
     this.skinButtonPrevious.TabIndex = 6;
     this.skinButtonPrevious.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonPrevious.TextPadding = new Padding(0);
     this.skinButtonPrevious.Click += new EventHandler(this.skinButtonPrevious_Click);
     this.gpgGroupBoxCriterial.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgTextBoxKeywords);
     this.gpgGroupBoxCriterial.Controls.Add(this.comboBoxOpponentFaction);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel7);
     this.gpgGroupBoxCriterial.Controls.Add(this.comboBoxPlayerFaction);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel6);
     this.gpgGroupBoxCriterial.Controls.Add(this.comboBoxGameType);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel5);
     this.gpgGroupBoxCriterial.Controls.Add(this.comboBoxMaps);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabelMap);
     this.gpgGroupBoxCriterial.Controls.Add(this.dateEditEarliest);
     this.gpgGroupBoxCriterial.Controls.Add(this.dateEditLatest);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel4);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel3);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel2);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgTextBoxPlayer);
     this.gpgGroupBoxCriterial.Controls.Add(this.gpgLabel1);
     this.gpgGroupBoxCriterial.Controls.Add(this.skinButtonSearch);
     this.gpgGroupBoxCriterial.Location = new Point(12, 0x169);
     this.gpgGroupBoxCriterial.Name = "gpgGroupBoxCriterial";
     this.gpgGroupBoxCriterial.Size = new Size(680, 0xa7);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxCriterial, null);
     this.gpgGroupBoxCriterial.TabIndex = 8;
     this.gpgGroupBoxCriterial.TabStop = false;
     this.gpgGroupBoxCriterial.Text = "<LOC>Search Criteria";
     this.gpgTextBoxKeywords.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgTextBoxKeywords.Location = new Point(5, 0x8d);
     this.gpgTextBoxKeywords.Name = "gpgTextBoxKeywords";
     this.gpgTextBoxKeywords.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxKeywords.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxKeywords.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxKeywords.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxKeywords.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxKeywords.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxKeywords.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxKeywords.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxKeywords.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxKeywords.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxKeywords.Size = new Size(0x1d8, 20);
     this.gpgTextBoxKeywords.TabIndex = 0x18;
     this.comboBoxOpponentFaction.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.comboBoxOpponentFaction.BackColor = Color.Black;
     this.comboBoxOpponentFaction.DropDownStyle = ComboBoxStyle.DropDownList;
     this.comboBoxOpponentFaction.Enabled = false;
     this.comboBoxOpponentFaction.FlatStyle = FlatStyle.Flat;
     this.comboBoxOpponentFaction.FormattingEnabled = true;
     this.comboBoxOpponentFaction.ItemHeight = 13;
     this.comboBoxOpponentFaction.Location = new Point(0x156, 0x5c);
     this.comboBoxOpponentFaction.MaxDropDownItems = 12;
     this.comboBoxOpponentFaction.Name = "comboBoxOpponentFaction";
     this.comboBoxOpponentFaction.Size = new Size(0x87, 0x15);
     base.ttDefault.SetSuperTip(this.comboBoxOpponentFaction, null);
     this.comboBoxOpponentFaction.TabIndex = 0x17;
     this.gpgLabel7.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabel7.AutoSize = true;
     this.gpgLabel7.AutoStyle = true;
     this.gpgLabel7.Font = new Font("Arial", 9.75f);
     this.gpgLabel7.ForeColor = Color.White;
     this.gpgLabel7.IgnoreMouseWheel = false;
     this.gpgLabel7.IsStyled = false;
     this.gpgLabel7.Location = new Point(0x153, 0x49);
     this.gpgLabel7.Name = "gpgLabel7";
     this.gpgLabel7.Size = new Size(0x99, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel7, null);
     this.gpgLabel7.TabIndex = 0x16;
     this.gpgLabel7.Text = "<LOC>Opponent Faction";
     this.gpgLabel7.TextStyle = TextStyles.Title;
     this.comboBoxPlayerFaction.Anchor = AnchorStyles.Top;
     this.comboBoxPlayerFaction.BackColor = Color.Black;
     this.comboBoxPlayerFaction.DropDownStyle = ComboBoxStyle.DropDownList;
     this.comboBoxPlayerFaction.Enabled = false;
     this.comboBoxPlayerFaction.FlatStyle = FlatStyle.Flat;
     this.comboBoxPlayerFaction.FormattingEnabled = true;
     this.comboBoxPlayerFaction.ItemHeight = 13;
     this.comboBoxPlayerFaction.Location = new Point(0xae, 0x5c);
     this.comboBoxPlayerFaction.MaxDropDownItems = 12;
     this.comboBoxPlayerFaction.Name = "comboBoxPlayerFaction";
     this.comboBoxPlayerFaction.Size = new Size(0x7a, 0x15);
     base.ttDefault.SetSuperTip(this.comboBoxPlayerFaction, null);
     this.comboBoxPlayerFaction.TabIndex = 0x15;
     this.gpgLabel6.Anchor = AnchorStyles.Top;
     this.gpgLabel6.AutoSize = true;
     this.gpgLabel6.AutoStyle = true;
     this.gpgLabel6.Font = new Font("Arial", 9.75f);
     this.gpgLabel6.ForeColor = Color.White;
     this.gpgLabel6.IgnoreMouseWheel = false;
     this.gpgLabel6.IsStyled = false;
     this.gpgLabel6.Location = new Point(0xab, 0x48);
     this.gpgLabel6.Name = "gpgLabel6";
     this.gpgLabel6.Size = new Size(0x86, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel6, null);
     this.gpgLabel6.TabIndex = 20;
     this.gpgLabel6.Text = "<LOC>Player Faction";
     this.gpgLabel6.TextStyle = TextStyles.Title;
     this.comboBoxGameType.BackColor = Color.Black;
     this.comboBoxGameType.DropDownStyle = ComboBoxStyle.DropDownList;
     this.comboBoxGameType.FlatStyle = FlatStyle.Flat;
     this.comboBoxGameType.FormattingEnabled = true;
     this.comboBoxGameType.ItemHeight = 13;
     this.comboBoxGameType.Location = new Point(5, 0x5c);
     this.comboBoxGameType.MaxDropDownItems = 12;
     this.comboBoxGameType.Name = "comboBoxGameType";
     this.comboBoxGameType.Size = new Size(0x7a, 0x15);
     base.ttDefault.SetSuperTip(this.comboBoxGameType, null);
     this.comboBoxGameType.TabIndex = 0x13;
     this.comboBoxGameType.SelectedIndexChanged += new EventHandler(this.comboBoxGameType_SelectedIndexChanged);
     this.gpgLabel5.AutoSize = true;
     this.gpgLabel5.AutoStyle = true;
     this.gpgLabel5.Font = new Font("Arial", 9.75f);
     this.gpgLabel5.ForeColor = Color.White;
     this.gpgLabel5.IgnoreMouseWheel = false;
     this.gpgLabel5.IsStyled = false;
     this.gpgLabel5.Location = new Point(2, 0x48);
     this.gpgLabel5.Name = "gpgLabel5";
     this.gpgLabel5.Size = new Size(0x75, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel5, null);
     this.gpgLabel5.TabIndex = 0x12;
     this.gpgLabel5.Text = "<LOC>Game Type";
     this.gpgLabel5.TextStyle = TextStyles.Title;
     this.comboBoxMaps.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.comboBoxMaps.BackColor = Color.Black;
     this.comboBoxMaps.DropDownStyle = ComboBoxStyle.DropDownList;
     this.comboBoxMaps.FlatStyle = FlatStyle.Flat;
     this.comboBoxMaps.FormattingEnabled = true;
     this.comboBoxMaps.ItemHeight = 13;
     this.comboBoxMaps.Location = new Point(0x11b, 0x2b);
     this.comboBoxMaps.MaxDropDownItems = 12;
     this.comboBoxMaps.Name = "comboBoxMaps";
     this.comboBoxMaps.Size = new Size(0xc2, 0x15);
     base.ttDefault.SetSuperTip(this.comboBoxMaps, null);
     this.comboBoxMaps.TabIndex = 0x11;
     this.gpgLabelMap.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabelMap.AutoSize = true;
     this.gpgLabelMap.AutoStyle = true;
     this.gpgLabelMap.Font = new Font("Arial", 9.75f);
     this.gpgLabelMap.ForeColor = Color.White;
     this.gpgLabelMap.IgnoreMouseWheel = false;
     this.gpgLabelMap.IsStyled = false;
     this.gpgLabelMap.Location = new Point(280, 0x1a);
     this.gpgLabelMap.Name = "gpgLabelMap";
     this.gpgLabelMap.Size = new Size(0x4b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelMap, null);
     this.gpgLabelMap.TabIndex = 0x10;
     this.gpgLabelMap.Text = "<LOC>Map";
     this.gpgLabelMap.TextStyle = TextStyles.Title;
     this.dateEditEarliest.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.dateEditEarliest.EditValue = "";
     this.dateEditEarliest.Location = new Point(0x1f0, 0x2d);
     this.dateEditEarliest.Name = "dateEditEarliest";
     this.dateEditEarliest.Properties.AllowNullInput = DefaultBoolean.False;
     this.dateEditEarliest.Properties.Appearance.BackColor = Color.Black;
     this.dateEditEarliest.Properties.Appearance.BorderColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.dateEditEarliest.Properties.Appearance.ForeColor = Color.FromArgb(0xe0, 0xe0, 0xe0);
     this.dateEditEarliest.Properties.Appearance.Options.UseBackColor = true;
     this.dateEditEarliest.Properties.Appearance.Options.UseBorderColor = true;
     this.dateEditEarliest.Properties.Appearance.Options.UseForeColor = true;
     this.dateEditEarliest.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.dateEditEarliest.Properties.LookAndFeel.Style = LookAndFeelStyle.UltraFlat;
     this.dateEditEarliest.Properties.LookAndFeel.UseWindowsXPTheme = true;
     this.dateEditEarliest.Size = new Size(0xb1, 20);
     this.dateEditEarliest.TabIndex = 15;
     this.dateEditLatest.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.dateEditLatest.EditValue = "";
     this.dateEditLatest.Location = new Point(0x1f0, 0x5d);
     this.dateEditLatest.Name = "dateEditLatest";
     this.dateEditLatest.Properties.AllowNullInput = DefaultBoolean.False;
     this.dateEditLatest.Properties.Appearance.BackColor = Color.Black;
     this.dateEditLatest.Properties.Appearance.BorderColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.dateEditLatest.Properties.Appearance.ForeColor = Color.FromArgb(0xe0, 0xe0, 0xe0);
     this.dateEditLatest.Properties.Appearance.Options.UseBackColor = true;
     this.dateEditLatest.Properties.Appearance.Options.UseBorderColor = true;
     this.dateEditLatest.Properties.Appearance.Options.UseForeColor = true;
     this.dateEditLatest.Properties.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.dateEditLatest.Properties.LookAndFeel.Style = LookAndFeelStyle.UltraFlat;
     this.dateEditLatest.Properties.LookAndFeel.UseWindowsXPTheme = true;
     this.dateEditLatest.Size = new Size(0xb1, 20);
     this.dateEditLatest.TabIndex = 14;
     this.gpgLabel4.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabel4.AutoSize = true;
     this.gpgLabel4.AutoStyle = true;
     this.gpgLabel4.Font = new Font("Arial", 9.75f);
     this.gpgLabel4.ForeColor = Color.White;
     this.gpgLabel4.IgnoreMouseWheel = false;
     this.gpgLabel4.IsStyled = false;
     this.gpgLabel4.Location = new Point(0x1ed, 0x49);
     this.gpgLabel4.Name = "gpgLabel4";
     this.gpgLabel4.Size = new Size(0x49, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel4, null);
     this.gpgLabel4.TabIndex = 13;
     this.gpgLabel4.Text = "<LOC>And";
     this.gpgLabel4.TextStyle = TextStyles.Title;
     this.gpgLabel3.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabel3.AutoSize = true;
     this.gpgLabel3.AutoStyle = true;
     this.gpgLabel3.Font = new Font("Arial", 9.75f);
     this.gpgLabel3.ForeColor = Color.White;
     this.gpgLabel3.IgnoreMouseWheel = false;
     this.gpgLabel3.IsStyled = false;
     this.gpgLabel3.Location = new Point(0x1ed, 0x1a);
     this.gpgLabel3.Name = "gpgLabel3";
     this.gpgLabel3.Size = new Size(100, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel3, null);
     this.gpgLabel3.TabIndex = 11;
     this.gpgLabel3.Text = "<LOC>Between";
     this.gpgLabel3.TextStyle = TextStyles.Title;
     this.gpgLabel2.AutoSize = true;
     this.gpgLabel2.AutoStyle = true;
     this.gpgLabel2.Font = new Font("Arial", 9.75f);
     this.gpgLabel2.ForeColor = Color.White;
     this.gpgLabel2.IgnoreMouseWheel = false;
     this.gpgLabel2.IsStyled = false;
     this.gpgLabel2.Location = new Point(2, 0x7a);
     this.gpgLabel2.Name = "gpgLabel2";
     this.gpgLabel2.Size = new Size(0x6b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel2, null);
     this.gpgLabel2.TabIndex = 9;
     this.gpgLabel2.Text = "<LOC>Keywords";
     this.gpgLabel2.TextStyle = TextStyles.Title;
     this.gpgTextBoxPlayer.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgTextBoxPlayer.Location = new Point(5, 0x2c);
     this.gpgTextBoxPlayer.Name = "gpgTextBoxPlayer";
     this.gpgTextBoxPlayer.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxPlayer.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxPlayer.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxPlayer.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxPlayer.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxPlayer.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxPlayer.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxPlayer.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxPlayer.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxPlayer.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxPlayer.Size = new Size(0x105, 20);
     this.gpgTextBoxPlayer.TabIndex = 0;
     this.gpgLabel1.AutoSize = true;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.Font = new Font("Arial", 9.75f);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(2, 0x1a);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0x7d, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 7;
     this.gpgLabel1.Text = "<LOC>Player Name";
     this.gpgLabel1.TextStyle = TextStyles.Title;
     this.skinButtonSearch.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.skinButtonSearch.AutoStyle = true;
     this.skinButtonSearch.BackColor = Color.Black;
     this.skinButtonSearch.DialogResult = DialogResult.OK;
     this.skinButtonSearch.DisabledForecolor = Color.Gray;
     this.skinButtonSearch.DrawEdges = true;
     this.skinButtonSearch.FocusColor = Color.Yellow;
     this.skinButtonSearch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearch.ForeColor = Color.White;
     this.skinButtonSearch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearch.IsStyled = true;
     this.skinButtonSearch.Location = new Point(0x224, 0x87);
     this.skinButtonSearch.Name = "skinButtonSearch";
     this.skinButtonSearch.Size = new Size(0x7d, 0x1a);
     this.skinButtonSearch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonSearch, null);
     this.skinButtonSearch.TabIndex = 4;
     this.skinButtonSearch.Text = "<LOC>Search";
     this.skinButtonSearch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearch.TextPadding = new Padding(0);
     this.skinButtonSearch.Click += new EventHandler(this.skinButtonSearch_Click);
     this.gpgContextMenuDownload.MenuItems.AddRange(new MenuItem[] { this.ciDownload_View, this.ciDownload_Download });
     this.ciDownload_View.Index = 0;
     this.ciDownload_View.Text = "<LOC>View info";
     this.ciDownload_View.Click += new EventHandler(this.ciDownload_View_Click);
     this.ciDownload_Download.Index = 1;
     this.ciDownload_Download.Text = "<LOC>Download";
     this.ciDownload_Download.Click += new EventHandler(this.ciDownload_Download_Click);
     this.gpgLabelTopRated.AutoSize = true;
     this.gpgLabelTopRated.AutoStyle = true;
     this.gpgLabelTopRated.Font = new Font("Arial", 9.75f);
     this.gpgLabelTopRated.ForeColor = Color.White;
     this.gpgLabelTopRated.IgnoreMouseWheel = false;
     this.gpgLabelTopRated.IsStyled = false;
     this.gpgLabelTopRated.Location = new Point(3, 0);
     this.gpgLabelTopRated.Name = "gpgLabelTopRated";
     this.gpgLabelTopRated.Size = new Size(0x7f, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelTopRated, null);
     this.gpgLabelTopRated.TabIndex = 9;
     this.gpgLabelTopRated.Text = "<LOC>Top 10 Rated";
     this.gpgLabelTopRated.TextStyle = TextStyles.Link;
     this.gpgLabelTopRated.Visible = false;
     this.gpgLabelTopDownload.Anchor = AnchorStyles.Top;
     this.gpgLabelTopDownload.AutoSize = true;
     this.gpgLabelTopDownload.AutoStyle = true;
     this.gpgLabelTopDownload.Font = new Font("Arial", 9.75f);
     this.gpgLabelTopDownload.ForeColor = Color.White;
     this.gpgLabelTopDownload.IgnoreMouseWheel = false;
     this.gpgLabelTopDownload.IsStyled = false;
     this.gpgLabelTopDownload.Location = new Point(0xf3, 0);
     this.gpgLabelTopDownload.Name = "gpgLabelTopDownload";
     this.gpgLabelTopDownload.Size = new Size(0x9c, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelTopDownload, null);
     this.gpgLabelTopDownload.TabIndex = 10;
     this.gpgLabelTopDownload.Text = "<LOC>Top 10 Downloads";
     this.gpgLabelTopDownload.TextStyle = TextStyles.Link;
     this.gpgLabelTopDownload.Visible = false;
     this.gpgLabelMostRecent.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabelMostRecent.AutoSize = true;
     this.gpgLabelMostRecent.AutoStyle = true;
     this.gpgLabelMostRecent.Font = new Font("Arial", 9.75f);
     this.gpgLabelMostRecent.ForeColor = Color.White;
     this.gpgLabelMostRecent.IgnoreMouseWheel = false;
     this.gpgLabelMostRecent.IsStyled = false;
     this.gpgLabelMostRecent.Location = new Point(490, 0);
     this.gpgLabelMostRecent.Name = "gpgLabelMostRecent";
     this.gpgLabelMostRecent.Size = new Size(0xaf, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelMostRecent, null);
     this.gpgLabelMostRecent.TabIndex = 11;
     this.gpgLabelMostRecent.Text = "<LOC>Most Recent Replays";
     this.gpgLabelMostRecent.TextStyle = TextStyles.Link;
     this.gpgLabelMostRecent.Visible = false;
     this.gpgGroupBoxReplayLists.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgGroupBoxReplayLists.Controls.Add(this.gpgPanelReplayLists);
     this.gpgGroupBoxReplayLists.Location = new Point(12, 0x4c);
     this.gpgGroupBoxReplayLists.Name = "gpgGroupBoxReplayLists";
     this.gpgGroupBoxReplayLists.Size = new Size(680, 0x3d);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxReplayLists, null);
     this.gpgGroupBoxReplayLists.TabIndex = 12;
     this.gpgGroupBoxReplayLists.TabStop = false;
     this.gpgGroupBoxReplayLists.Text = "<LOC>Replay Lists";
     this.gpgPanelReplayLists.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgPanelReplayLists.AutoScroll = true;
     this.gpgPanelReplayLists.Controls.Add(this.gpgLabelTopRated);
     this.gpgPanelReplayLists.Controls.Add(this.gpgLabelMostRecent);
     this.gpgPanelReplayLists.Controls.Add(this.gpgLabelTopDownload);
     this.gpgPanelReplayLists.Location = new Point(5, 0x10);
     this.gpgPanelReplayLists.Name = "gpgPanelReplayLists";
     this.gpgPanelReplayLists.Size = new Size(0x29c, 0x27);
     base.ttDefault.SetSuperTip(this.gpgPanelReplayLists, null);
     this.gpgPanelReplayLists.TabIndex = 12;
     base.AcceptButton = this.skinButtonSearch;
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x2bf, 0x23e);
     base.Controls.Add(this.gpgGroupBoxReplayLists);
     base.Controls.Add(this.gpgGroupBoxCriterial);
     base.Controls.Add(this.gpgGroupBoxResults);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x283, 0x1e1);
     base.Name = "DlgSearchReplays";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Replay Vault";
     base.Controls.SetChildIndex(this.gpgGroupBoxResults, 0);
     base.Controls.SetChildIndex(this.gpgGroupBoxCriterial, 0);
     base.Controls.SetChildIndex(this.gpgGroupBoxReplayLists, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgGroupBoxResults.ResumeLayout(false);
     this.dgReplays.EndInit();
     this.gvReplays.EndInit();
     this.repositoryItemRatingStars.EndInit();
     this.repositoryItemChatLink.EndInit();
     this.gpgGroupBoxCriterial.ResumeLayout(false);
     this.gpgGroupBoxCriterial.PerformLayout();
     this.gpgTextBoxKeywords.Properties.EndInit();
     this.dateEditEarliest.Properties.EndInit();
     this.dateEditLatest.Properties.EndInit();
     this.gpgTextBoxPlayer.Properties.EndInit();
     this.gpgGroupBoxReplayLists.ResumeLayout(false);
     this.gpgPanelReplayLists.ResumeLayout(false);
     this.gpgPanelReplayLists.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 42
0
 private void InitializeComponent()
 {
     this.gpgLogGrid = new GPGChatGrid();
     this.gvLogView = new GridView();
     this.colTime = new GridColumn();
     this.repositoryItemTimeEdit1 = new RepositoryItemTimeEdit();
     this.colType = new GridColumn();
     this.colDescription = new GridColumn();
     this.colData = new GridColumn();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.riPopup = new RepositoryItemPopupContainerEdit();
     this.pcPropertyView = new PopupContainerControl();
     this.pgData = new PropertyGridControl();
     this.repositoryItemMemoExEdit1 = new RepositoryItemMemoExEdit();
     this.btnCancel = new GPGButton();
     this.gpgLogGrid.BeginInit();
     this.gvLogView.BeginInit();
     this.repositoryItemTimeEdit1.BeginInit();
     this.rimMemoEdit3.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.riPopup.BeginInit();
     this.pcPropertyView.BeginInit();
     this.pcPropertyView.SuspendLayout();
     this.pgData.BeginInit();
     this.repositoryItemMemoExEdit1.BeginInit();
     base.SuspendLayout();
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     this.gpgLogGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgLogGrid.CustomizeStyle = false;
     this.gpgLogGrid.EmbeddedNavigator.Name = "";
     this.gpgLogGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgLogGrid.IgnoreMouseWheel = false;
     this.gpgLogGrid.Location = new Point(13, 0x4c);
     this.gpgLogGrid.LookAndFeel.SkinName = "Money Twins";
     this.gpgLogGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgLogGrid.MainView = this.gvLogView;
     this.gpgLogGrid.Name = "gpgLogGrid";
     this.gpgLogGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3, this.riPopup, this.repositoryItemTimeEdit1, this.repositoryItemMemoExEdit1 });
     this.gpgLogGrid.ShowOnlyPredefinedDetails = true;
     this.gpgLogGrid.Size = new Size(0x268, 0x138);
     this.gpgLogGrid.TabIndex = 0x1c;
     this.gpgLogGrid.ViewCollection.AddRange(new BaseView[] { this.gvLogView });
     this.gvLogView.ActiveFilterString = "";
     this.gvLogView.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvLogView.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvLogView.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvLogView.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvLogView.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvLogView.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvLogView.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvLogView.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvLogView.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvLogView.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvLogView.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvLogView.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvLogView.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvLogView.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvLogView.Appearance.Empty.BackColor = Color.Black;
     this.gvLogView.Appearance.Empty.Options.UseBackColor = true;
     this.gvLogView.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvLogView.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvLogView.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvLogView.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvLogView.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvLogView.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvLogView.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvLogView.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvLogView.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvLogView.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvLogView.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvLogView.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvLogView.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvLogView.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvLogView.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvLogView.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvLogView.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvLogView.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvLogView.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvLogView.Appearance.FocusedCell.Options.UseFont = true;
     this.gvLogView.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvLogView.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvLogView.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvLogView.Appearance.FocusedRow.Font = new Font("Arial", 9.75f);
     this.gvLogView.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvLogView.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvLogView.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvLogView.Appearance.FocusedRow.Options.UseFont = true;
     this.gvLogView.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvLogView.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvLogView.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvLogView.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvLogView.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvLogView.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvLogView.Appearance.FooterPanel.Options.UseFont = true;
     this.gvLogView.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvLogView.Appearance.GroupButton.BackColor = Color.Black;
     this.gvLogView.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvLogView.Appearance.GroupButton.ForeColor = Color.White;
     this.gvLogView.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvLogView.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvLogView.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvLogView.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvLogView.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvLogView.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvLogView.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvLogView.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvLogView.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvLogView.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvLogView.Appearance.GroupPanel.BackColor2 = Color.Black;
     this.gvLogView.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvLogView.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvLogView.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvLogView.Appearance.GroupPanel.Options.UseFont = true;
     this.gvLogView.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvLogView.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvLogView.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.GroupRow.ForeColor = Color.White;
     this.gvLogView.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvLogView.Appearance.GroupRow.Options.UseFont = true;
     this.gvLogView.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvLogView.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvLogView.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvLogView.Appearance.HeaderPanel.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gvLogView.Appearance.HeaderPanel.ForeColor = Color.Black;
     this.gvLogView.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvLogView.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvLogView.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvLogView.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvLogView.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvLogView.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvLogView.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvLogView.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvLogView.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvLogView.Appearance.HorzLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvLogView.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvLogView.Appearance.Preview.BackColor = Color.White;
     this.gvLogView.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.Preview.ForeColor = Color.Purple;
     this.gvLogView.Appearance.Preview.Options.UseBackColor = true;
     this.gvLogView.Appearance.Preview.Options.UseFont = true;
     this.gvLogView.Appearance.Preview.Options.UseForeColor = true;
     this.gvLogView.Appearance.Row.BackColor = Color.Black;
     this.gvLogView.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0xb2);
     this.gvLogView.Appearance.Row.ForeColor = Color.White;
     this.gvLogView.Appearance.Row.Options.UseBackColor = true;
     this.gvLogView.Appearance.Row.Options.UseFont = true;
     this.gvLogView.Appearance.Row.Options.UseForeColor = true;
     this.gvLogView.Appearance.RowSeparator.BackColor = Color.White;
     this.gvLogView.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvLogView.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvLogView.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvLogView.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvLogView.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvLogView.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvLogView.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvLogView.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvLogView.Appearance.SelectedRow.Options.UseFont = true;
     this.gvLogView.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvLogView.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvLogView.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvLogView.Appearance.TopNewRow.Options.UseFont = true;
     this.gvLogView.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvLogView.Appearance.VertLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvLogView.Appearance.VertLine.Options.UseBackColor = true;
     this.gvLogView.BorderStyle = BorderStyles.NoBorder;
     this.gvLogView.Columns.AddRange(new GridColumn[] { this.colTime, this.colType, this.colDescription, this.colData });
     this.gvLogView.GridControl = this.gpgLogGrid;
     this.gvLogView.Name = "gvLogView";
     this.gvLogView.OptionsBehavior.AutoPopulateColumns = false;
     this.gvLogView.OptionsDetail.AllowZoomDetail = false;
     this.gvLogView.OptionsDetail.EnableMasterViewMode = false;
     this.gvLogView.OptionsDetail.ShowDetailTabs = false;
     this.gvLogView.OptionsDetail.SmartDetailExpand = false;
     this.gvLogView.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvLogView.OptionsSelection.MultiSelect = true;
     this.gvLogView.OptionsView.RowAutoHeight = true;
     this.colTime.Caption = "Time";
     this.colTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colTime.FieldName = "DateTime";
     this.colTime.Name = "colTime";
     this.colTime.OptionsColumn.AllowEdit = false;
     this.colTime.Visible = true;
     this.colTime.VisibleIndex = 0;
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton() });
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     this.colType.Caption = "Type";
     this.colType.FieldName = "LogType";
     this.colType.Name = "colType";
     this.colType.OptionsColumn.AllowEdit = false;
     this.colType.Visible = true;
     this.colType.VisibleIndex = 1;
     this.colDescription.Caption = "Description";
     this.colDescription.FieldName = "Description";
     this.colDescription.Name = "colDescription";
     this.colDescription.OptionsColumn.AllowEdit = false;
     this.colDescription.Visible = true;
     this.colDescription.VisibleIndex = 2;
     this.colData.Caption = "Data";
     this.colData.ColumnEdit = this.rimMemoEdit3;
     this.colData.FieldName = "Data";
     this.colData.Name = "colData";
     this.colData.Visible = true;
     this.colData.VisibleIndex = 3;
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.riPopup.AutoHeight = false;
     this.riPopup.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.riPopup.Name = "riPopup";
     this.riPopup.PopupControl = this.pcPropertyView;
     this.riPopup.Popup += new EventHandler(this.riPopup_Popup);
     this.pcPropertyView.Controls.Add(this.pgData);
     this.pcPropertyView.Location = new Point(13, 0xda);
     this.pcPropertyView.Name = "pcPropertyView";
     this.pcPropertyView.Size = new Size(0xdf, 180);
     this.pcPropertyView.TabIndex = 0x1f;
     this.pcPropertyView.Text = "popupContainerControl1";
     this.pgData.Dock = DockStyle.Fill;
     this.pgData.Location = new Point(0, 0);
     this.pgData.Name = "pgData";
     this.pgData.Size = new Size(0xdf, 180);
     this.pgData.TabIndex = 0;
     this.repositoryItemMemoExEdit1.AutoHeight = false;
     this.repositoryItemMemoExEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemMemoExEdit1.Name = "repositoryItemMemoExEdit1";
     this.btnCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnCancel.Appearance.ForeColor = Color.Black;
     this.btnCancel.Appearance.Options.UseForeColor = true;
     this.btnCancel.Location = new Point(0x20d, 0x18a);
     this.btnCancel.LookAndFeel.SkinName = "London Liquid Sky";
     this.btnCancel.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new Size(0x68, 0x17);
     this.btnCancel.TabIndex = 30;
     this.btnCancel.Text = "<LOC>Cancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new EventHandler(this.btnCancel_Click);
     base.AutoScaleMode = AutoScaleMode.None;
     base.ClientSize = new Size(640, 480);
     base.Controls.Add(this.pcPropertyView);
     base.Controls.Add(this.btnCancel);
     base.Controls.Add(this.gpgLogGrid);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     base.Name = "DlgLogWatcher";
     this.Text = "Log Watcher";
     base.Controls.SetChildIndex(this.gpgLogGrid, 0);
     base.Controls.SetChildIndex(this.btnCancel, 0);
     base.Controls.SetChildIndex(this.pcPropertyView, 0);
     this.gpgLogGrid.EndInit();
     this.gvLogView.EndInit();
     this.repositoryItemTimeEdit1.EndInit();
     this.rimMemoEdit3.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.riPopup.EndInit();
     this.pcPropertyView.EndInit();
     this.pcPropertyView.ResumeLayout(false);
     this.pgData.EndInit();
     this.repositoryItemMemoExEdit1.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 43
0
        public Result DataRefresh(int pageno)
        {
            #region Validation
            if (pageno < 1)
            {
                pageno = 1;
            }
            object[] param = new object[] {
                _custno, _pledgeno
            };
            #endregion

            #region Call server
            Result res = null;
            if (_remote != null)
            {
                gridControl1.DataSource = null;
                gridControl2.DataSource = null;

                gridControl2.RepositoryItems.Clear();
                gridControl1.RepositoryItems.Clear();

                res = _remote.Connection.Call(_remote.User.UserNo, 500, 500010, 500010, pageno - 1, _pagerows, param);
                if (res.ResultNo == 0)
                {
                    PageSet(pageno, res);
                    ISM.Template.FormUtility.GridLayoutGet(gridView1, res.Data.Tables[1], _layoutfilename);
                    gridControl2.DataSource = res.Data.Tables[2];

                    gridView2.Columns[0].Caption = "Харилцагчийн №";
                    gridView2.Columns[1].Caption = "Овог, Нэр";
                    gridView2.Columns[2].Caption = "Барьцааны №";
                    gridView2.Columns[3].Caption = "Тэмдэглэл";
                    gridView2.Columns[4].Caption = "Огноо";
                    gridView2.Columns[5].Caption = "Таг №";

                    gridView2.Columns[0].Visible = false;
                    gridView2.Columns[2].Visible = false;
                    gridView2.Columns[3].Visible = false;
                    gridView2.Columns[4].Visible = false;
                    gridView2.Columns[4].Visible = false;
                    gridView2.BestFitColumns();
                    if (firstrefresh == false)
                    {
                        #region Add picture column

                        RepositoryItemPictureEdit ri = new RepositoryItemPictureEdit();
                        gridControl1.RepositoryItems.Add(ri);
                        gridControl2.RepositoryItems.Add(ri);

                        DevExpress.XtraGrid.Columns.GridColumn delcol = new DevExpress.XtraGrid.Columns.GridColumn();
                        delcol.VisibleIndex           = gridView2.Columns.Count;
                        delcol.Caption                = "...";
                        delcol.FieldName              = string.Format("DELETE");
                        delcol.ColumnEdit             = ri;
                        delcol.UnboundType            = DevExpress.Data.UnboundColumnType.Object;
                        delcol.OptionsColumn.ReadOnly = true;
                        delcol.Width = 32;
                        gridView2.Columns.Add(delcol);

                        DevExpress.XtraGrid.Columns.GridColumn col = new DevExpress.XtraGrid.Columns.GridColumn();
                        col.VisibleIndex           = gridView1.Columns.Count;
                        col.Caption                = "...";
                        col.FieldName              = string.Format("PIC");
                        col.ColumnEdit             = ri;
                        col.UnboundType            = DevExpress.Data.UnboundColumnType.Object;
                        col.OptionsColumn.ReadOnly = true;
                        col.Width = 32;
                        gridView1.Columns.Add(col);

                        #endregion
                        firstrefresh = true;
                    }

                    DataColumnRefresh();

                    if (_pageno < _pagecount)
                    {
                        lblPage.Text = string.Format("Хуудас: {0}/{1}+", _pageno, _pagecount);
                    }
                    else
                    {
                        lblPage.Text = string.Format("Хуудас: {0}/{1}", _pageno, _pagecount);
                    }


                    DataTable dt0 = res.Data.Tables[0];
                    if (dt0.Rows.Count > 0)
                    {
                        memoEdit1.EditValue = Static.ToStr(dt0.Rows[0]["note"]);
                    }
                }
            }
            else
            {
                res = new Result(1000, "Internal Error: Remote object not set.");
            }
            #endregion

            return(res);
        }
Exemplo n.º 44
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(DlgContentManager));
     this.gpgPanelMyContent = new GPGPanel();
     this.splitContainerMyContent = new SplitContainer();
     this.treeViewMyContent = new TreeView();
     this.imageListContentTypes = new ImageList(this.components);
     this.gpgLabelMyContent = new GPGLabel();
     this.tabMyContent = new SkinButton();
     this.tabDownload = new SkinButton();
     this.tabUpload = new SkinButton();
     this.gpgPanelDownload = new GPGPanel();
     this.splitContainerDownload = new SplitContainer();
     this.treeViewDownloadType = new TreeView();
     this.treeViewSavedSearches = new TreeView();
     this.skinLabel1 = new SkinLabel();
     this.skinLabel2 = new SkinLabel();
     this.gpgGroupBoxResults = new SkinGroupPanel();
     this.skinButtonSearchNext = new SkinButton();
     this.skinLabelSearchPage = new SkinLabel();
     this.dataGridSearchResults = new GPGDataGrid();
     this.gvResults = new GridView();
     this.gcDownload = new GridColumn();
     this.gcName = new GridColumn();
     this.gcOwner = new GridColumn();
     this.gcVersion = new GridColumn();
     this.gcDate = new GridColumn();
     this.gcDownloads = new GridColumn();
     this.gcRating = new GridColumn();
     this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
     this.repositoryItemRatingStars = new RepositoryItemPictureEdit();
     this.repositoryItemChatLink = new RepositoryItemHyperLinkEdit();
     this.repositoryItemVersionLink = new RepositoryItemHyperLinkEdit();
     this.skinButtonSearchStart = new SkinButton();
     this.skinButtonSearchPrevious = new SkinButton();
     this.gpgGroupBoxCriteria = new SkinGroupPanel();
     this.skinButtonSaveSearch = new SkinButton();
     this.skinButtonRunSearch = new SkinButton();
     this.gpgPanelSearchCriteria = new GPGPanel();
     this.skinButtonSearchType = new SkinButton();
     this.gpgLabelSearchType = new GPGLabel();
     this.gpgTextBoxSearchCreator = new GPGTextBox();
     this.gpgLabel16 = new GPGLabel();
     this.gpgTextBoxSearchName = new GPGTextBox();
     this.gpgLabel1 = new GPGLabel();
     this.gpgTextBoxSearchKeywords = new GPGTextBox();
     this.gpgLabel21 = new GPGLabel();
     this.gpgPanelUpload = new GPGPanel();
     this.splitContainerUpload = new SplitContainer();
     this.gpgLabelUploadLocations = new GPGLabel();
     this.skinLabel4 = new SkinLabel();
     this.skinLabel3 = new SkinLabel();
     this.pictureBoxRefreshUploads = new PictureBox();
     this.treeViewUpload = new TreeView();
     this.gpgGroupBoxUploadVersion = new SkinGroupPanel();
     this.gpgPanelUploadVersion = new GPGPanel();
     this.gpgTextAreaVersionNotes = new GPGTextArea();
     this.gpgLabelUploadVersionNotes = new GPGLabel();
     this.gpgLabelUploadCurrentVersion = new GPGLabel();
     this.gpgGroupBoxUploadGeneral = new SkinGroupPanel();
     this.gpgPanelUploadGeneral = new GPGPanel();
     this.skinButtonDeleteUploadDependency = new SkinButton();
     this.skinButtonUploadDependency = new SkinButton();
     this.gpgTextBoxUploadSearchKeywords = new GPGTextBox();
     this.listBoxUploadDependencies = new ListBox();
     this.gpgLabel6 = new GPGLabel();
     this.gpgLabel9 = new GPGLabel();
     this.gpgLabel27 = new GPGLabel();
     this.gpgTextBoxUploadDesc = new GPGTextBox();
     this.gpgLabelUploadLocation = new GPGLabel();
     this.gpgTextBoxUploadName = new GPGTextBox();
     this.gpgLabel25 = new GPGLabel();
     this.gpgLabel29 = new GPGLabel();
     this.skinButtonDeleteUploadVersion = new SkinButton();
     this.skinButtonDeleteUploadAll = new SkinButton();
     this.skinButtonUpload = new SkinButton();
     this.gpgLabelNoUploadSelected = new GPGLabel();
     this.tabActivity = new SkinButton();
     this.msQuickButtons = new GPGMenuStrip(this.components);
     this.btnOptions = new ToolStripMenuItem();
     this.btnHelp = new ToolStripMenuItem();
     this.btnMapDiagnose = new ToolStripMenuItem();
     this.btnMore = new ToolStripMenuItem();
     this.gpgPanel2 = new GPGPanel();
     this.gpgPanelActivity = new GPGPanel();
     this.splitContainerActivity = new SplitContainer();
     this.gpgLabel4 = new GPGLabel();
     this.gpgLabel3 = new GPGLabel();
     this.gpgLabel2 = new GPGLabel();
     this.gpgPanelDownActivity = new GPGPanel();
     this.skinLabel5 = new SkinLabel();
     this.gpgLabel5 = new GPGLabel();
     this.gpgLabel7 = new GPGLabel();
     this.gpgLabel8 = new GPGLabel();
     this.gpgPanelUpActivity = new GPGPanel();
     this.skinLabel6 = new SkinLabel();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgPanelMyContent.SuspendLayout();
     this.splitContainerMyContent.Panel1.SuspendLayout();
     this.splitContainerMyContent.Panel2.SuspendLayout();
     this.splitContainerMyContent.SuspendLayout();
     this.gpgPanelDownload.SuspendLayout();
     this.splitContainerDownload.Panel1.SuspendLayout();
     this.splitContainerDownload.Panel2.SuspendLayout();
     this.splitContainerDownload.SuspendLayout();
     this.gpgGroupBoxResults.SuspendLayout();
     this.dataGridSearchResults.BeginInit();
     this.gvResults.BeginInit();
     this.repositoryItemPictureEdit1.BeginInit();
     this.repositoryItemRatingStars.BeginInit();
     this.repositoryItemChatLink.BeginInit();
     this.repositoryItemVersionLink.BeginInit();
     this.gpgGroupBoxCriteria.SuspendLayout();
     this.gpgPanelSearchCriteria.SuspendLayout();
     this.gpgTextBoxSearchCreator.Properties.BeginInit();
     this.gpgTextBoxSearchName.Properties.BeginInit();
     this.gpgTextBoxSearchKeywords.Properties.BeginInit();
     this.gpgPanelUpload.SuspendLayout();
     this.splitContainerUpload.Panel1.SuspendLayout();
     this.splitContainerUpload.Panel2.SuspendLayout();
     this.splitContainerUpload.SuspendLayout();
     ((ISupportInitialize) this.pictureBoxRefreshUploads).BeginInit();
     this.gpgGroupBoxUploadVersion.SuspendLayout();
     this.gpgPanelUploadVersion.SuspendLayout();
     this.gpgTextAreaVersionNotes.Properties.BeginInit();
     this.gpgGroupBoxUploadGeneral.SuspendLayout();
     this.gpgPanelUploadGeneral.SuspendLayout();
     this.gpgTextBoxUploadSearchKeywords.Properties.BeginInit();
     this.gpgTextBoxUploadDesc.Properties.BeginInit();
     this.gpgTextBoxUploadName.Properties.BeginInit();
     this.msQuickButtons.SuspendLayout();
     this.gpgPanelActivity.SuspendLayout();
     this.splitContainerActivity.Panel1.SuspendLayout();
     this.splitContainerActivity.Panel2.SuspendLayout();
     this.splitContainerActivity.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x3c5, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgPanelMyContent.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelMyContent.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelMyContent.BorderThickness = 2;
     this.gpgPanelMyContent.Controls.Add(this.splitContainerMyContent);
     this.gpgPanelMyContent.DrawBorder = false;
     this.gpgPanelMyContent.Location = new Point(12, 110);
     this.gpgPanelMyContent.Name = "gpgPanelMyContent";
     this.gpgPanelMyContent.Size = new Size(0x3e8, 0x25a);
     base.ttDefault.SetSuperTip(this.gpgPanelMyContent, null);
     this.gpgPanelMyContent.TabIndex = 7;
     this.splitContainerMyContent.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerMyContent.BackColor = Color.DarkGray;
     this.splitContainerMyContent.Location = new Point(2, 2);
     this.splitContainerMyContent.Name = "splitContainerMyContent";
     this.splitContainerMyContent.Panel1.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.splitContainerMyContent.Panel1.Controls.Add(this.treeViewMyContent);
     base.ttDefault.SetSuperTip(this.splitContainerMyContent.Panel1, null);
     this.splitContainerMyContent.Panel2.AutoScroll = true;
     this.splitContainerMyContent.Panel2.BackColor = Color.Black;
     this.splitContainerMyContent.Panel2.BackgroundImage = (Image) manager.GetObject("splitContainerMyContent.Panel2.BackgroundImage");
     this.splitContainerMyContent.Panel2.Controls.Add(this.gpgLabelMyContent);
     base.ttDefault.SetSuperTip(this.splitContainerMyContent.Panel2, null);
     this.splitContainerMyContent.Size = new Size(0x3e4, 0x256);
     this.splitContainerMyContent.SplitterDistance = 0xd8;
     this.splitContainerMyContent.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerMyContent, null);
     this.splitContainerMyContent.TabIndex = 2;
     this.treeViewMyContent.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.treeViewMyContent.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewMyContent.BorderStyle = BorderStyle.None;
     this.treeViewMyContent.ForeColor = Color.White;
     this.treeViewMyContent.HideSelection = false;
     this.treeViewMyContent.ImageIndex = 0;
     this.treeViewMyContent.ImageList = this.imageListContentTypes;
     this.treeViewMyContent.Location = new Point(0, 4);
     this.treeViewMyContent.Name = "treeViewMyContent";
     this.treeViewMyContent.SelectedImageIndex = 0;
     this.treeViewMyContent.Size = new Size(0xd9, 0x252);
     base.ttDefault.SetSuperTip(this.treeViewMyContent, null);
     this.treeViewMyContent.TabIndex = 1;
     this.treeViewMyContent.AfterSelect += new TreeViewEventHandler(this.treeViewMyContent_AfterSelect);
     this.imageListContentTypes.ImageStream = (ImageListStreamer) manager.GetObject("imageListContentTypes.ImageStream");
     this.imageListContentTypes.TransparentColor = Color.Transparent;
     this.imageListContentTypes.Images.SetKeyName(0, "icon_map_sm.png");
     this.imageListContentTypes.Images.SetKeyName(1, "icon_mod_sm.png");
     this.imageListContentTypes.Images.SetKeyName(2, "icon_mag_glass_sm.png");
     this.imageListContentTypes.Images.SetKeyName(3, "icon_saved_sm.png");
     this.imageListContentTypes.Images.SetKeyName(4, "icon_my_upload_sm.png");
     this.imageListContentTypes.Images.SetKeyName(5, "icon_avail_upload_sm.png");
     this.imageListContentTypes.Images.SetKeyName(6, "icon_replay_sm.png");
     this.imageListContentTypes.Images.SetKeyName(7, "icon_missing_sm.png");
     this.imageListContentTypes.Images.SetKeyName(8, "icon_tools_sm.png");
     this.imageListContentTypes.Images.SetKeyName(9, "icon_video_sm.png");
     this.gpgLabelMyContent.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelMyContent.AutoStyle = true;
     this.gpgLabelMyContent.BackColor = Color.Transparent;
     this.gpgLabelMyContent.Dock = DockStyle.Fill;
     this.gpgLabelMyContent.Font = new Font("Arial", 9.75f);
     this.gpgLabelMyContent.ForeColor = Color.White;
     this.gpgLabelMyContent.IgnoreMouseWheel = false;
     this.gpgLabelMyContent.IsStyled = false;
     this.gpgLabelMyContent.Location = new Point(0, 0);
     this.gpgLabelMyContent.Name = "gpgLabelMyContent";
     this.gpgLabelMyContent.Size = new Size(0x30a, 0x256);
     base.ttDefault.SetSuperTip(this.gpgLabelMyContent, null);
     this.gpgLabelMyContent.TabIndex = 0;
     this.gpgLabelMyContent.Text = "gpgLabel2";
     this.gpgLabelMyContent.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabelMyContent.TextStyle = TextStyles.Default;
     this.tabMyContent.AutoStyle = true;
     this.tabMyContent.BackColor = Color.Black;
     this.tabMyContent.ButtonState = 0;
     this.tabMyContent.DialogResult = DialogResult.OK;
     this.tabMyContent.DisabledForecolor = Color.Gray;
     this.tabMyContent.DrawColor = Color.White;
     this.tabMyContent.DrawEdges = true;
     this.tabMyContent.FocusColor = Color.Yellow;
     this.tabMyContent.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.tabMyContent.ForeColor = Color.White;
     this.tabMyContent.HorizontalScalingMode = ScalingModes.Tile;
     this.tabMyContent.IsStyled = true;
     this.tabMyContent.Location = new Point(0x84, 0x53);
     this.tabMyContent.Name = "tabMyContent";
     this.tabMyContent.Size = new Size(0x7a, 0x1c);
     this.tabMyContent.SkinBasePath = @"Dialog\ContentManager\TabLarge";
     base.ttDefault.SetSuperTip(this.tabMyContent, null);
     this.tabMyContent.TabIndex = 8;
     this.tabMyContent.TabStop = true;
     this.tabMyContent.Text = "<LOC>My Content";
     this.tabMyContent.TextAlign = ContentAlignment.MiddleLeft;
     this.tabMyContent.TextPadding = new Padding(6, 0, 0, 0);
     this.tabDownload.AutoStyle = true;
     this.tabDownload.BackColor = Color.Black;
     this.tabDownload.ButtonState = 0;
     this.tabDownload.DialogResult = DialogResult.OK;
     this.tabDownload.DisabledForecolor = Color.Gray;
     this.tabDownload.DrawColor = Color.White;
     this.tabDownload.DrawEdges = true;
     this.tabDownload.FocusColor = Color.Yellow;
     this.tabDownload.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.tabDownload.ForeColor = Color.White;
     this.tabDownload.HorizontalScalingMode = ScalingModes.Tile;
     this.tabDownload.IsStyled = true;
     this.tabDownload.Location = new Point(10, 0x53);
     this.tabDownload.Name = "tabDownload";
     this.tabDownload.Size = new Size(0x7a, 0x1c);
     this.tabDownload.SkinBasePath = @"Dialog\ContentManager\TabLarge";
     base.ttDefault.SetSuperTip(this.tabDownload, null);
     this.tabDownload.TabIndex = 9;
     this.tabDownload.TabStop = true;
     this.tabDownload.Text = "<LOC>Download";
     this.tabDownload.TextAlign = ContentAlignment.MiddleLeft;
     this.tabDownload.TextPadding = new Padding(6, 0, 0, 0);
     this.tabUpload.AutoStyle = true;
     this.tabUpload.BackColor = Color.Black;
     this.tabUpload.ButtonState = 0;
     this.tabUpload.DialogResult = DialogResult.OK;
     this.tabUpload.DisabledForecolor = Color.Gray;
     this.tabUpload.DrawColor = Color.White;
     this.tabUpload.DrawEdges = true;
     this.tabUpload.FocusColor = Color.Yellow;
     this.tabUpload.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.tabUpload.ForeColor = Color.White;
     this.tabUpload.HorizontalScalingMode = ScalingModes.Tile;
     this.tabUpload.IsStyled = true;
     this.tabUpload.Location = new Point(0xfe, 0x53);
     this.tabUpload.Name = "tabUpload";
     this.tabUpload.Size = new Size(0x7a, 0x1c);
     this.tabUpload.SkinBasePath = @"Dialog\ContentManager\TabLarge";
     base.ttDefault.SetSuperTip(this.tabUpload, null);
     this.tabUpload.TabIndex = 10;
     this.tabUpload.TabStop = true;
     this.tabUpload.Text = "<LOC>Upload";
     this.tabUpload.TextAlign = ContentAlignment.MiddleLeft;
     this.tabUpload.TextPadding = new Padding(6, 0, 0, 0);
     this.gpgPanelDownload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelDownload.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelDownload.BorderThickness = 2;
     this.gpgPanelDownload.Controls.Add(this.splitContainerDownload);
     this.gpgPanelDownload.DrawBorder = false;
     this.gpgPanelDownload.Location = new Point(12, 110);
     this.gpgPanelDownload.Name = "gpgPanelDownload";
     this.gpgPanelDownload.Size = new Size(0x3e8, 0x25a);
     base.ttDefault.SetSuperTip(this.gpgPanelDownload, null);
     this.gpgPanelDownload.TabIndex = 8;
     this.splitContainerDownload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerDownload.Location = new Point(2, 2);
     this.splitContainerDownload.Name = "splitContainerDownload";
     this.splitContainerDownload.Panel1.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.splitContainerDownload.Panel1.Controls.Add(this.treeViewDownloadType);
     this.splitContainerDownload.Panel1.Controls.Add(this.treeViewSavedSearches);
     this.splitContainerDownload.Panel1.Controls.Add(this.skinLabel1);
     this.splitContainerDownload.Panel1.Controls.Add(this.skinLabel2);
     base.ttDefault.SetSuperTip(this.splitContainerDownload.Panel1, null);
     this.splitContainerDownload.Panel2.BackgroundImage = (Image) manager.GetObject("splitContainerDownload.Panel2.BackgroundImage");
     this.splitContainerDownload.Panel2.Controls.Add(this.gpgGroupBoxResults);
     this.splitContainerDownload.Panel2.Controls.Add(this.gpgGroupBoxCriteria);
     base.ttDefault.SetSuperTip(this.splitContainerDownload.Panel2, null);
     this.splitContainerDownload.Size = new Size(0x3e4, 0x256);
     this.splitContainerDownload.SplitterDistance = 0xe1;
     this.splitContainerDownload.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerDownload, null);
     this.splitContainerDownload.TabIndex = 15;
     this.treeViewDownloadType.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.treeViewDownloadType.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewDownloadType.BorderStyle = BorderStyle.None;
     this.treeViewDownloadType.HideSelection = false;
     this.treeViewDownloadType.ImageIndex = 0;
     this.treeViewDownloadType.ImageList = this.imageListContentTypes;
     this.treeViewDownloadType.Location = new Point(0, 0x1a);
     this.treeViewDownloadType.Name = "treeViewDownloadType";
     this.treeViewDownloadType.SelectedImageIndex = 0;
     this.treeViewDownloadType.Size = new Size(0xe1, 0x80);
     base.ttDefault.SetSuperTip(this.treeViewDownloadType, null);
     this.treeViewDownloadType.TabIndex = 0;
     this.treeViewDownloadType.AfterSelect += new TreeViewEventHandler(this.treeViewDownloadType_AfterSelect);
     this.treeViewSavedSearches.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.treeViewSavedSearches.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewSavedSearches.BorderStyle = BorderStyle.None;
     this.treeViewSavedSearches.HideSelection = false;
     this.treeViewSavedSearches.ImageIndex = 0;
     this.treeViewSavedSearches.ImageList = this.imageListContentTypes;
     this.treeViewSavedSearches.Location = new Point(0, 180);
     this.treeViewSavedSearches.Name = "treeViewSavedSearches";
     this.treeViewSavedSearches.SelectedImageIndex = 0;
     this.treeViewSavedSearches.Size = new Size(0xe1, 0x1a2);
     base.ttDefault.SetSuperTip(this.treeViewSavedSearches, null);
     this.treeViewSavedSearches.TabIndex = 1;
     this.treeViewSavedSearches.AfterSelect += new TreeViewEventHandler(this.treeViewSavedSearches_AfterSelect);
     this.skinLabel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel1.AutoStyle = false;
     this.skinLabel1.BackColor = Color.Transparent;
     this.skinLabel1.DrawEdges = true;
     this.skinLabel1.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel1.ForeColor = Color.White;
     this.skinLabel1.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel1.IsStyled = false;
     this.skinLabel1.Location = new Point(0, 0x9a);
     this.skinLabel1.Name = "skinLabel1";
     this.skinLabel1.Size = new Size(0xe1, 20);
     this.skinLabel1.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel1, null);
     this.skinLabel1.TabIndex = 15;
     this.skinLabel1.Text = "<LOC>Saved Searches";
     this.skinLabel1.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel1.TextPadding = new Padding(0);
     this.skinLabel2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel2.AutoStyle = false;
     this.skinLabel2.BackColor = Color.Transparent;
     this.skinLabel2.DrawEdges = true;
     this.skinLabel2.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel2.ForeColor = Color.White;
     this.skinLabel2.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel2.IsStyled = false;
     this.skinLabel2.Location = new Point(0, 0);
     this.skinLabel2.Name = "skinLabel2";
     this.skinLabel2.Size = new Size(0xe1, 20);
     this.skinLabel2.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel2, null);
     this.skinLabel2.TabIndex = 0x10;
     this.skinLabel2.Text = "<LOC>Search For";
     this.skinLabel2.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel2.TextPadding = new Padding(0);
     this.gpgGroupBoxResults.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgGroupBoxResults.AutoStyle = false;
     this.gpgGroupBoxResults.BackColor = Color.Black;
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchNext);
     this.gpgGroupBoxResults.Controls.Add(this.skinLabelSearchPage);
     this.gpgGroupBoxResults.Controls.Add(this.dataGridSearchResults);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchStart);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchPrevious);
     this.gpgGroupBoxResults.CutCorner = false;
     this.gpgGroupBoxResults.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxResults.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxResults.IsStyled = true;
     this.gpgGroupBoxResults.Location = new Point(4, 0x7d);
     this.gpgGroupBoxResults.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxResults.Name = "gpgGroupBoxResults";
     this.gpgGroupBoxResults.Size = new Size(0x2f6, 0x1d4);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxResults, null);
     this.gpgGroupBoxResults.TabIndex = 0x10;
     this.gpgGroupBoxResults.Text = "<LOC>Search Results";
     this.gpgGroupBoxResults.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxResults.TextPadding = new Padding(8, 0, 0, 0);
     this.skinButtonSearchNext.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonSearchNext.AutoStyle = true;
     this.skinButtonSearchNext.BackColor = Color.Black;
     this.skinButtonSearchNext.ButtonState = 0;
     this.skinButtonSearchNext.DialogResult = DialogResult.OK;
     this.skinButtonSearchNext.DisabledForecolor = Color.Gray;
     this.skinButtonSearchNext.DrawColor = Color.White;
     this.skinButtonSearchNext.DrawEdges = false;
     this.skinButtonSearchNext.FocusColor = Color.Yellow;
     this.skinButtonSearchNext.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchNext.ForeColor = Color.White;
     this.skinButtonSearchNext.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchNext.IsStyled = true;
     this.skinButtonSearchNext.Location = new Point(0x2ca, 0x1ba);
     this.skinButtonSearchNext.Name = "skinButtonSearchNext";
     this.skinButtonSearchNext.Size = new Size(40, 0x16);
     this.skinButtonSearchNext.SkinBasePath = @"Controls\Button\Next_End";
     base.ttDefault.SetSuperTip(this.skinButtonSearchNext, null);
     this.skinButtonSearchNext.TabIndex = 7;
     this.skinButtonSearchNext.TabStop = true;
     this.skinButtonSearchNext.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchNext.TextPadding = new Padding(0);
     this.skinButtonSearchNext.Click += new EventHandler(this.skinButtonSearchNext_Click);
     this.skinLabelSearchPage.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinLabelSearchPage.AutoStyle = false;
     this.skinLabelSearchPage.BackColor = Color.Transparent;
     this.skinLabelSearchPage.DrawEdges = true;
     this.skinLabelSearchPage.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabelSearchPage.ForeColor = Color.White;
     this.skinLabelSearchPage.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabelSearchPage.IsStyled = false;
     this.skinLabelSearchPage.Location = new Point(0x54, 0x1ba);
     this.skinLabelSearchPage.Name = "skinLabelSearchPage";
     this.skinLabelSearchPage.Size = new Size(630, 0x16);
     this.skinLabelSearchPage.SkinBasePath = @"Controls\Background Label\BlackBar";
     base.ttDefault.SetSuperTip(this.skinLabelSearchPage, null);
     this.skinLabelSearchPage.TabIndex = 0x19;
     this.skinLabelSearchPage.Text = "<LOC>No Results";
     this.skinLabelSearchPage.TextAlign = ContentAlignment.MiddleCenter;
     this.skinLabelSearchPage.TextPadding = new Padding(0);
     this.dataGridSearchResults.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.dataGridSearchResults.CustomizeStyle = false;
     this.dataGridSearchResults.EmbeddedNavigator.Name = "";
     this.dataGridSearchResults.Location = new Point(4, 0x16);
     this.dataGridSearchResults.MainView = this.gvResults;
     this.dataGridSearchResults.Name = "dataGridSearchResults";
     this.dataGridSearchResults.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemRatingStars, this.repositoryItemChatLink, this.repositoryItemPictureEdit1, this.repositoryItemVersionLink });
     this.dataGridSearchResults.ShowOnlyPredefinedDetails = true;
     this.dataGridSearchResults.Size = new Size(750, 0x1a0);
     this.dataGridSearchResults.TabIndex = 0x18;
     this.dataGridSearchResults.ViewCollection.AddRange(new BaseView[] { this.gvResults });
     this.dataGridSearchResults.DoubleClick += new EventHandler(this.dataGridSearchResults_DoubleClick);
     this.gvResults.Appearance.EvenRow.BackColor = Color.Black;
     this.gvResults.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvResults.Appearance.OddRow.BackColor = Color.Black;
     this.gvResults.Appearance.OddRow.Options.UseBackColor = true;
     this.gvResults.Appearance.Preview.ForeColor = Color.Silver;
     this.gvResults.Appearance.Preview.Options.UseForeColor = true;
     this.gvResults.Appearance.SelectedRow.BackColor = Color.FromArgb(0x33, 0x33, 0x65);
     this.gvResults.Appearance.SelectedRow.BackColor2 = Color.Black;
     this.gvResults.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvResults.Columns.AddRange(new GridColumn[] { this.gcDownload, this.gcName, this.gcOwner, this.gcVersion, this.gcDate, this.gcDownloads, this.gcRating });
     this.gvResults.GridControl = this.dataGridSearchResults;
     this.gvResults.GroupPanelText = "<LOC>Drag a column here to group by it.";
     this.gvResults.Name = "gvResults";
     this.gvResults.OptionsBehavior.Editable = false;
     this.gvResults.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvResults.OptionsView.AutoCalcPreviewLineCount = true;
     this.gvResults.OptionsView.RowAutoHeight = true;
     this.gvResults.OptionsView.ShowPreview = true;
     this.gvResults.PreviewFieldName = "Description";
     this.gvResults.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvResults_CustomDrawCell);
     this.gvResults.MouseDown += new MouseEventHandler(this.gvResults_MouseDown);
     this.gvResults.MouseUp += new MouseEventHandler(this.gvResults_MouseUp);
     this.gvResults.MouseMove += new MouseEventHandler(this.gvResults_MouseMove);
     this.gvResults.CalcRowHeight += new RowHeightEventHandler(this.gvResults_CalcRowHeight);
     this.gcDownload.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDownload.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownload.Caption = "<LOC>Download";
     this.gcDownload.FieldName = "Download";
     this.gcDownload.Name = "gcDownload";
     this.gcDownload.ToolTip = "<LOC>Download";
     this.gcDownload.Visible = true;
     this.gcDownload.VisibleIndex = 0;
     this.gcName.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcName.AppearanceCell.Options.UseFont = true;
     this.gcName.AppearanceHeader.Options.UseTextOptions = true;
     this.gcName.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcName.Caption = "<LOC>Name";
     this.gcName.FieldName = "Name";
     this.gcName.Name = "gcName";
     this.gcName.Visible = true;
     this.gcName.VisibleIndex = 1;
     this.gcOwner.AppearanceHeader.Options.UseTextOptions = true;
     this.gcOwner.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcOwner.Caption = "<LOC>Creator";
     this.gcOwner.FieldName = "OwnerName";
     this.gcOwner.Name = "gcOwner";
     this.gcOwner.Visible = true;
     this.gcOwner.VisibleIndex = 2;
     this.gcVersion.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Underline | FontStyle.Bold);
     this.gcVersion.AppearanceCell.ForeColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gcVersion.AppearanceCell.Options.UseFont = true;
     this.gcVersion.AppearanceCell.Options.UseForeColor = true;
     this.gcVersion.AppearanceCell.Options.UseTextOptions = true;
     this.gcVersion.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcVersion.AppearanceHeader.Options.UseTextOptions = true;
     this.gcVersion.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcVersion.Caption = "<LOC>Version";
     this.gcVersion.FieldName = "Version";
     this.gcVersion.Name = "gcVersion";
     this.gcVersion.Visible = true;
     this.gcVersion.VisibleIndex = 3;
     this.gcDate.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDate.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDate.Caption = "<LOC>Date";
     this.gcDate.FieldName = "VersionDate";
     this.gcDate.Name = "gcDate";
     this.gcDate.Visible = true;
     this.gcDate.VisibleIndex = 4;
     this.gcDownloads.AppearanceCell.Options.UseTextOptions = true;
     this.gcDownloads.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownloads.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDownloads.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownloads.Caption = "<LOC>D/L";
     this.gcDownloads.FieldName = "Downloads";
     this.gcDownloads.Name = "gcDownloads";
     this.gcDownloads.Visible = true;
     this.gcDownloads.VisibleIndex = 5;
     this.gcRating.AppearanceHeader.Options.UseTextOptions = true;
     this.gcRating.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRating.Caption = "<LOC>Rating";
     this.gcRating.ColumnEdit = this.repositoryItemPictureEdit1;
     this.gcRating.FieldName = "RatingImageSmall";
     this.gcRating.Name = "gcRating";
     this.gcRating.Visible = true;
     this.gcRating.VisibleIndex = 6;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemRatingStars.Name = "repositoryItemRatingStars";
     this.repositoryItemChatLink.Appearance.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.repositoryItemChatLink.Appearance.ForeColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.repositoryItemChatLink.Appearance.Options.UseFont = true;
     this.repositoryItemChatLink.Appearance.Options.UseForeColor = true;
     this.repositoryItemChatLink.Appearance.Options.UseTextOptions = true;
     this.repositoryItemChatLink.Appearance.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.Appearance.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.Options.UseTextOptions = true;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AutoHeight = false;
     this.repositoryItemChatLink.LinkColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.repositoryItemChatLink.Name = "repositoryItemChatLink";
     this.repositoryItemChatLink.SingleClick = true;
     this.repositoryItemVersionLink.AutoHeight = false;
     this.repositoryItemVersionLink.Name = "repositoryItemVersionLink";
     this.skinButtonSearchStart.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonSearchStart.AutoStyle = true;
     this.skinButtonSearchStart.BackColor = Color.Black;
     this.skinButtonSearchStart.ButtonState = 0;
     this.skinButtonSearchStart.DialogResult = DialogResult.OK;
     this.skinButtonSearchStart.DisabledForecolor = Color.Gray;
     this.skinButtonSearchStart.DrawColor = Color.White;
     this.skinButtonSearchStart.DrawEdges = false;
     this.skinButtonSearchStart.FocusColor = Color.Yellow;
     this.skinButtonSearchStart.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchStart.ForeColor = Color.White;
     this.skinButtonSearchStart.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchStart.IsStyled = true;
     this.skinButtonSearchStart.Location = new Point(4, 0x1ba);
     this.skinButtonSearchStart.Name = "skinButtonSearchStart";
     this.skinButtonSearchStart.Size = new Size(40, 0x16);
     this.skinButtonSearchStart.SkinBasePath = @"Controls\Button\First";
     base.ttDefault.SetSuperTip(this.skinButtonSearchStart, null);
     this.skinButtonSearchStart.TabIndex = 5;
     this.skinButtonSearchStart.TabStop = true;
     this.skinButtonSearchStart.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchStart.TextPadding = new Padding(0);
     this.skinButtonSearchStart.Click += new EventHandler(this.skinButtonSearchStart_Click);
     this.skinButtonSearchPrevious.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonSearchPrevious.AutoStyle = true;
     this.skinButtonSearchPrevious.BackColor = Color.Black;
     this.skinButtonSearchPrevious.ButtonState = 0;
     this.skinButtonSearchPrevious.DialogResult = DialogResult.OK;
     this.skinButtonSearchPrevious.DisabledForecolor = Color.Gray;
     this.skinButtonSearchPrevious.DrawColor = Color.White;
     this.skinButtonSearchPrevious.DrawEdges = false;
     this.skinButtonSearchPrevious.FocusColor = Color.Yellow;
     this.skinButtonSearchPrevious.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchPrevious.ForeColor = Color.White;
     this.skinButtonSearchPrevious.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchPrevious.IsStyled = true;
     this.skinButtonSearchPrevious.Location = new Point(0x2c, 0x1ba);
     this.skinButtonSearchPrevious.Name = "skinButtonSearchPrevious";
     this.skinButtonSearchPrevious.Size = new Size(40, 0x16);
     this.skinButtonSearchPrevious.SkinBasePath = @"Controls\Button\Previous";
     base.ttDefault.SetSuperTip(this.skinButtonSearchPrevious, null);
     this.skinButtonSearchPrevious.TabIndex = 6;
     this.skinButtonSearchPrevious.TabStop = true;
     this.skinButtonSearchPrevious.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchPrevious.TextPadding = new Padding(0);
     this.skinButtonSearchPrevious.Click += new EventHandler(this.skinButtonSearchPrevious_Click);
     this.gpgGroupBoxCriteria.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgGroupBoxCriteria.AutoStyle = false;
     this.gpgGroupBoxCriteria.BackColor = Color.Black;
     this.gpgGroupBoxCriteria.Controls.Add(this.skinButtonSaveSearch);
     this.gpgGroupBoxCriteria.Controls.Add(this.skinButtonRunSearch);
     this.gpgGroupBoxCriteria.Controls.Add(this.gpgPanelSearchCriteria);
     this.gpgGroupBoxCriteria.CutCorner = false;
     this.gpgGroupBoxCriteria.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxCriteria.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxCriteria.IsStyled = true;
     this.gpgGroupBoxCriteria.Location = new Point(4, 5);
     this.gpgGroupBoxCriteria.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxCriteria.Name = "gpgGroupBoxCriteria";
     this.gpgGroupBoxCriteria.Size = new Size(0x2f6, 0x72);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxCriteria, null);
     this.gpgGroupBoxCriteria.TabIndex = 15;
     this.gpgGroupBoxCriteria.Text = "<LOC>Search Criteria";
     this.gpgGroupBoxCriteria.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxCriteria.TextPadding = new Padding(8, 0, 0, 0);
     this.skinButtonSaveSearch.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonSaveSearch.AutoStyle = true;
     this.skinButtonSaveSearch.BackColor = Color.Black;
     this.skinButtonSaveSearch.ButtonState = 0;
     this.skinButtonSaveSearch.DialogResult = DialogResult.OK;
     this.skinButtonSaveSearch.DisabledForecolor = Color.Gray;
     this.skinButtonSaveSearch.DrawColor = Color.White;
     this.skinButtonSaveSearch.DrawEdges = true;
     this.skinButtonSaveSearch.FocusColor = Color.Yellow;
     this.skinButtonSaveSearch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSaveSearch.ForeColor = Color.White;
     this.skinButtonSaveSearch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSaveSearch.IsStyled = true;
     this.skinButtonSaveSearch.Location = new Point(0x1ef, 0x51);
     this.skinButtonSaveSearch.Name = "skinButtonSaveSearch";
     this.skinButtonSaveSearch.Size = new Size(0x7d, 0x1a);
     this.skinButtonSaveSearch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonSaveSearch, null);
     this.skinButtonSaveSearch.TabIndex = 0x1f;
     this.skinButtonSaveSearch.TabStop = true;
     this.skinButtonSaveSearch.Text = "<LOC>Save Search";
     this.skinButtonSaveSearch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSaveSearch.TextPadding = new Padding(0);
     this.skinButtonSaveSearch.Visible = false;
     this.skinButtonSaveSearch.Click += new EventHandler(this.skinButtonSaveSearch_Click);
     this.skinButtonRunSearch.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonRunSearch.AutoStyle = true;
     this.skinButtonRunSearch.BackColor = Color.Black;
     this.skinButtonRunSearch.ButtonState = 0;
     this.skinButtonRunSearch.DialogResult = DialogResult.OK;
     this.skinButtonRunSearch.DisabledForecolor = Color.Gray;
     this.skinButtonRunSearch.DrawColor = Color.White;
     this.skinButtonRunSearch.DrawEdges = true;
     this.skinButtonRunSearch.FocusColor = Color.Yellow;
     this.skinButtonRunSearch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonRunSearch.ForeColor = Color.White;
     this.skinButtonRunSearch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonRunSearch.IsStyled = true;
     this.skinButtonRunSearch.Location = new Point(0x272, 0x51);
     this.skinButtonRunSearch.Name = "skinButtonRunSearch";
     this.skinButtonRunSearch.Size = new Size(0x7d, 0x1a);
     this.skinButtonRunSearch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonRunSearch, null);
     this.skinButtonRunSearch.TabIndex = 30;
     this.skinButtonRunSearch.TabStop = true;
     this.skinButtonRunSearch.Text = "<LOC>Run Search";
     this.skinButtonRunSearch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonRunSearch.TextPadding = new Padding(0);
     this.skinButtonRunSearch.Click += new EventHandler(this.skinButtonRunSearch_Click);
     this.gpgPanelSearchCriteria.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelSearchCriteria.AutoScroll = true;
     this.gpgPanelSearchCriteria.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelSearchCriteria.BorderThickness = 2;
     this.gpgPanelSearchCriteria.Controls.Add(this.skinButtonSearchType);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabelSearchType);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchCreator);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel16);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchName);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel1);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchKeywords);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel21);
     this.gpgPanelSearchCriteria.DrawBorder = false;
     this.gpgPanelSearchCriteria.Location = new Point(2, 0x17);
     this.gpgPanelSearchCriteria.Name = "gpgPanelSearchCriteria";
     this.gpgPanelSearchCriteria.Size = new Size(0x2ed, 0x34);
     base.ttDefault.SetSuperTip(this.gpgPanelSearchCriteria, null);
     this.gpgPanelSearchCriteria.TabIndex = 0x1d;
     this.skinButtonSearchType.AutoStyle = true;
     this.skinButtonSearchType.BackColor = Color.Transparent;
     this.skinButtonSearchType.ButtonState = 0;
     this.skinButtonSearchType.DialogResult = DialogResult.OK;
     this.skinButtonSearchType.DisabledForecolor = Color.Gray;
     this.skinButtonSearchType.DrawColor = Color.White;
     this.skinButtonSearchType.DrawEdges = false;
     this.skinButtonSearchType.FocusColor = Color.Yellow;
     this.skinButtonSearchType.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchType.ForeColor = Color.White;
     this.skinButtonSearchType.HorizontalScalingMode = ScalingModes.Center;
     this.skinButtonSearchType.IsStyled = true;
     this.skinButtonSearchType.Location = new Point(0x295, 0x17);
     this.skinButtonSearchType.Name = "skinButtonSearchType";
     this.skinButtonSearchType.Size = new Size(0x18, 0x12);
     this.skinButtonSearchType.SkinBasePath = @"Dialog\ContentManager\BtnAdvancedSearch";
     base.ttDefault.SetSuperTip(this.skinButtonSearchType, null);
     this.skinButtonSearchType.TabIndex = 0x25;
     this.skinButtonSearchType.TabStop = true;
     this.skinButtonSearchType.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchType.TextPadding = new Padding(0);
     this.skinButtonSearchType.Click += new EventHandler(this.skinButtonSearchType_Click);
     this.gpgLabelSearchType.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelSearchType.AutoSize = true;
     this.gpgLabelSearchType.AutoStyle = true;
     this.gpgLabelSearchType.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabelSearchType.ForeColor = Color.DimGray;
     this.gpgLabelSearchType.IgnoreMouseWheel = false;
     this.gpgLabelSearchType.IsStyled = false;
     this.gpgLabelSearchType.Location = new Point(530, 0x1a);
     this.gpgLabelSearchType.Name = "gpgLabelSearchType";
     this.gpgLabelSearchType.Size = new Size(0x7e, 12);
     base.ttDefault.SetSuperTip(this.gpgLabelSearchType, null);
     this.gpgLabelSearchType.TabIndex = 0x23;
     this.gpgLabelSearchType.Text = "<LOC>Advanced Search";
     this.gpgLabelSearchType.TextStyle = TextStyles.Custom;
     this.gpgTextBoxSearchCreator.Location = new Point(0xb9, 0x16);
     this.gpgTextBoxSearchCreator.Name = "gpgTextBoxSearchCreator";
     this.gpgTextBoxSearchCreator.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchCreator.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchCreator.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchCreator.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchCreator.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchCreator.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchCreator.Properties.MaxLength = 0x16;
     this.gpgTextBoxSearchCreator.Size = new Size(160, 20);
     this.gpgTextBoxSearchCreator.TabIndex = 0x22;
     this.gpgTextBoxSearchCreator.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgTextBoxSearchCreator.KeyDown += new KeyEventHandler(this.SearchCriteriaTextBox_KeyDown);
     this.gpgLabel16.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel16.AutoSize = true;
     this.gpgLabel16.AutoStyle = true;
     this.gpgLabel16.Font = new Font("Arial", 9.75f);
     this.gpgLabel16.ForeColor = Color.White;
     this.gpgLabel16.IgnoreMouseWheel = false;
     this.gpgLabel16.IsStyled = false;
     this.gpgLabel16.Location = new Point(0xb6, 3);
     this.gpgLabel16.Name = "gpgLabel16";
     this.gpgLabel16.Size = new Size(0x73, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel16, null);
     this.gpgLabel16.TabIndex = 0x21;
     this.gpgLabel16.Text = "<LOC>Created By";
     this.gpgLabel16.TextStyle = TextStyles.Bold;
     this.gpgTextBoxSearchName.EditValue = "";
     this.gpgTextBoxSearchName.Location = new Point(8, 0x16);
     this.gpgTextBoxSearchName.Name = "gpgTextBoxSearchName";
     this.gpgTextBoxSearchName.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchName.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchName.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchName.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchName.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchName.Properties.MaxLength = 0x100;
     this.gpgTextBoxSearchName.Size = new Size(160, 20);
     this.gpgTextBoxSearchName.TabIndex = 0x20;
     this.gpgTextBoxSearchName.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgTextBoxSearchName.KeyDown += new KeyEventHandler(this.SearchCriteriaTextBox_KeyDown);
     this.gpgLabel1.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel1.AutoSize = true;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.Font = new Font("Arial", 9.75f);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(5, 3);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0x54, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 0x1f;
     this.gpgLabel1.Text = "<LOC>Name";
     this.gpgLabel1.TextStyle = TextStyles.Bold;
     this.gpgTextBoxSearchKeywords.Location = new Point(0x16c, 0x16);
     this.gpgTextBoxSearchKeywords.Name = "gpgTextBoxSearchKeywords";
     this.gpgTextBoxSearchKeywords.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchKeywords.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchKeywords.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchKeywords.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchKeywords.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchKeywords.Properties.MaxLength = 0x100;
     this.gpgTextBoxSearchKeywords.Size = new Size(160, 20);
     this.gpgTextBoxSearchKeywords.TabIndex = 30;
     this.gpgTextBoxSearchKeywords.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgTextBoxSearchKeywords.KeyDown += new KeyEventHandler(this.SearchCriteriaTextBox_KeyDown);
     this.gpgLabel21.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel21.AutoSize = true;
     this.gpgLabel21.AutoStyle = true;
     this.gpgLabel21.Font = new Font("Arial", 9.75f);
     this.gpgLabel21.ForeColor = Color.White;
     this.gpgLabel21.IgnoreMouseWheel = false;
     this.gpgLabel21.IsStyled = false;
     this.gpgLabel21.Location = new Point(0x169, 3);
     this.gpgLabel21.Name = "gpgLabel21";
     this.gpgLabel21.Size = new Size(0x6b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel21, null);
     this.gpgLabel21.TabIndex = 0x1d;
     this.gpgLabel21.Text = "<LOC>Keywords";
     this.gpgLabel21.TextStyle = TextStyles.Bold;
     this.gpgPanelUpload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelUpload.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelUpload.BorderThickness = 2;
     this.gpgPanelUpload.Controls.Add(this.splitContainerUpload);
     this.gpgPanelUpload.DrawBorder = false;
     this.gpgPanelUpload.Location = new Point(12, 110);
     this.gpgPanelUpload.Name = "gpgPanelUpload";
     this.gpgPanelUpload.Size = new Size(0x3e8, 0x25a);
     base.ttDefault.SetSuperTip(this.gpgPanelUpload, null);
     this.gpgPanelUpload.TabIndex = 8;
     this.splitContainerUpload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerUpload.Location = new Point(2, 2);
     this.splitContainerUpload.Name = "splitContainerUpload";
     this.splitContainerUpload.Panel1.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.splitContainerUpload.Panel1.Controls.Add(this.gpgLabelUploadLocations);
     this.splitContainerUpload.Panel1.Controls.Add(this.skinLabel4);
     this.splitContainerUpload.Panel1.Controls.Add(this.skinLabel3);
     this.splitContainerUpload.Panel1.Controls.Add(this.pictureBoxRefreshUploads);
     this.splitContainerUpload.Panel1.Controls.Add(this.treeViewUpload);
     base.ttDefault.SetSuperTip(this.splitContainerUpload.Panel1, null);
     this.splitContainerUpload.Panel2.AutoScroll = true;
     this.splitContainerUpload.Panel2.BackgroundImage = (Image) manager.GetObject("splitContainerUpload.Panel2.BackgroundImage");
     this.splitContainerUpload.Panel2.Controls.Add(this.gpgGroupBoxUploadVersion);
     this.splitContainerUpload.Panel2.Controls.Add(this.gpgGroupBoxUploadGeneral);
     this.splitContainerUpload.Panel2.Controls.Add(this.skinButtonDeleteUploadVersion);
     this.splitContainerUpload.Panel2.Controls.Add(this.skinButtonDeleteUploadAll);
     this.splitContainerUpload.Panel2.Controls.Add(this.skinButtonUpload);
     this.splitContainerUpload.Panel2.Controls.Add(this.gpgLabelNoUploadSelected);
     base.ttDefault.SetSuperTip(this.splitContainerUpload.Panel2, null);
     this.splitContainerUpload.Size = new Size(0x3e4, 0x256);
     this.splitContainerUpload.SplitterDistance = 0x120;
     this.splitContainerUpload.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerUpload, null);
     this.splitContainerUpload.TabIndex = 2;
     this.gpgLabelUploadLocations.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelUploadLocations.AutoSize = true;
     this.gpgLabelUploadLocations.AutoStyle = true;
     this.gpgLabelUploadLocations.Cursor = Cursors.Hand;
     this.gpgLabelUploadLocations.Font = new Font("Verdana", 8.25f, FontStyle.Underline | FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabelUploadLocations.ForeColor = Color.White;
     this.gpgLabelUploadLocations.IgnoreMouseWheel = false;
     this.gpgLabelUploadLocations.IsStyled = false;
     this.gpgLabelUploadLocations.Location = new Point(1, 0x1d);
     this.gpgLabelUploadLocations.Name = "gpgLabelUploadLocations";
     this.gpgLabelUploadLocations.Size = new Size(0xd8, 13);
     base.ttDefault.SetSuperTip(this.gpgLabelUploadLocations, null);
     this.gpgLabelUploadLocations.TabIndex = 3;
     this.gpgLabelUploadLocations.Text = "<LOC>Select Upload Locations...";
     this.gpgLabelUploadLocations.TextStyle = TextStyles.Custom;
     this.gpgLabelUploadLocations.Click += new EventHandler(this.SelectUploadPath_Click);
     this.skinLabel4.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel4.AutoStyle = false;
     this.skinLabel4.BackColor = Color.Transparent;
     this.skinLabel4.DrawEdges = true;
     this.skinLabel4.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel4.ForeColor = Color.White;
     this.skinLabel4.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel4.IsStyled = false;
     this.skinLabel4.Location = new Point(0, 0x36);
     this.skinLabel4.Name = "skinLabel4";
     this.skinLabel4.Size = new Size(0x120, 20);
     this.skinLabel4.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel4, null);
     this.skinLabel4.TabIndex = 2;
     this.skinLabel4.Text = "<LOC>My Files";
     this.skinLabel4.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel4.TextPadding = new Padding(0);
     this.skinLabel3.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel3.AutoStyle = false;
     this.skinLabel3.BackColor = Color.Transparent;
     this.skinLabel3.DrawEdges = true;
     this.skinLabel3.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel3.ForeColor = Color.White;
     this.skinLabel3.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel3.IsStyled = false;
     this.skinLabel3.Location = new Point(0, 0);
     this.skinLabel3.Name = "skinLabel3";
     this.skinLabel3.Size = new Size(0x120, 20);
     this.skinLabel3.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel3, null);
     this.skinLabel3.TabIndex = 1;
     this.skinLabel3.Text = "<LOC>Uploadable Content";
     this.skinLabel3.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel3.TextPadding = new Padding(0);
     this.pictureBoxRefreshUploads.Cursor = Cursors.Hand;
     this.pictureBoxRefreshUploads.Image = (Image) manager.GetObject("pictureBoxRefreshUploads.Image");
     this.pictureBoxRefreshUploads.InitialImage = (Image) manager.GetObject("pictureBoxRefreshUploads.InitialImage");
     this.pictureBoxRefreshUploads.Location = new Point(0xe1, 0x1b);
     this.pictureBoxRefreshUploads.Name = "pictureBoxRefreshUploads";
     this.pictureBoxRefreshUploads.Size = new Size(0x10, 0x10);
     this.pictureBoxRefreshUploads.SizeMode = PictureBoxSizeMode.StretchImage;
     base.ttDefault.SetSuperTip(this.pictureBoxRefreshUploads, null);
     this.pictureBoxRefreshUploads.TabIndex = 0;
     this.pictureBoxRefreshUploads.TabStop = false;
     base.ttDefault.SetToolTip(this.pictureBoxRefreshUploads, "<LOC>Refresh Files");
     this.pictureBoxRefreshUploads.Click += new EventHandler(this.pictureBoxRefreshUploads_Click);
     this.treeViewUpload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.treeViewUpload.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewUpload.BorderStyle = BorderStyle.None;
     this.treeViewUpload.HideSelection = false;
     this.treeViewUpload.ImageIndex = 0;
     this.treeViewUpload.ImageList = this.imageListContentTypes;
     this.treeViewUpload.Location = new Point(0, 80);
     this.treeViewUpload.Name = "treeViewUpload";
     this.treeViewUpload.SelectedImageIndex = 0;
     this.treeViewUpload.Size = new Size(0x120, 0x206);
     base.ttDefault.SetSuperTip(this.treeViewUpload, null);
     this.treeViewUpload.TabIndex = 1;
     this.treeViewUpload.AfterSelect += new TreeViewEventHandler(this.treeViewUpload_AfterSelect);
     this.gpgGroupBoxUploadVersion.AutoStyle = false;
     this.gpgGroupBoxUploadVersion.BackColor = Color.Black;
     this.gpgGroupBoxUploadVersion.Controls.Add(this.gpgPanelUploadVersion);
     this.gpgGroupBoxUploadVersion.CutCorner = true;
     this.gpgGroupBoxUploadVersion.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxUploadVersion.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxUploadVersion.IsStyled = true;
     this.gpgGroupBoxUploadVersion.Location = new Point(8, 0x11f);
     this.gpgGroupBoxUploadVersion.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxUploadVersion.Name = "gpgGroupBoxUploadVersion";
     this.gpgGroupBoxUploadVersion.Size = new Size(0x2b0, 180);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxUploadVersion, null);
     this.gpgGroupBoxUploadVersion.TabIndex = 0x23;
     this.gpgGroupBoxUploadVersion.Text = "<LOC>Version Info";
     this.gpgGroupBoxUploadVersion.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxUploadVersion.TextPadding = new Padding(8, 0, 0, 0);
     this.gpgGroupBoxUploadVersion.Visible = false;
     this.gpgPanelUploadVersion.AutoScroll = true;
     this.gpgPanelUploadVersion.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelUploadVersion.BorderThickness = 2;
     this.gpgPanelUploadVersion.Controls.Add(this.gpgTextAreaVersionNotes);
     this.gpgPanelUploadVersion.Controls.Add(this.gpgLabelUploadVersionNotes);
     this.gpgPanelUploadVersion.Controls.Add(this.gpgLabelUploadCurrentVersion);
     this.gpgPanelUploadVersion.DrawBorder = false;
     this.gpgPanelUploadVersion.Location = new Point(2, 0x16);
     this.gpgPanelUploadVersion.Name = "gpgPanelUploadVersion";
     this.gpgPanelUploadVersion.Size = new Size(0x2ac, 0x88);
     base.ttDefault.SetSuperTip(this.gpgPanelUploadVersion, null);
     this.gpgPanelUploadVersion.TabIndex = 0;
     this.gpgTextAreaVersionNotes.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgTextAreaVersionNotes.BorderColor = Color.White;
     this.gpgTextAreaVersionNotes.Location = new Point(4, 0x2c);
     this.gpgTextAreaVersionNotes.Name = "gpgTextAreaVersionNotes";
     this.gpgTextAreaVersionNotes.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextAreaVersionNotes.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextAreaVersionNotes.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextAreaVersionNotes.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextAreaVersionNotes.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextAreaVersionNotes.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextAreaVersionNotes.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextAreaVersionNotes.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextAreaVersionNotes.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextAreaVersionNotes.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextAreaVersionNotes.Properties.MaxLength = 0x400;
     this.gpgTextAreaVersionNotes.Size = new Size(0x2a4, 0x59);
     this.gpgTextAreaVersionNotes.TabIndex = 2;
     this.gpgTextAreaVersionNotes.EditValueChanged += new EventHandler(this.UploadGeneralOptionsChanged);
     this.gpgLabelUploadVersionNotes.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelUploadVersionNotes.AutoSize = true;
     this.gpgLabelUploadVersionNotes.AutoStyle = true;
     this.gpgLabelUploadVersionNotes.Font = new Font("Arial", 9.75f);
     this.gpgLabelUploadVersionNotes.ForeColor = Color.White;
     this.gpgLabelUploadVersionNotes.IgnoreMouseWheel = false;
     this.gpgLabelUploadVersionNotes.IsStyled = false;
     this.gpgLabelUploadVersionNotes.Location = new Point(4, 0x19);
     this.gpgLabelUploadVersionNotes.Name = "gpgLabelUploadVersionNotes";
     this.gpgLabelUploadVersionNotes.Size = new Size(0x84, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelUploadVersionNotes, null);
     this.gpgLabelUploadVersionNotes.TabIndex = 1;
     this.gpgLabelUploadVersionNotes.Text = "<LOC>Version Notes";
     this.gpgLabelUploadVersionNotes.TextStyle = TextStyles.Bold;
     this.gpgLabelUploadCurrentVersion.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelUploadCurrentVersion.AutoSize = true;
     this.gpgLabelUploadCurrentVersion.AutoStyle = true;
     this.gpgLabelUploadCurrentVersion.Font = new Font("Arial", 9.75f);
     this.gpgLabelUploadCurrentVersion.ForeColor = Color.White;
     this.gpgLabelUploadCurrentVersion.IgnoreMouseWheel = false;
     this.gpgLabelUploadCurrentVersion.IsStyled = false;
     this.gpgLabelUploadCurrentVersion.Location = new Point(4, 4);
     this.gpgLabelUploadCurrentVersion.Name = "gpgLabelUploadCurrentVersion";
     this.gpgLabelUploadCurrentVersion.Size = new Size(140, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabelUploadCurrentVersion, null);
     this.gpgLabelUploadCurrentVersion.TabIndex = 0;
     this.gpgLabelUploadCurrentVersion.Text = "<LOC>Current Version";
     this.gpgLabelUploadCurrentVersion.TextStyle = TextStyles.Bold;
     this.gpgGroupBoxUploadGeneral.AutoStyle = false;
     this.gpgGroupBoxUploadGeneral.BackColor = Color.Black;
     this.gpgGroupBoxUploadGeneral.Controls.Add(this.gpgPanelUploadGeneral);
     this.gpgGroupBoxUploadGeneral.CutCorner = false;
     this.gpgGroupBoxUploadGeneral.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxUploadGeneral.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxUploadGeneral.IsStyled = true;
     this.gpgGroupBoxUploadGeneral.Location = new Point(8, 8);
     this.gpgGroupBoxUploadGeneral.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxUploadGeneral.Name = "gpgGroupBoxUploadGeneral";
     this.gpgGroupBoxUploadGeneral.Size = new Size(0x2b0, 0xb7);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxUploadGeneral, null);
     this.gpgGroupBoxUploadGeneral.TabIndex = 0x22;
     this.gpgGroupBoxUploadGeneral.Text = "<LOC>General Info";
     this.gpgGroupBoxUploadGeneral.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxUploadGeneral.TextPadding = new Padding(8, 0, 0, 0);
     this.gpgGroupBoxUploadGeneral.Visible = false;
     this.gpgPanelUploadGeneral.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgPanelUploadGeneral.AutoScroll = true;
     this.gpgPanelUploadGeneral.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelUploadGeneral.BorderThickness = 2;
     this.gpgPanelUploadGeneral.Controls.Add(this.skinButtonDeleteUploadDependency);
     this.gpgPanelUploadGeneral.Controls.Add(this.skinButtonUploadDependency);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgTextBoxUploadSearchKeywords);
     this.gpgPanelUploadGeneral.Controls.Add(this.listBoxUploadDependencies);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabel6);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabel9);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabel27);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgTextBoxUploadDesc);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabelUploadLocation);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgTextBoxUploadName);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabel25);
     this.gpgPanelUploadGeneral.Controls.Add(this.gpgLabel29);
     this.gpgPanelUploadGeneral.DrawBorder = false;
     this.gpgPanelUploadGeneral.Location = new Point(2, 0x15);
     this.gpgPanelUploadGeneral.Name = "gpgPanelUploadGeneral";
     this.gpgPanelUploadGeneral.Size = new Size(0x2ab, 160);
     base.ttDefault.SetSuperTip(this.gpgPanelUploadGeneral, null);
     this.gpgPanelUploadGeneral.TabIndex = 3;
     this.skinButtonDeleteUploadDependency.AutoStyle = true;
     this.skinButtonDeleteUploadDependency.BackColor = Color.Black;
     this.skinButtonDeleteUploadDependency.ButtonState = 0;
     this.skinButtonDeleteUploadDependency.CausesValidation = false;
     this.skinButtonDeleteUploadDependency.DialogResult = DialogResult.OK;
     this.skinButtonDeleteUploadDependency.DisabledForecolor = Color.Gray;
     this.skinButtonDeleteUploadDependency.DrawColor = Color.White;
     this.skinButtonDeleteUploadDependency.DrawEdges = false;
     this.skinButtonDeleteUploadDependency.Enabled = false;
     this.skinButtonDeleteUploadDependency.FocusColor = Color.Yellow;
     this.skinButtonDeleteUploadDependency.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonDeleteUploadDependency.ForeColor = Color.White;
     this.skinButtonDeleteUploadDependency.HorizontalScalingMode = ScalingModes.Center;
     this.skinButtonDeleteUploadDependency.IsStyled = true;
     this.skinButtonDeleteUploadDependency.Location = new Point(0x29, 0x7a);
     this.skinButtonDeleteUploadDependency.Margin = new Padding(0);
     this.skinButtonDeleteUploadDependency.MaximumSize = new Size(0x25, 0x25);
     this.skinButtonDeleteUploadDependency.MinimumSize = new Size(0x25, 0x25);
     this.skinButtonDeleteUploadDependency.Name = "skinButtonDeleteUploadDependency";
     this.skinButtonDeleteUploadDependency.Size = new Size(0x25, 0x25);
     this.skinButtonDeleteUploadDependency.SkinBasePath = @"Dialog\ContentManager\BtnDelete";
     base.ttDefault.SetSuperTip(this.skinButtonDeleteUploadDependency, null);
     this.skinButtonDeleteUploadDependency.TabIndex = 0x17;
     this.skinButtonDeleteUploadDependency.TabStop = true;
     this.skinButtonDeleteUploadDependency.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonDeleteUploadDependency.TextPadding = new Padding(0);
     this.skinButtonDeleteUploadDependency.Click += new EventHandler(this.skinButtonDeleteUploadDependency_Click);
     this.skinButtonUploadDependency.AutoStyle = true;
     this.skinButtonUploadDependency.BackColor = Color.Black;
     this.skinButtonUploadDependency.ButtonState = 0;
     this.skinButtonUploadDependency.CausesValidation = false;
     this.skinButtonUploadDependency.DialogResult = DialogResult.OK;
     this.skinButtonUploadDependency.DisabledForecolor = Color.Gray;
     this.skinButtonUploadDependency.DrawColor = Color.White;
     this.skinButtonUploadDependency.DrawEdges = false;
     this.skinButtonUploadDependency.FocusColor = Color.Yellow;
     this.skinButtonUploadDependency.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonUploadDependency.ForeColor = Color.White;
     this.skinButtonUploadDependency.HorizontalScalingMode = ScalingModes.Center;
     this.skinButtonUploadDependency.IsStyled = true;
     this.skinButtonUploadDependency.Location = new Point(1, 0x7a);
     this.skinButtonUploadDependency.Margin = new Padding(0);
     this.skinButtonUploadDependency.MaximumSize = new Size(0x25, 0x25);
     this.skinButtonUploadDependency.MinimumSize = new Size(0x25, 0x25);
     this.skinButtonUploadDependency.Name = "skinButtonUploadDependency";
     this.skinButtonUploadDependency.Size = new Size(0x25, 0x25);
     this.skinButtonUploadDependency.SkinBasePath = @"Dialog\ContentManager\BtnBrowseTo";
     base.ttDefault.SetSuperTip(this.skinButtonUploadDependency, null);
     this.skinButtonUploadDependency.TabIndex = 7;
     this.skinButtonUploadDependency.TabStop = true;
     this.skinButtonUploadDependency.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonUploadDependency.TextPadding = new Padding(0);
     this.skinButtonUploadDependency.Click += new EventHandler(this.skinButtonUploadDependency_Click);
     this.gpgTextBoxUploadSearchKeywords.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgTextBoxUploadSearchKeywords.Location = new Point(0x15a, 0x4a);
     this.gpgTextBoxUploadSearchKeywords.MinimumSize = new Size(250, 20);
     this.gpgTextBoxUploadSearchKeywords.Name = "gpgTextBoxUploadSearchKeywords";
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxUploadSearchKeywords.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxUploadSearchKeywords.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxUploadSearchKeywords.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxUploadSearchKeywords.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxUploadSearchKeywords.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxUploadSearchKeywords.Properties.MaxLength = 0x100;
     this.gpgTextBoxUploadSearchKeywords.Size = new Size(0x151, 20);
     this.gpgTextBoxUploadSearchKeywords.TabIndex = 0x16;
     this.gpgTextBoxUploadSearchKeywords.EditValueChanged += new EventHandler(this.UploadGeneralOptionsChanged);
     this.listBoxUploadDependencies.BackColor = Color.Black;
     this.listBoxUploadDependencies.BorderStyle = BorderStyle.None;
     this.listBoxUploadDependencies.FormattingEnabled = true;
     this.listBoxUploadDependencies.Location = new Point(0x52, 0x79);
     this.listBoxUploadDependencies.Name = "listBoxUploadDependencies";
     this.listBoxUploadDependencies.Size = new Size(600, 0x27);
     base.ttDefault.SetSuperTip(this.listBoxUploadDependencies, null);
     this.listBoxUploadDependencies.TabIndex = 6;
     this.listBoxUploadDependencies.SelectedIndexChanged += new EventHandler(this.listBoxUploadDependencies_SelectedIndexChanged);
     this.gpgLabel6.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel6.AutoStyle = true;
     this.gpgLabel6.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel6.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel6.ForeColor = Color.White;
     this.gpgLabel6.IgnoreMouseWheel = false;
     this.gpgLabel6.IsStyled = false;
     this.gpgLabel6.Location = new Point(0x15a, 0x35);
     this.gpgLabel6.Name = "gpgLabel6";
     this.gpgLabel6.Size = new Size(0x98, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel6, null);
     this.gpgLabel6.TabIndex = 0x15;
     this.gpgLabel6.Text = "<LOC>Search Keywords";
     this.gpgLabel6.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel6.TextStyle = TextStyles.Custom;
     this.gpgLabel9.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel9.AutoStyle = true;
     this.gpgLabel9.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel9.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel9.ForeColor = Color.White;
     this.gpgLabel9.IgnoreMouseWheel = false;
     this.gpgLabel9.IsStyled = false;
     this.gpgLabel9.Location = new Point(0, 0x62);
     this.gpgLabel9.Name = "gpgLabel9";
     this.gpgLabel9.Padding = new Padding(6, 0, 0, 0);
     this.gpgLabel9.Size = new Size(0x2ab, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel9, null);
     this.gpgLabel9.TabIndex = 5;
     this.gpgLabel9.Text = "<LOC>Dependencies";
     this.gpgLabel9.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel9.TextStyle = TextStyles.Custom;
     this.gpgLabel27.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabel27.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel27.AutoStyle = true;
     this.gpgLabel27.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel27.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel27.ForeColor = Color.White;
     this.gpgLabel27.IgnoreMouseWheel = false;
     this.gpgLabel27.IsStyled = false;
     this.gpgLabel27.Location = new Point(0xfd, 2);
     this.gpgLabel27.Name = "gpgLabel27";
     this.gpgLabel27.Size = new Size(0x66, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel27, null);
     this.gpgLabel27.TabIndex = 2;
     this.gpgLabel27.Text = "<LOC>Location";
     this.gpgLabel27.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel27.TextStyle = TextStyles.Custom;
     this.gpgTextBoxUploadDesc.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgTextBoxUploadDesc.Location = new Point(4, 0x4a);
     this.gpgTextBoxUploadDesc.MinimumSize = new Size(250, 20);
     this.gpgTextBoxUploadDesc.Name = "gpgTextBoxUploadDesc";
     this.gpgTextBoxUploadDesc.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxUploadDesc.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxUploadDesc.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxUploadDesc.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxUploadDesc.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxUploadDesc.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxUploadDesc.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxUploadDesc.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxUploadDesc.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxUploadDesc.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxUploadDesc.Properties.MaxLength = 0x400;
     this.gpgTextBoxUploadDesc.Size = new Size(0x146, 20);
     this.gpgTextBoxUploadDesc.TabIndex = 0x13;
     this.gpgTextBoxUploadDesc.EditValueChanged += new EventHandler(this.UploadGeneralOptionsChanged);
     this.gpgLabelUploadLocation.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabelUploadLocation.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelUploadLocation.AutoStyle = true;
     this.gpgLabelUploadLocation.Font = new Font("Arial", 9.75f);
     this.gpgLabelUploadLocation.ForeColor = Color.White;
     this.gpgLabelUploadLocation.IgnoreMouseWheel = false;
     this.gpgLabelUploadLocation.IsStyled = false;
     this.gpgLabelUploadLocation.Location = new Point(0xfd, 0x13);
     this.gpgLabelUploadLocation.Name = "gpgLabelUploadLocation";
     this.gpgLabelUploadLocation.Size = new Size(430, 0x22);
     base.ttDefault.SetSuperTip(this.gpgLabelUploadLocation, null);
     this.gpgLabelUploadLocation.TabIndex = 3;
     this.gpgLabelUploadLocation.Text = "gpgLabel26";
     this.gpgLabelUploadLocation.TextStyle = TextStyles.Default;
     this.gpgLabelUploadLocation.Click += new EventHandler(this.gpgLabelUploadLocation_Click);
     this.gpgTextBoxUploadName.Location = new Point(4, 0x17);
     this.gpgTextBoxUploadName.MinimumSize = new Size(150, 20);
     this.gpgTextBoxUploadName.Name = "gpgTextBoxUploadName";
     this.gpgTextBoxUploadName.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxUploadName.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxUploadName.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxUploadName.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxUploadName.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxUploadName.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxUploadName.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxUploadName.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxUploadName.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxUploadName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxUploadName.Properties.MaxLength = 0x100;
     this.gpgTextBoxUploadName.Size = new Size(230, 20);
     this.gpgTextBoxUploadName.TabIndex = 0x10;
     this.gpgTextBoxUploadName.EditValueChanged += new EventHandler(this.UploadGeneralOptionsChanged);
     this.gpgLabel25.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel25.AutoStyle = true;
     this.gpgLabel25.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel25.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel25.ForeColor = Color.White;
     this.gpgLabel25.IgnoreMouseWheel = false;
     this.gpgLabel25.IsStyled = false;
     this.gpgLabel25.Location = new Point(0, 0x35);
     this.gpgLabel25.Name = "gpgLabel25";
     this.gpgLabel25.Padding = new Padding(6, 0, 0, 0);
     this.gpgLabel25.Size = new Size(0x2ab, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel25, null);
     this.gpgLabel25.TabIndex = 4;
     this.gpgLabel25.Text = "<LOC>Download Description";
     this.gpgLabel25.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel25.TextStyle = TextStyles.Custom;
     this.gpgLabel29.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel29.AutoStyle = true;
     this.gpgLabel29.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.gpgLabel29.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel29.ForeColor = Color.White;
     this.gpgLabel29.IgnoreMouseWheel = false;
     this.gpgLabel29.IsStyled = false;
     this.gpgLabel29.Location = new Point(0, 2);
     this.gpgLabel29.Name = "gpgLabel29";
     this.gpgLabel29.Padding = new Padding(6, 0, 0, 0);
     this.gpgLabel29.Size = new Size(0x2ab, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel29, null);
     this.gpgLabel29.TabIndex = 0;
     this.gpgLabel29.Text = "<LOC>Name";
     this.gpgLabel29.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel29.TextStyle = TextStyles.Custom;
     this.skinButtonDeleteUploadVersion.AutoStyle = true;
     this.skinButtonDeleteUploadVersion.BackColor = Color.Black;
     this.skinButtonDeleteUploadVersion.ButtonState = 0;
     this.skinButtonDeleteUploadVersion.DialogResult = DialogResult.OK;
     this.skinButtonDeleteUploadVersion.DisabledForecolor = Color.Gray;
     this.skinButtonDeleteUploadVersion.DrawColor = Color.White;
     this.skinButtonDeleteUploadVersion.DrawEdges = true;
     this.skinButtonDeleteUploadVersion.FocusColor = Color.Yellow;
     this.skinButtonDeleteUploadVersion.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonDeleteUploadVersion.ForeColor = Color.White;
     this.skinButtonDeleteUploadVersion.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonDeleteUploadVersion.IsStyled = true;
     this.skinButtonDeleteUploadVersion.Location = new Point(0x9d, 0x1d9);
     this.skinButtonDeleteUploadVersion.Name = "skinButtonDeleteUploadVersion";
     this.skinButtonDeleteUploadVersion.Size = new Size(0x91, 0x1a);
     this.skinButtonDeleteUploadVersion.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonDeleteUploadVersion, null);
     this.skinButtonDeleteUploadVersion.TabIndex = 0x21;
     this.skinButtonDeleteUploadVersion.TabStop = true;
     this.skinButtonDeleteUploadVersion.Text = "<LOC>Delete Version";
     this.skinButtonDeleteUploadVersion.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonDeleteUploadVersion.TextPadding = new Padding(0);
     this.skinButtonDeleteUploadVersion.Visible = false;
     this.skinButtonDeleteUploadVersion.Click += new EventHandler(this.skinButtonDeleteUploadVersion_Click);
     this.skinButtonDeleteUploadAll.AutoStyle = true;
     this.skinButtonDeleteUploadAll.BackColor = Color.Black;
     this.skinButtonDeleteUploadAll.ButtonState = 0;
     this.skinButtonDeleteUploadAll.DialogResult = DialogResult.OK;
     this.skinButtonDeleteUploadAll.DisabledForecolor = Color.Gray;
     this.skinButtonDeleteUploadAll.DrawColor = Color.White;
     this.skinButtonDeleteUploadAll.DrawEdges = true;
     this.skinButtonDeleteUploadAll.FocusColor = Color.Yellow;
     this.skinButtonDeleteUploadAll.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonDeleteUploadAll.ForeColor = Color.White;
     this.skinButtonDeleteUploadAll.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonDeleteUploadAll.IsStyled = true;
     this.skinButtonDeleteUploadAll.Location = new Point(0x134, 0x1d9);
     this.skinButtonDeleteUploadAll.Name = "skinButtonDeleteUploadAll";
     this.skinButtonDeleteUploadAll.Size = new Size(0x91, 0x1a);
     this.skinButtonDeleteUploadAll.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonDeleteUploadAll, null);
     this.skinButtonDeleteUploadAll.TabIndex = 0x20;
     this.skinButtonDeleteUploadAll.TabStop = true;
     this.skinButtonDeleteUploadAll.Text = "<LOC>Delete All Versions";
     this.skinButtonDeleteUploadAll.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonDeleteUploadAll.TextPadding = new Padding(0);
     this.skinButtonDeleteUploadAll.Visible = false;
     this.skinButtonDeleteUploadAll.Click += new EventHandler(this.skinButtonDeleteUploadAll_Click);
     this.skinButtonUpload.AutoStyle = true;
     this.skinButtonUpload.BackColor = Color.Black;
     this.skinButtonUpload.ButtonState = 0;
     this.skinButtonUpload.DialogResult = DialogResult.OK;
     this.skinButtonUpload.DisabledForecolor = Color.Gray;
     this.skinButtonUpload.DrawColor = Color.White;
     this.skinButtonUpload.DrawEdges = true;
     this.skinButtonUpload.FocusColor = Color.Yellow;
     this.skinButtonUpload.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonUpload.ForeColor = Color.White;
     this.skinButtonUpload.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonUpload.IsStyled = true;
     this.skinButtonUpload.Location = new Point(6, 0x1d9);
     this.skinButtonUpload.Name = "skinButtonUpload";
     this.skinButtonUpload.Size = new Size(0x91, 0x1a);
     this.skinButtonUpload.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonUpload, null);
     this.skinButtonUpload.TabIndex = 0x1f;
     this.skinButtonUpload.TabStop = true;
     this.skinButtonUpload.Text = "<LOC>Upload";
     this.skinButtonUpload.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonUpload.TextPadding = new Padding(0);
     this.skinButtonUpload.Visible = false;
     this.skinButtonUpload.Click += new EventHandler(this.skinButtonUpload_Click);
     this.gpgLabelNoUploadSelected.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelNoUploadSelected.AutoStyle = true;
     this.gpgLabelNoUploadSelected.BackColor = Color.Transparent;
     this.gpgLabelNoUploadSelected.Dock = DockStyle.Fill;
     this.gpgLabelNoUploadSelected.Font = new Font("Arial", 9.75f);
     this.gpgLabelNoUploadSelected.ForeColor = Color.White;
     this.gpgLabelNoUploadSelected.IgnoreMouseWheel = false;
     this.gpgLabelNoUploadSelected.IsStyled = false;
     this.gpgLabelNoUploadSelected.Location = new Point(0, 0);
     this.gpgLabelNoUploadSelected.Name = "gpgLabelNoUploadSelected";
     this.gpgLabelNoUploadSelected.Size = new Size(0x2c2, 0x256);
     base.ttDefault.SetSuperTip(this.gpgLabelNoUploadSelected, null);
     this.gpgLabelNoUploadSelected.TabIndex = 0;
     this.gpgLabelNoUploadSelected.Text = "<LOC>No valid content selected. Please select content from the browser on the left.";
     this.gpgLabelNoUploadSelected.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabelNoUploadSelected.TextStyle = TextStyles.Default;
     this.tabActivity.AutoStyle = true;
     this.tabActivity.BackColor = Color.Black;
     this.tabActivity.ButtonState = 0;
     this.tabActivity.DialogResult = DialogResult.OK;
     this.tabActivity.DisabledForecolor = Color.Gray;
     this.tabActivity.DrawColor = Color.White;
     this.tabActivity.DrawEdges = true;
     this.tabActivity.FocusColor = Color.Yellow;
     this.tabActivity.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.tabActivity.ForeColor = Color.White;
     this.tabActivity.HorizontalScalingMode = ScalingModes.Tile;
     this.tabActivity.IsStyled = true;
     this.tabActivity.Location = new Point(0x178, 0x53);
     this.tabActivity.Name = "tabActivity";
     this.tabActivity.Size = new Size(0x7a, 0x1c);
     this.tabActivity.SkinBasePath = @"Dialog\ContentManager\TabLarge";
     base.ttDefault.SetSuperTip(this.tabActivity, null);
     this.tabActivity.TabIndex = 11;
     this.tabActivity.TabStop = true;
     this.tabActivity.Text = "<LOC>Activity";
     this.tabActivity.TextAlign = ContentAlignment.MiddleLeft;
     this.tabActivity.TextPadding = new Padding(6, 0, 0, 0);
     this.tabActivity.Click += new EventHandler(this.ChangePanel);
     this.msQuickButtons.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.msQuickButtons.AutoSize = false;
     this.msQuickButtons.BackgroundImage = (Image) manager.GetObject("msQuickButtons.BackgroundImage");
     this.msQuickButtons.Dock = DockStyle.None;
     this.msQuickButtons.GripMargin = new Padding(0);
     this.msQuickButtons.ImageScalingSize = new Size(0x2d, 0x2d);
     this.msQuickButtons.Items.AddRange(new ToolStripItem[] { this.btnOptions, this.btnHelp, this.btnMapDiagnose, this.btnMore });
     this.msQuickButtons.Location = new Point(60, 0x2ca);
     this.msQuickButtons.Name = "msQuickButtons";
     this.msQuickButtons.Padding = new Padding(0, 0, 10, 0);
     this.msQuickButtons.RenderMode = ToolStripRenderMode.Professional;
     this.msQuickButtons.ShowItemToolTips = true;
     this.msQuickButtons.Size = new Size(910, 0x34);
     base.ttDefault.SetSuperTip(this.msQuickButtons, null);
     this.msQuickButtons.TabIndex = 12;
     this.msQuickButtons.Paint += new PaintEventHandler(this.msQuickButtons_Paint);
     this.msQuickButtons.SizeChanged += new EventHandler(this.msQuickButtons_SizeChanged);
     this.btnOptions.AutoSize = false;
     this.btnOptions.AutoToolTip = true;
     this.btnOptions.Image = (Image) manager.GetObject("btnOptions.Image");
     this.btnOptions.ImageScaling = ToolStripItemImageScaling.None;
     this.btnOptions.Name = "btnOptions";
     this.btnOptions.ShortcutKeys = Keys.F8;
     this.btnOptions.Size = new Size(0x25, 0x34);
     this.btnOptions.ToolTipText = "<LOC>Options";
     this.btnOptions.Click += new EventHandler(this.btnOptions_Click);
     this.btnHelp.AutoSize = false;
     this.btnHelp.AutoToolTip = true;
     this.btnHelp.Image = (Image) manager.GetObject("btnHelp.Image");
     this.btnHelp.ImageScaling = ToolStripItemImageScaling.None;
     this.btnHelp.Name = "btnHelp";
     this.btnHelp.ShortcutKeys = Keys.F8;
     this.btnHelp.Size = new Size(0x25, 0x34);
     this.btnHelp.ToolTipText = "<LOC>Help";
     this.btnHelp.Click += new EventHandler(this.btnHelp_Click);
     this.btnMapDiagnose.AutoSize = false;
     this.btnMapDiagnose.AutoToolTip = true;
     this.btnMapDiagnose.Image = (Image) manager.GetObject("btnMapDiagnose.Image");
     this.btnMapDiagnose.ImageScaling = ToolStripItemImageScaling.None;
     this.btnMapDiagnose.Name = "btnMapDiagnose";
     this.btnMapDiagnose.ShortcutKeys = Keys.F8;
     this.btnMapDiagnose.Size = new Size(0x25, 0x34);
     this.btnMapDiagnose.ToolTipText = "<LOC>Map Upload Diagnostics";
     this.btnMapDiagnose.Click += new EventHandler(this.btnMapDiagnose_Click);
     this.btnMore.AutoSize = false;
     this.btnMore.AutoToolTip = true;
     this.btnMore.Image = (Image) manager.GetObject("btnMore.Image");
     this.btnMore.ImageScaling = ToolStripItemImageScaling.None;
     this.btnMore.Name = "btnMore";
     this.btnMore.ShortcutKeys = Keys.F6;
     this.btnMore.Size = new Size(20, 0x34);
     this.btnMore.ToolTipText = "<LOC>More...";
     this.gpgPanel2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgPanel2.BackgroundImage = (Image) manager.GetObject("gpgPanel2.BackgroundImage");
     this.gpgPanel2.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanel2.BorderThickness = 2;
     this.gpgPanel2.DrawBorder = false;
     this.gpgPanel2.Location = new Point(6, 0x3e);
     this.gpgPanel2.Name = "gpgPanel2";
     this.gpgPanel2.Size = new Size(0x3f4, 0x30);
     base.ttDefault.SetSuperTip(this.gpgPanel2, null);
     this.gpgPanel2.TabIndex = 13;
     this.gpgPanelActivity.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelActivity.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelActivity.BorderThickness = 2;
     this.gpgPanelActivity.Controls.Add(this.splitContainerActivity);
     this.gpgPanelActivity.DrawBorder = false;
     this.gpgPanelActivity.Location = new Point(12, 110);
     this.gpgPanelActivity.Name = "gpgPanelActivity";
     this.gpgPanelActivity.Size = new Size(0x3e8, 0x25a);
     base.ttDefault.SetSuperTip(this.gpgPanelActivity, null);
     this.gpgPanelActivity.TabIndex = 14;
     this.splitContainerActivity.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerActivity.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.splitContainerActivity.Location = new Point(2, 2);
     this.splitContainerActivity.Name = "splitContainerActivity";
     this.splitContainerActivity.Orientation = Orientation.Horizontal;
     this.splitContainerActivity.Panel1.BackColor = Color.Black;
     this.splitContainerActivity.Panel1.BackgroundImage = (Image) manager.GetObject("splitContainerActivity.Panel1.BackgroundImage");
     this.splitContainerActivity.Panel1.Controls.Add(this.gpgLabel4);
     this.splitContainerActivity.Panel1.Controls.Add(this.gpgLabel3);
     this.splitContainerActivity.Panel1.Controls.Add(this.gpgLabel2);
     this.splitContainerActivity.Panel1.Controls.Add(this.gpgPanelDownActivity);
     this.splitContainerActivity.Panel1.Controls.Add(this.skinLabel5);
     base.ttDefault.SetSuperTip(this.splitContainerActivity.Panel1, null);
     this.splitContainerActivity.Panel2.BackColor = Color.Black;
     this.splitContainerActivity.Panel2.BackgroundImage = (Image) manager.GetObject("splitContainerActivity.Panel2.BackgroundImage");
     this.splitContainerActivity.Panel2.Controls.Add(this.gpgLabel5);
     this.splitContainerActivity.Panel2.Controls.Add(this.gpgLabel7);
     this.splitContainerActivity.Panel2.Controls.Add(this.gpgLabel8);
     this.splitContainerActivity.Panel2.Controls.Add(this.gpgPanelUpActivity);
     this.splitContainerActivity.Panel2.Controls.Add(this.skinLabel6);
     base.ttDefault.SetSuperTip(this.splitContainerActivity.Panel2, null);
     this.splitContainerActivity.Size = new Size(0x3e4, 0x256);
     this.splitContainerActivity.SplitterDistance = 330;
     this.splitContainerActivity.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerActivity, null);
     this.splitContainerActivity.TabIndex = 0;
     this.gpgLabel4.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabel4.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel4.AutoStyle = true;
     this.gpgLabel4.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel4.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel4.ForeColor = Color.White;
     this.gpgLabel4.IgnoreMouseWheel = false;
     this.gpgLabel4.IsStyled = false;
     this.gpgLabel4.Location = new Point(0x285, 0x16);
     this.gpgLabel4.Name = "gpgLabel4";
     this.gpgLabel4.Size = new Size(0x86, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel4, null);
     this.gpgLabel4.TabIndex = 0x15;
     this.gpgLabel4.Text = "<LOC>Status";
     this.gpgLabel4.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel4.TextStyle = TextStyles.Custom;
     this.gpgLabel3.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel3.AutoStyle = true;
     this.gpgLabel3.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel3.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel3.ForeColor = Color.White;
     this.gpgLabel3.IgnoreMouseWheel = false;
     this.gpgLabel3.IsStyled = false;
     this.gpgLabel3.Location = new Point(270, 0x16);
     this.gpgLabel3.Name = "gpgLabel3";
     this.gpgLabel3.Size = new Size(0x86, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel3, null);
     this.gpgLabel3.TabIndex = 20;
     this.gpgLabel3.Text = "<LOC>Progress";
     this.gpgLabel3.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel3.TextStyle = TextStyles.Custom;
     this.gpgLabel2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabel2.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel2.AutoStyle = true;
     this.gpgLabel2.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel2.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel2.ForeColor = Color.White;
     this.gpgLabel2.IgnoreMouseWheel = false;
     this.gpgLabel2.IsStyled = false;
     this.gpgLabel2.Location = new Point(0, 0x16);
     this.gpgLabel2.Name = "gpgLabel2";
     this.gpgLabel2.Padding = new Padding(6, 0, 0, 0);
     this.gpgLabel2.Size = new Size(0x3e4, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel2, null);
     this.gpgLabel2.TabIndex = 0x13;
     this.gpgLabel2.Text = "<LOC>Name";
     this.gpgLabel2.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel2.TextStyle = TextStyles.Custom;
     this.gpgPanelDownActivity.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelDownActivity.AutoScroll = true;
     this.gpgPanelDownActivity.BackColor = Color.Transparent;
     this.gpgPanelDownActivity.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelDownActivity.BorderThickness = 2;
     this.gpgPanelDownActivity.DrawBorder = false;
     this.gpgPanelDownActivity.Location = new Point(6, 0x2c);
     this.gpgPanelDownActivity.Name = "gpgPanelDownActivity";
     this.gpgPanelDownActivity.Size = new Size(0x3d7, 0x119);
     base.ttDefault.SetSuperTip(this.gpgPanelDownActivity, null);
     this.gpgPanelDownActivity.TabIndex = 0x12;
     this.skinLabel5.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel5.AutoStyle = false;
     this.skinLabel5.BackColor = Color.Transparent;
     this.skinLabel5.DrawEdges = true;
     this.skinLabel5.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel5.ForeColor = Color.White;
     this.skinLabel5.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel5.IsStyled = false;
     this.skinLabel5.Location = new Point(0, 0);
     this.skinLabel5.Name = "skinLabel5";
     this.skinLabel5.Size = new Size(0x3e4, 20);
     this.skinLabel5.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel5, null);
     this.skinLabel5.TabIndex = 0x11;
     this.skinLabel5.Text = "<LOC>Downloads";
     this.skinLabel5.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel5.TextPadding = new Padding(0);
     this.gpgLabel5.Anchor = AnchorStyles.Right | AnchorStyles.Top;
     this.gpgLabel5.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel5.AutoStyle = true;
     this.gpgLabel5.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel5.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel5.ForeColor = Color.White;
     this.gpgLabel5.IgnoreMouseWheel = false;
     this.gpgLabel5.IsStyled = false;
     this.gpgLabel5.Location = new Point(0x285, 0x16);
     this.gpgLabel5.Name = "gpgLabel5";
     this.gpgLabel5.Size = new Size(0x86, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel5, null);
     this.gpgLabel5.TabIndex = 0x18;
     this.gpgLabel5.Text = "<LOC>Status";
     this.gpgLabel5.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel5.TextStyle = TextStyles.Custom;
     this.gpgLabel7.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel7.AutoStyle = true;
     this.gpgLabel7.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel7.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel7.ForeColor = Color.White;
     this.gpgLabel7.IgnoreMouseWheel = false;
     this.gpgLabel7.IsStyled = false;
     this.gpgLabel7.Location = new Point(270, 0x16);
     this.gpgLabel7.Name = "gpgLabel7";
     this.gpgLabel7.Size = new Size(0x86, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel7, null);
     this.gpgLabel7.TabIndex = 0x17;
     this.gpgLabel7.Text = "<LOC>Progress";
     this.gpgLabel7.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel7.TextStyle = TextStyles.Custom;
     this.gpgLabel8.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgLabel8.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel8.AutoStyle = true;
     this.gpgLabel8.BackColor = Color.FromArgb(0x66, 0x66, 0x66);
     this.gpgLabel8.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabel8.ForeColor = Color.White;
     this.gpgLabel8.IgnoreMouseWheel = false;
     this.gpgLabel8.IsStyled = false;
     this.gpgLabel8.Location = new Point(0, 0x16);
     this.gpgLabel8.Name = "gpgLabel8";
     this.gpgLabel8.Padding = new Padding(6, 0, 0, 0);
     this.gpgLabel8.Size = new Size(0x3e4, 0x11);
     base.ttDefault.SetSuperTip(this.gpgLabel8, null);
     this.gpgLabel8.TabIndex = 0x16;
     this.gpgLabel8.Text = "<LOC>Name";
     this.gpgLabel8.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgLabel8.TextStyle = TextStyles.Custom;
     this.gpgPanelUpActivity.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelUpActivity.AutoScroll = true;
     this.gpgPanelUpActivity.BackColor = Color.Transparent;
     this.gpgPanelUpActivity.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelUpActivity.BorderThickness = 2;
     this.gpgPanelUpActivity.DrawBorder = false;
     this.gpgPanelUpActivity.Location = new Point(6, 0x2c);
     this.gpgPanelUpActivity.Name = "gpgPanelUpActivity";
     this.gpgPanelUpActivity.Size = new Size(0x3d7, 0xd8);
     base.ttDefault.SetSuperTip(this.gpgPanelUpActivity, null);
     this.gpgPanelUpActivity.TabIndex = 0x13;
     this.skinLabel6.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel6.AutoStyle = false;
     this.skinLabel6.BackColor = Color.Transparent;
     this.skinLabel6.DrawEdges = true;
     this.skinLabel6.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel6.ForeColor = Color.White;
     this.skinLabel6.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel6.IsStyled = false;
     this.skinLabel6.Location = new Point(0, 0);
     this.skinLabel6.Name = "skinLabel6";
     this.skinLabel6.Size = new Size(0x3e4, 20);
     this.skinLabel6.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel6, null);
     this.skinLabel6.TabIndex = 0x12;
     this.skinLabel6.Text = "<LOC>Uploads";
     this.skinLabel6.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel6.TextPadding = new Padding(0);
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x400, 0x300);
     base.Controls.Add(this.gpgPanelDownload);
     base.Controls.Add(this.gpgPanelUpload);
     base.Controls.Add(this.gpgPanelMyContent);
     base.Controls.Add(this.gpgPanelActivity);
     base.Controls.Add(this.tabMyContent);
     base.Controls.Add(this.tabDownload);
     base.Controls.Add(this.tabUpload);
     base.Controls.Add(this.tabActivity);
     base.Controls.Add(this.msQuickButtons);
     base.Controls.Add(this.gpgPanel2);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(0x200, 0x174);
     base.Name = "DlgContentManager";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>The Vault";
     base.Controls.SetChildIndex(this.gpgPanel2, 0);
     base.Controls.SetChildIndex(this.msQuickButtons, 0);
     base.Controls.SetChildIndex(this.tabActivity, 0);
     base.Controls.SetChildIndex(this.tabUpload, 0);
     base.Controls.SetChildIndex(this.tabDownload, 0);
     base.Controls.SetChildIndex(this.tabMyContent, 0);
     base.Controls.SetChildIndex(this.gpgPanelActivity, 0);
     base.Controls.SetChildIndex(this.gpgPanelMyContent, 0);
     base.Controls.SetChildIndex(this.gpgPanelUpload, 0);
     base.Controls.SetChildIndex(this.gpgPanelDownload, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgPanelMyContent.ResumeLayout(false);
     this.splitContainerMyContent.Panel1.ResumeLayout(false);
     this.splitContainerMyContent.Panel2.ResumeLayout(false);
     this.splitContainerMyContent.ResumeLayout(false);
     this.gpgPanelDownload.ResumeLayout(false);
     this.splitContainerDownload.Panel1.ResumeLayout(false);
     this.splitContainerDownload.Panel2.ResumeLayout(false);
     this.splitContainerDownload.ResumeLayout(false);
     this.gpgGroupBoxResults.ResumeLayout(false);
     this.dataGridSearchResults.EndInit();
     this.gvResults.EndInit();
     this.repositoryItemPictureEdit1.EndInit();
     this.repositoryItemRatingStars.EndInit();
     this.repositoryItemChatLink.EndInit();
     this.repositoryItemVersionLink.EndInit();
     this.gpgGroupBoxCriteria.ResumeLayout(false);
     this.gpgPanelSearchCriteria.ResumeLayout(false);
     this.gpgPanelSearchCriteria.PerformLayout();
     this.gpgTextBoxSearchCreator.Properties.EndInit();
     this.gpgTextBoxSearchName.Properties.EndInit();
     this.gpgTextBoxSearchKeywords.Properties.EndInit();
     this.gpgPanelUpload.ResumeLayout(false);
     this.splitContainerUpload.Panel1.ResumeLayout(false);
     this.splitContainerUpload.Panel1.PerformLayout();
     this.splitContainerUpload.Panel2.ResumeLayout(false);
     this.splitContainerUpload.ResumeLayout(false);
     ((ISupportInitialize) this.pictureBoxRefreshUploads).EndInit();
     this.gpgGroupBoxUploadVersion.ResumeLayout(false);
     this.gpgPanelUploadVersion.ResumeLayout(false);
     this.gpgPanelUploadVersion.PerformLayout();
     this.gpgTextAreaVersionNotes.Properties.EndInit();
     this.gpgGroupBoxUploadGeneral.ResumeLayout(false);
     this.gpgPanelUploadGeneral.ResumeLayout(false);
     this.gpgTextBoxUploadSearchKeywords.Properties.EndInit();
     this.gpgTextBoxUploadDesc.Properties.EndInit();
     this.gpgTextBoxUploadName.Properties.EndInit();
     this.msQuickButtons.ResumeLayout(false);
     this.msQuickButtons.PerformLayout();
     this.gpgPanelActivity.ResumeLayout(false);
     this.splitContainerActivity.Panel1.ResumeLayout(false);
     this.splitContainerActivity.Panel2.ResumeLayout(false);
     this.splitContainerActivity.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 45
0
        private void InitializeComponent()
        {
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmDbSearch));

            repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
            repositoryItemDateEdit1    = new RepositoryItemDateEdit();
            groupBox1     = new GroupBox();
            labelControl6 = new LabelControl();
            cbSex         = new ComboBoxEdit();
            labelControl3 = new LabelControl();
            labelControl1 = new LabelControl();
            spinEdit1     = new SpinEdit();
            lbDate        = new LabelControl();
            tbScore       = new TextEdit();
            lbInfo        = new Label();
            btSearch      = new SimpleButton();
            btLoadPicture = new SimpleButton();
            pictureEdit1  = new PictureEdit();
            gbDate        = new GroupBox();
            labelControl5 = new LabelControl();
            labelControl4 = new LabelControl();
            dtBefore      = new DateEdit();
            dtFrom        = new DateEdit();
            gridControl1  = new GridControl();
            gridView1     = new GridView();
            colFaceID     = new GridColumn();
            colPicture    = new GridColumn();
            colName       = new GridColumn();
            colScore      = new GridColumn();
            colBirthday   = new GridColumn();
            colCategory   = new GridColumn();
            colPosition   = new GridColumn();
            btPrint       = new SimpleButton();
            labelControl2 = new LabelControl();
            marqueeProgressBarControl1 = new MarqueeProgressBarControl();
            btClearResults             = new SimpleButton();
            repositoryItemPictureEdit1.BeginInit();
            repositoryItemDateEdit1.BeginInit();
            repositoryItemDateEdit1.VistaTimeProperties.BeginInit();
            groupBox1.SuspendLayout();
            cbSex.Properties.BeginInit();
            spinEdit1.Properties.BeginInit();
            tbScore.Properties.BeginInit();
            pictureEdit1.Properties.BeginInit();
            gbDate.SuspendLayout();
            dtBefore.Properties.VistaTimeProperties.BeginInit();
            dtBefore.Properties.BeginInit();
            dtFrom.Properties.VistaTimeProperties.BeginInit();
            dtFrom.Properties.BeginInit();
            gridControl1.BeginInit();
            gridView1.BeginInit();
            marqueeProgressBarControl1.Properties.BeginInit();
            SuspendLayout();
            repositoryItemPictureEdit1.Name             = "repositoryItemPictureEdit1";
            repositoryItemPictureEdit1.PictureStoreMode = PictureStoreMode.ByteArray;
            repositoryItemPictureEdit1.SizeMode         = PictureSizeMode.Zoom;
            componentResourceManager.ApplyResources(repositoryItemDateEdit1, "repositoryItemDateEdit1");
            repositoryItemDateEdit1.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton((ButtonPredefines)componentResourceManager.GetObject("repositoryItemDateEdit1.Buttons"))
            });
            repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
            repositoryItemDateEdit1.VistaTimeProperties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton()
            });
            groupBox1.Controls.Add(labelControl6);
            groupBox1.Controls.Add(cbSex);
            groupBox1.Controls.Add(labelControl3);
            groupBox1.Controls.Add(labelControl1);
            groupBox1.Controls.Add(spinEdit1);
            groupBox1.Controls.Add(lbDate);
            groupBox1.Controls.Add(tbScore);
            groupBox1.Controls.Add(lbInfo);
            groupBox1.Controls.Add(btSearch);
            groupBox1.Controls.Add(btLoadPicture);
            groupBox1.Controls.Add(pictureEdit1);
            groupBox1.Controls.Add(gbDate);
            componentResourceManager.ApplyResources(groupBox1, "groupBox1");
            groupBox1.Name                = "groupBox1";
            groupBox1.TabStop             = false;
            groupBox1.Enter              += groupBox1_Enter;
            labelControl6.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl6.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl6, "labelControl6");
            labelControl6.Name = "labelControl6";
            componentResourceManager.ApplyResources(cbSex, "cbSex");
            cbSex.Name = "cbSex";
            cbSex.Properties.AutoHeight = (bool)componentResourceManager.GetObject("cbSex.Properties.AutoHeight");
            cbSex.Properties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton((ButtonPredefines)componentResourceManager.GetObject("cbSex.Properties.Buttons"))
            });
            cbSex.Properties.Items.AddRange(new object[2]
            {
                componentResourceManager.GetString("cbSex.Properties.Items"),
                componentResourceManager.GetString("cbSex.Properties.Items1")
            });
            labelControl3.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl3.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl3, "labelControl3");
            labelControl3.Name            = "labelControl3";
            labelControl1.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl1.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl1, "labelControl1");
            labelControl1.Name = "labelControl1";
            componentResourceManager.ApplyResources(spinEdit1, "spinEdit1");
            spinEdit1.Name = "spinEdit1";
            spinEdit1.Properties.AutoHeight = (bool)componentResourceManager.GetObject("spinEdit1.Properties.AutoHeight");
            spinEdit1.Properties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton()
            });
            lbDate.Appearance.Font = (Font)componentResourceManager.GetObject("lbDate.Appearance.Font");
            componentResourceManager.ApplyResources(lbDate, "lbDate");
            lbDate.Name = "lbDate";
            componentResourceManager.ApplyResources(tbScore, "tbScore");
            tbScore.Name = "tbScore";
            tbScore.Properties.Appearance.Font            = (Font)componentResourceManager.GetObject("tbScore.Properties.Appearance.Font");
            tbScore.Properties.Appearance.Options.UseFont = true;
            tbScore.TextChanged += tbScore_TextChanged;
            tbScore.Validating  += tbScore_Validating;
            componentResourceManager.ApplyResources(lbInfo, "lbInfo");
            lbInfo.Name = "lbInfo";
            btSearch.Appearance.Font            = (Font)componentResourceManager.GetObject("btSearch.Appearance.Font");
            btSearch.Appearance.Options.UseFont = true;
            componentResourceManager.ApplyResources(btSearch, "btSearch");
            btSearch.Name   = "btSearch";
            btSearch.Click += simpleButton2_Click;
            btLoadPicture.Appearance.Font            = (Font)componentResourceManager.GetObject("btLoadPicture.Appearance.Font");
            btLoadPicture.Appearance.Options.UseFont = true;
            componentResourceManager.ApplyResources(btLoadPicture, "btLoadPicture");
            btLoadPicture.Name   = "btLoadPicture";
            btLoadPicture.Click += btLoadPicture_Click;
            componentResourceManager.ApplyResources(pictureEdit1, "pictureEdit1");
            pictureEdit1.Name = "pictureEdit1";
            pictureEdit1.Properties.SizeMode = PictureSizeMode.Zoom;
            gbDate.Controls.Add(labelControl5);
            gbDate.Controls.Add(labelControl4);
            gbDate.Controls.Add(dtBefore);
            gbDate.Controls.Add(dtFrom);
            componentResourceManager.ApplyResources(gbDate, "gbDate");
            gbDate.Name    = "gbDate";
            gbDate.TabStop = false;
            labelControl5.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl5.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl5, "labelControl5");
            labelControl5.Name            = "labelControl5";
            labelControl4.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl4.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl4, "labelControl4");
            labelControl4.Name = "labelControl4";
            componentResourceManager.ApplyResources(dtBefore, "dtBefore");
            dtBefore.Name = "dtBefore";
            dtBefore.Properties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton((ButtonPredefines)componentResourceManager.GetObject("dtBefore.Properties.Buttons"))
            });
            dtBefore.Properties.VistaTimeProperties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton()
            });
            componentResourceManager.ApplyResources(dtFrom, "dtFrom");
            dtFrom.Name = "dtFrom";
            dtFrom.Properties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton((ButtonPredefines)componentResourceManager.GetObject("dtFrom.Properties.Buttons"))
            });
            dtFrom.Properties.VistaTimeProperties.Buttons.AddRange(new EditorButton[1]
            {
                new EditorButton()
            });
            componentResourceManager.ApplyResources(gridControl1, "gridControl1");
            gridControl1.LookAndFeel.SkinName = "Office 2007 Blue";
            gridControl1.MainView             = gridView1;
            gridControl1.Name = "gridControl1";
            gridControl1.ViewCollection.AddRange(new BaseView[1]
            {
                gridView1
            });
            gridView1.ColumnPanelRowHeight = 50;
            gridView1.Columns.AddRange(new GridColumn[7]
            {
                colFaceID,
                colPicture,
                colName,
                colScore,
                colBirthday,
                colCategory,
                colPosition
            });
            gridView1.GridControl                      = gridControl1;
            gridView1.IndicatorWidth                   = 60;
            gridView1.Name                             = "gridView1";
            gridView1.OptionsBehavior.Editable         = false;
            gridView1.OptionsCustomization.AllowFilter = false;
            gridView1.OptionsFind.ClearFindOnClose     = false;
            gridView1.OptionsFind.FindDelay            = 10000;
            gridView1.OptionsFind.FindMode             = FindMode.Always;
            gridView1.OptionsFind.ShowCloseButton      = false;
            gridView1.OptionsSelection.MultiSelect     = true;
            gridView1.OptionsView.RowAutoHeight        = true;
            gridView1.OptionsView.ShowGroupPanel       = false;
            gridView1.SortInfo.AddRange(new GridColumnSortInfo[1]
            {
                new GridColumnSortInfo(colScore, ColumnSortOrder.Descending)
            });
            gridView1.CustomDrawRowIndicator                 += gridView1_CustomDrawRowIndicator;
            colFaceID.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colFaceID.AppearanceCell.Font");
            colFaceID.AppearanceCell.Options.UseFont          = true;
            colFaceID.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colFaceID.AppearanceHeader.Font");
            colFaceID.AppearanceHeader.Options.UseFont        = true;
            colFaceID.AppearanceHeader.Options.UseTextOptions = true;
            colFaceID.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            componentResourceManager.ApplyResources(colFaceID, "colFaceID");
            colFaceID.FieldName = "FaceID";
            colFaceID.Name      = "colFaceID";
            colFaceID.OptionsColumn.AllowEdit                  = false;
            colFaceID.OptionsColumn.ReadOnly                   = true;
            colPicture.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colPicture.AppearanceCell.Font");
            colPicture.AppearanceCell.Options.UseFont          = true;
            colPicture.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colPicture.AppearanceHeader.Font");
            colPicture.AppearanceHeader.Options.UseFont        = true;
            colPicture.AppearanceHeader.Options.UseTextOptions = true;
            colPicture.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            componentResourceManager.ApplyResources(colPicture, "colPicture");
            colPicture.ColumnEdit = repositoryItemPictureEdit1;
            colPicture.FieldName  = "Image";
            colPicture.Name       = "colPicture";
            colPicture.OptionsColumn.AllowEdit              = false;
            colPicture.OptionsColumn.AllowSort              = DefaultBoolean.False;
            colPicture.OptionsColumn.ReadOnly               = true;
            colName.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colName.AppearanceCell.Font");
            colName.AppearanceCell.Options.UseFont          = true;
            colName.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colName.AppearanceHeader.Font");
            colName.AppearanceHeader.Options.UseFont        = true;
            colName.AppearanceHeader.Options.UseTextOptions = true;
            colName.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            componentResourceManager.ApplyResources(colName, "colName");
            colName.FieldName = "Name";
            colName.Name      = "colName";
            colName.OptionsColumn.AllowEdit                  = false;
            colName.OptionsColumn.ReadOnly                   = true;
            colScore.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colScore.AppearanceCell.Font");
            colScore.AppearanceCell.Options.UseFont          = true;
            colScore.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colScore.AppearanceHeader.Font");
            colScore.AppearanceHeader.Options.UseFont        = true;
            colScore.AppearanceHeader.Options.UseTextOptions = true;
            colScore.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            colScore.AppearanceHeader.TextOptions.WordWrap   = WordWrap.Wrap;
            componentResourceManager.ApplyResources(colScore, "colScore");
            colScore.FieldName = "Score";
            colScore.Name      = "colScore";
            colScore.OptionsColumn.AllowEdit                    = false;
            colScore.OptionsColumn.FixedWidth                   = true;
            colScore.OptionsColumn.ReadOnly                     = true;
            colBirthday.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colBirthday.AppearanceCell.Font");
            colBirthday.AppearanceCell.Options.UseFont          = true;
            colBirthday.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colBirthday.AppearanceHeader.Font");
            colBirthday.AppearanceHeader.Options.UseFont        = true;
            colBirthday.AppearanceHeader.Options.UseTextOptions = true;
            colBirthday.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            colBirthday.AppearanceHeader.TextOptions.WordWrap   = WordWrap.Wrap;
            componentResourceManager.ApplyResources(colBirthday, "colBirthday");
            colBirthday.ColumnEdit = repositoryItemDateEdit1;
            colBirthday.DisplayFormat.FormatString = "dd.MM.yyyy HH:mm:ss";
            colBirthday.DisplayFormat.FormatType   = FormatType.DateTime;
            colBirthday.FieldName = "Birthday";
            colBirthday.Name      = "colBirthday";
            colBirthday.OptionsColumn.AllowEdit                 = false;
            colBirthday.OptionsColumn.ReadOnly                  = true;
            colCategory.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colCategory.AppearanceCell.Font");
            colCategory.AppearanceCell.Options.UseFont          = true;
            colCategory.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colCategory.AppearanceHeader.Font");
            colCategory.AppearanceHeader.Options.UseFont        = true;
            colCategory.AppearanceHeader.Options.UseTextOptions = true;
            colCategory.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            componentResourceManager.ApplyResources(colCategory, "colCategory");
            colCategory.FieldName = "Category";
            colCategory.Name      = "colCategory";
            colCategory.OptionsColumn.ReadOnly                  = true;
            colPosition.AppearanceCell.Font                     = (Font)componentResourceManager.GetObject("colPosition.AppearanceCell.Font");
            colPosition.AppearanceCell.Options.UseFont          = true;
            colPosition.AppearanceHeader.Font                   = (Font)componentResourceManager.GetObject("colPosition.AppearanceHeader.Font");
            colPosition.AppearanceHeader.Options.UseFont        = true;
            colPosition.AppearanceHeader.Options.UseTextOptions = true;
            colPosition.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Center;
            colPosition.AppearanceHeader.TextOptions.WordWrap   = WordWrap.Wrap;
            componentResourceManager.ApplyResources(colPosition, "colPosition");
            colPosition.FieldName = "Comment";
            colPosition.Name      = "colPosition";
            colPosition.OptionsColumn.AllowEdit = false;
            colPosition.OptionsColumn.ReadOnly  = true;
            componentResourceManager.ApplyResources(btPrint, "btPrint");
            btPrint.Appearance.Font            = (Font)componentResourceManager.GetObject("btPrint.Appearance.Font");
            btPrint.Appearance.Options.UseFont = true;
            btPrint.Name   = "btPrint";
            btPrint.Click += btPrint_Click;
            labelControl2.Appearance.Font = (Font)componentResourceManager.GetObject("labelControl2.Appearance.Font");
            componentResourceManager.ApplyResources(labelControl2, "labelControl2");
            labelControl2.Name = "labelControl2";
            componentResourceManager.ApplyResources(marqueeProgressBarControl1, "marqueeProgressBarControl1");
            marqueeProgressBarControl1.Name              = "marqueeProgressBarControl1";
            marqueeProgressBarControl1.EditValueChanged += marqueeProgressBarControl1_EditValueChanged;
            componentResourceManager.ApplyResources(btClearResults, "btClearResults");
            btClearResults.Appearance.Font            = (Font)componentResourceManager.GetObject("btClearResults.Appearance.Font");
            btClearResults.Appearance.Options.UseFont = true;
            btClearResults.Name        = "btClearResults";
            btClearResults.Click      += btClearResults_Click;
            Appearance.Font            = (Font)componentResourceManager.GetObject("frmDBSearch.Appearance.Font");
            Appearance.Options.UseFont = true;
            AutoScaleMode = AutoScaleMode.None;
            componentResourceManager.ApplyResources(this, "$this");
            Controls.Add(btClearResults);
            Controls.Add(labelControl2);
            Controls.Add(marqueeProgressBarControl1);
            Controls.Add(groupBox1);
            Controls.Add(btPrint);
            Controls.Add(gridControl1);
            FormBorderStyle = FormBorderStyle.None;
            Name            = "FrmDbSearch";
            ShowIcon        = false;
            WindowState     = FormWindowState.Maximized;
            FormClosing    += frmLogSearch_FormClosing;
            Load           += frmDBSearch_Load;
            Resize         += frmDBSearch_Resize;
            repositoryItemPictureEdit1.EndInit();
            repositoryItemDateEdit1.VistaTimeProperties.EndInit();
            repositoryItemDateEdit1.EndInit();
            groupBox1.ResumeLayout(false);
            groupBox1.PerformLayout();
            cbSex.Properties.EndInit();
            spinEdit1.Properties.EndInit();
            tbScore.Properties.EndInit();
            pictureEdit1.Properties.EndInit();
            gbDate.ResumeLayout(false);
            gbDate.PerformLayout();
            dtBefore.Properties.VistaTimeProperties.EndInit();
            dtBefore.Properties.EndInit();
            dtFrom.Properties.VistaTimeProperties.EndInit();
            dtFrom.Properties.EndInit();
            gridControl1.EndInit();
            gridView1.EndInit();
            marqueeProgressBarControl1.Properties.EndInit();
            ResumeLayout(false);
            PerformLayout();
        }
Exemplo n.º 46
0
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(DlgVaultQuickSearch));
     this.skinButtonOK = new SkinButton();
     this.skinButtonCancel = new SkinButton();
     this.splitContainerDownload = new SplitContainer();
     this.treeViewDownloadType = new TreeView();
     this.treeViewSavedSearches = new TreeView();
     this.skinLabel1 = new SkinLabel();
     this.skinLabel2 = new SkinLabel();
     this.gpgGroupBoxResults = new SkinGroupPanel();
     this.skinButtonSearchNext = new SkinButton();
     this.skinLabelSearchPage = new SkinLabel();
     this.dataGridSearchResults = new GPGDataGrid();
     this.gvResults = new GridView();
     this.gcDownload = new GridColumn();
     this.gcName = new GridColumn();
     this.gcOwner = new GridColumn();
     this.gcVersion = new GridColumn();
     this.gcDate = new GridColumn();
     this.gcDownloads = new GridColumn();
     this.gcRating = new GridColumn();
     this.repositoryItemPictureEdit1 = new RepositoryItemPictureEdit();
     this.repositoryItemRatingStars = new RepositoryItemPictureEdit();
     this.repositoryItemChatLink = new RepositoryItemHyperLinkEdit();
     this.repositoryItemVersionLink = new RepositoryItemHyperLinkEdit();
     this.skinButtonSearchStart = new SkinButton();
     this.skinButtonSearchPrevious = new SkinButton();
     this.gpgGroupBoxCriteria = new SkinGroupPanel();
     this.skinButtonRunSearch = new SkinButton();
     this.gpgPanelSearchCriteria = new GPGPanel();
     this.skinButtonSearchType = new SkinButton();
     this.gpgLabelSearchType = new GPGLabel();
     this.gpgTextBoxSearchCreator = new GPGTextBox();
     this.gpgLabel16 = new GPGLabel();
     this.gpgTextBoxSearchName = new GPGTextBox();
     this.gpgLabel1 = new GPGLabel();
     this.gpgTextBoxSearchKeywords = new GPGTextBox();
     this.gpgLabel21 = new GPGLabel();
     this.gpgPanel1 = new GPGPanel();
     this.imageListContentTypes = new ImageList(this.components);
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.splitContainerDownload.Panel1.SuspendLayout();
     this.splitContainerDownload.Panel2.SuspendLayout();
     this.splitContainerDownload.SuspendLayout();
     this.gpgGroupBoxResults.SuspendLayout();
     this.dataGridSearchResults.BeginInit();
     this.gvResults.BeginInit();
     this.repositoryItemPictureEdit1.BeginInit();
     this.repositoryItemRatingStars.BeginInit();
     this.repositoryItemChatLink.BeginInit();
     this.repositoryItemVersionLink.BeginInit();
     this.gpgGroupBoxCriteria.SuspendLayout();
     this.gpgPanelSearchCriteria.SuspendLayout();
     this.gpgTextBoxSearchCreator.Properties.BeginInit();
     this.gpgTextBoxSearchName.Properties.BeginInit();
     this.gpgTextBoxSearchKeywords.Properties.BeginInit();
     this.gpgPanel1.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x374, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.skinButtonOK.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonOK.AutoStyle = true;
     this.skinButtonOK.BackColor = Color.Transparent;
     this.skinButtonOK.ButtonState = 0;
     this.skinButtonOK.DialogResult = DialogResult.OK;
     this.skinButtonOK.DisabledForecolor = Color.Gray;
     this.skinButtonOK.DrawColor = Color.White;
     this.skinButtonOK.DrawEdges = true;
     this.skinButtonOK.FocusColor = Color.Yellow;
     this.skinButtonOK.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonOK.ForeColor = Color.White;
     this.skinButtonOK.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonOK.IsStyled = true;
     this.skinButtonOK.Location = new Point(0x2a3, 0x288);
     this.skinButtonOK.Name = "skinButtonOK";
     this.skinButtonOK.Size = new Size(0x7d, 0x1a);
     this.skinButtonOK.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonOK, null);
     this.skinButtonOK.TabIndex = 0x11;
     this.skinButtonOK.TabStop = true;
     this.skinButtonOK.Text = "<LOC>OK";
     this.skinButtonOK.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonOK.TextPadding = new Padding(0);
     this.skinButtonOK.Click += new EventHandler(this.skinButtonOK_Click);
     this.skinButtonCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonCancel.AutoStyle = true;
     this.skinButtonCancel.BackColor = Color.Transparent;
     this.skinButtonCancel.ButtonState = 0;
     this.skinButtonCancel.DialogResult = DialogResult.OK;
     this.skinButtonCancel.DisabledForecolor = Color.Gray;
     this.skinButtonCancel.DrawColor = Color.White;
     this.skinButtonCancel.DrawEdges = true;
     this.skinButtonCancel.FocusColor = Color.Yellow;
     this.skinButtonCancel.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonCancel.ForeColor = Color.White;
     this.skinButtonCancel.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonCancel.IsStyled = true;
     this.skinButtonCancel.Location = new Point(0x326, 0x288);
     this.skinButtonCancel.Name = "skinButtonCancel";
     this.skinButtonCancel.Size = new Size(0x7d, 0x1a);
     this.skinButtonCancel.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonCancel, null);
     this.skinButtonCancel.TabIndex = 0x12;
     this.skinButtonCancel.TabStop = true;
     this.skinButtonCancel.Text = "<LOC>Cancel";
     this.skinButtonCancel.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonCancel.TextPadding = new Padding(0);
     this.skinButtonCancel.Click += new EventHandler(this.skinButtonCancel_Click);
     this.splitContainerDownload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.splitContainerDownload.BackColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.splitContainerDownload.Location = new Point(2, 2);
     this.splitContainerDownload.Name = "splitContainerDownload";
     this.splitContainerDownload.Panel1.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.splitContainerDownload.Panel1.Controls.Add(this.treeViewDownloadType);
     this.splitContainerDownload.Panel1.Controls.Add(this.treeViewSavedSearches);
     this.splitContainerDownload.Panel1.Controls.Add(this.skinLabel1);
     this.splitContainerDownload.Panel1.Controls.Add(this.skinLabel2);
     base.ttDefault.SetSuperTip(this.splitContainerDownload.Panel1, null);
     this.splitContainerDownload.Panel2.BackgroundImage = (Image) manager.GetObject("splitContainerDownload.Panel2.BackgroundImage");
     this.splitContainerDownload.Panel2.Controls.Add(this.gpgGroupBoxResults);
     this.splitContainerDownload.Panel2.Controls.Add(this.gpgGroupBoxCriteria);
     base.ttDefault.SetSuperTip(this.splitContainerDownload.Panel2, null);
     this.splitContainerDownload.Size = new Size(920, 0x22f);
     this.splitContainerDownload.SplitterDistance = 0xcf;
     this.splitContainerDownload.SplitterWidth = 2;
     base.ttDefault.SetSuperTip(this.splitContainerDownload, null);
     this.splitContainerDownload.TabIndex = 0x13;
     this.treeViewDownloadType.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.treeViewDownloadType.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewDownloadType.BorderStyle = BorderStyle.None;
     this.treeViewDownloadType.HideSelection = false;
     this.treeViewDownloadType.Location = new Point(0, 0x1a);
     this.treeViewDownloadType.Name = "treeViewDownloadType";
     this.treeViewDownloadType.Size = new Size(0xcf, 0x80);
     base.ttDefault.SetSuperTip(this.treeViewDownloadType, null);
     this.treeViewDownloadType.TabIndex = 0;
     this.treeViewDownloadType.AfterSelect += new TreeViewEventHandler(this.treeViewDownloadType_AfterSelect);
     this.treeViewSavedSearches.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.treeViewSavedSearches.BackColor = Color.FromArgb(0x33, 0x33, 0x33);
     this.treeViewSavedSearches.BorderStyle = BorderStyle.None;
     this.treeViewSavedSearches.HideSelection = false;
     this.treeViewSavedSearches.Location = new Point(0, 180);
     this.treeViewSavedSearches.Name = "treeViewSavedSearches";
     this.treeViewSavedSearches.Size = new Size(0xcf, 0x17b);
     base.ttDefault.SetSuperTip(this.treeViewSavedSearches, null);
     this.treeViewSavedSearches.TabIndex = 1;
     this.treeViewSavedSearches.AfterSelect += new TreeViewEventHandler(this.treeViewSavedSearches_AfterSelect);
     this.skinLabel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel1.AutoStyle = false;
     this.skinLabel1.BackColor = Color.Transparent;
     this.skinLabel1.DrawEdges = true;
     this.skinLabel1.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel1.ForeColor = Color.White;
     this.skinLabel1.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel1.IsStyled = false;
     this.skinLabel1.Location = new Point(0, 0x9a);
     this.skinLabel1.Name = "skinLabel1";
     this.skinLabel1.Size = new Size(0xcf, 20);
     this.skinLabel1.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel1, null);
     this.skinLabel1.TabIndex = 15;
     this.skinLabel1.Text = "<LOC>Saved Searches";
     this.skinLabel1.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel1.TextPadding = new Padding(0);
     this.skinLabel2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.skinLabel2.AutoStyle = false;
     this.skinLabel2.BackColor = Color.Transparent;
     this.skinLabel2.DrawEdges = true;
     this.skinLabel2.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabel2.ForeColor = Color.White;
     this.skinLabel2.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabel2.IsStyled = false;
     this.skinLabel2.Location = new Point(0, 0);
     this.skinLabel2.Name = "skinLabel2";
     this.skinLabel2.Size = new Size(0xcf, 20);
     this.skinLabel2.SkinBasePath = @"Controls\Background Label\BlueGradient";
     base.ttDefault.SetSuperTip(this.skinLabel2, null);
     this.skinLabel2.TabIndex = 0x10;
     this.skinLabel2.Text = "<LOC>Search For";
     this.skinLabel2.TextAlign = ContentAlignment.MiddleLeft;
     this.skinLabel2.TextPadding = new Padding(0);
     this.gpgGroupBoxResults.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgGroupBoxResults.AutoStyle = false;
     this.gpgGroupBoxResults.BackColor = Color.Black;
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchNext);
     this.gpgGroupBoxResults.Controls.Add(this.skinLabelSearchPage);
     this.gpgGroupBoxResults.Controls.Add(this.dataGridSearchResults);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchStart);
     this.gpgGroupBoxResults.Controls.Add(this.skinButtonSearchPrevious);
     this.gpgGroupBoxResults.CutCorner = false;
     this.gpgGroupBoxResults.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxResults.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxResults.IsStyled = true;
     this.gpgGroupBoxResults.Location = new Point(4, 0x7d);
     this.gpgGroupBoxResults.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxResults.Name = "gpgGroupBoxResults";
     this.gpgGroupBoxResults.Size = new Size(700, 0x1ad);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxResults, null);
     this.gpgGroupBoxResults.TabIndex = 0x10;
     this.gpgGroupBoxResults.Text = "<LOC>Search Results";
     this.gpgGroupBoxResults.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxResults.TextPadding = new Padding(8, 0, 0, 0);
     this.skinButtonSearchNext.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonSearchNext.AutoStyle = true;
     this.skinButtonSearchNext.BackColor = Color.Black;
     this.skinButtonSearchNext.ButtonState = 0;
     this.skinButtonSearchNext.DialogResult = DialogResult.OK;
     this.skinButtonSearchNext.DisabledForecolor = Color.Gray;
     this.skinButtonSearchNext.DrawColor = Color.White;
     this.skinButtonSearchNext.DrawEdges = false;
     this.skinButtonSearchNext.FocusColor = Color.Yellow;
     this.skinButtonSearchNext.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchNext.ForeColor = Color.White;
     this.skinButtonSearchNext.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchNext.IsStyled = true;
     this.skinButtonSearchNext.Location = new Point(0x290, 0x193);
     this.skinButtonSearchNext.Name = "skinButtonSearchNext";
     this.skinButtonSearchNext.Size = new Size(40, 0x16);
     this.skinButtonSearchNext.SkinBasePath = @"Controls\Button\Next_End";
     base.ttDefault.SetSuperTip(this.skinButtonSearchNext, null);
     this.skinButtonSearchNext.TabIndex = 7;
     this.skinButtonSearchNext.TabStop = true;
     this.skinButtonSearchNext.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchNext.TextPadding = new Padding(0);
     this.skinButtonSearchNext.Click += new EventHandler(this.skinButtonSearchNext_Click);
     this.skinLabelSearchPage.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinLabelSearchPage.AutoStyle = false;
     this.skinLabelSearchPage.BackColor = Color.Transparent;
     this.skinLabelSearchPage.DrawEdges = true;
     this.skinLabelSearchPage.Font = new Font("Verdana", 10f, FontStyle.Bold);
     this.skinLabelSearchPage.ForeColor = Color.White;
     this.skinLabelSearchPage.HorizontalScalingMode = ScalingModes.Tile;
     this.skinLabelSearchPage.IsStyled = false;
     this.skinLabelSearchPage.Location = new Point(0x54, 0x193);
     this.skinLabelSearchPage.Name = "skinLabelSearchPage";
     this.skinLabelSearchPage.Size = new Size(0x23c, 0x16);
     this.skinLabelSearchPage.SkinBasePath = @"Controls\Background Label\BlackBar";
     base.ttDefault.SetSuperTip(this.skinLabelSearchPage, null);
     this.skinLabelSearchPage.TabIndex = 0x19;
     this.skinLabelSearchPage.Text = "<LOC>No Results";
     this.skinLabelSearchPage.TextAlign = ContentAlignment.MiddleCenter;
     this.skinLabelSearchPage.TextPadding = new Padding(0);
     this.dataGridSearchResults.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.dataGridSearchResults.CustomizeStyle = false;
     this.dataGridSearchResults.EmbeddedNavigator.Name = "";
     this.dataGridSearchResults.Location = new Point(4, 0x16);
     this.dataGridSearchResults.MainView = this.gvResults;
     this.dataGridSearchResults.Name = "dataGridSearchResults";
     this.dataGridSearchResults.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemRatingStars, this.repositoryItemChatLink, this.repositoryItemPictureEdit1, this.repositoryItemVersionLink });
     this.dataGridSearchResults.ShowOnlyPredefinedDetails = true;
     this.dataGridSearchResults.Size = new Size(0x2b4, 0x179);
     this.dataGridSearchResults.TabIndex = 0x18;
     this.dataGridSearchResults.ViewCollection.AddRange(new BaseView[] { this.gvResults });
     this.dataGridSearchResults.DoubleClick += new EventHandler(this.dataGridSearchResults_DoubleClick);
     this.gvResults.Appearance.EvenRow.BackColor = Color.Black;
     this.gvResults.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvResults.Appearance.OddRow.BackColor = Color.Black;
     this.gvResults.Appearance.OddRow.Options.UseBackColor = true;
     this.gvResults.Appearance.Preview.ForeColor = Color.Silver;
     this.gvResults.Appearance.Preview.Options.UseForeColor = true;
     this.gvResults.Appearance.SelectedRow.BackColor = Color.FromArgb(0x33, 0x33, 0x65);
     this.gvResults.Appearance.SelectedRow.BackColor2 = Color.Black;
     this.gvResults.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvResults.Columns.AddRange(new GridColumn[] { this.gcDownload, this.gcName, this.gcOwner, this.gcVersion, this.gcDate, this.gcDownloads, this.gcRating });
     this.gvResults.GridControl = this.dataGridSearchResults;
     this.gvResults.GroupPanelText = "<LOC>Drag a column here to group by it.";
     this.gvResults.Name = "gvResults";
     this.gvResults.OptionsBehavior.Editable = false;
     this.gvResults.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvResults.OptionsView.AutoCalcPreviewLineCount = true;
     this.gvResults.OptionsView.RowAutoHeight = true;
     this.gvResults.OptionsView.ShowPreview = true;
     this.gvResults.PreviewFieldName = "Description";
     this.gvResults.CustomDrawCell += new RowCellCustomDrawEventHandler(this.gvResults_CustomDrawCell);
     this.gvResults.MouseDown += new MouseEventHandler(this.gvResults_MouseDown);
     this.gvResults.MouseUp += new MouseEventHandler(this.gvResults_MouseUp);
     this.gvResults.MouseMove += new MouseEventHandler(this.gvResults_MouseMove);
     this.gvResults.CalcRowHeight += new RowHeightEventHandler(this.gvResults_CalcRowHeight);
     this.gcDownload.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDownload.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownload.Caption = "<LOC>Download";
     this.gcDownload.FieldName = "Download";
     this.gcDownload.Name = "gcDownload";
     this.gcDownload.ToolTip = "<LOC>Download";
     this.gcDownload.Visible = true;
     this.gcDownload.VisibleIndex = 0;
     this.gcName.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcName.AppearanceCell.Options.UseFont = true;
     this.gcName.AppearanceHeader.Options.UseTextOptions = true;
     this.gcName.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcName.Caption = "<LOC>Name";
     this.gcName.FieldName = "Name";
     this.gcName.Name = "gcName";
     this.gcName.Visible = true;
     this.gcName.VisibleIndex = 1;
     this.gcOwner.AppearanceHeader.Options.UseTextOptions = true;
     this.gcOwner.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcOwner.Caption = "<LOC>Creator";
     this.gcOwner.FieldName = "OwnerName";
     this.gcOwner.Name = "gcOwner";
     this.gcOwner.Visible = true;
     this.gcOwner.VisibleIndex = 2;
     this.gcVersion.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Underline | FontStyle.Bold);
     this.gcVersion.AppearanceCell.ForeColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gcVersion.AppearanceCell.Options.UseFont = true;
     this.gcVersion.AppearanceCell.Options.UseForeColor = true;
     this.gcVersion.AppearanceCell.Options.UseTextOptions = true;
     this.gcVersion.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcVersion.AppearanceHeader.Options.UseTextOptions = true;
     this.gcVersion.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcVersion.Caption = "<LOC>Version";
     this.gcVersion.FieldName = "Version";
     this.gcVersion.Name = "gcVersion";
     this.gcVersion.Visible = true;
     this.gcVersion.VisibleIndex = 3;
     this.gcDate.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDate.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDate.Caption = "<LOC>Date";
     this.gcDate.FieldName = "VersionDate";
     this.gcDate.Name = "gcDate";
     this.gcDate.Visible = true;
     this.gcDate.VisibleIndex = 4;
     this.gcDownloads.AppearanceCell.Options.UseTextOptions = true;
     this.gcDownloads.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownloads.AppearanceHeader.Options.UseTextOptions = true;
     this.gcDownloads.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDownloads.Caption = "<LOC>D/L";
     this.gcDownloads.FieldName = "Downloads";
     this.gcDownloads.Name = "gcDownloads";
     this.gcDownloads.Visible = true;
     this.gcDownloads.VisibleIndex = 5;
     this.gcRating.AppearanceHeader.Options.UseTextOptions = true;
     this.gcRating.AppearanceHeader.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcRating.Caption = "<LOC>Rating";
     this.gcRating.ColumnEdit = this.repositoryItemPictureEdit1;
     this.gcRating.FieldName = "RatingImageSmall";
     this.gcRating.Name = "gcRating";
     this.gcRating.Visible = true;
     this.gcRating.VisibleIndex = 6;
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     this.repositoryItemRatingStars.Name = "repositoryItemRatingStars";
     this.repositoryItemChatLink.Appearance.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.repositoryItemChatLink.Appearance.ForeColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.repositoryItemChatLink.Appearance.Options.UseFont = true;
     this.repositoryItemChatLink.Appearance.Options.UseForeColor = true;
     this.repositoryItemChatLink.Appearance.Options.UseTextOptions = true;
     this.repositoryItemChatLink.Appearance.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.Appearance.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.Options.UseTextOptions = true;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.HAlignment = HorzAlignment.Center;
     this.repositoryItemChatLink.AppearanceFocused.TextOptions.VAlignment = VertAlignment.Center;
     this.repositoryItemChatLink.AutoHeight = false;
     this.repositoryItemChatLink.LinkColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.repositoryItemChatLink.Name = "repositoryItemChatLink";
     this.repositoryItemChatLink.SingleClick = true;
     this.repositoryItemVersionLink.AutoHeight = false;
     this.repositoryItemVersionLink.Name = "repositoryItemVersionLink";
     this.skinButtonSearchStart.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonSearchStart.AutoStyle = true;
     this.skinButtonSearchStart.BackColor = Color.Black;
     this.skinButtonSearchStart.ButtonState = 0;
     this.skinButtonSearchStart.DialogResult = DialogResult.OK;
     this.skinButtonSearchStart.DisabledForecolor = Color.Gray;
     this.skinButtonSearchStart.DrawColor = Color.White;
     this.skinButtonSearchStart.DrawEdges = false;
     this.skinButtonSearchStart.FocusColor = Color.Yellow;
     this.skinButtonSearchStart.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchStart.ForeColor = Color.White;
     this.skinButtonSearchStart.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchStart.IsStyled = true;
     this.skinButtonSearchStart.Location = new Point(4, 0x193);
     this.skinButtonSearchStart.Name = "skinButtonSearchStart";
     this.skinButtonSearchStart.Size = new Size(40, 0x16);
     this.skinButtonSearchStart.SkinBasePath = @"Controls\Button\First";
     base.ttDefault.SetSuperTip(this.skinButtonSearchStart, null);
     this.skinButtonSearchStart.TabIndex = 5;
     this.skinButtonSearchStart.TabStop = true;
     this.skinButtonSearchStart.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchStart.TextPadding = new Padding(0);
     this.skinButtonSearchStart.Click += new EventHandler(this.skinButtonSearchStart_Click);
     this.skinButtonSearchPrevious.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     this.skinButtonSearchPrevious.AutoStyle = true;
     this.skinButtonSearchPrevious.BackColor = Color.Black;
     this.skinButtonSearchPrevious.ButtonState = 0;
     this.skinButtonSearchPrevious.DialogResult = DialogResult.OK;
     this.skinButtonSearchPrevious.DisabledForecolor = Color.Gray;
     this.skinButtonSearchPrevious.DrawColor = Color.White;
     this.skinButtonSearchPrevious.DrawEdges = false;
     this.skinButtonSearchPrevious.FocusColor = Color.Yellow;
     this.skinButtonSearchPrevious.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchPrevious.ForeColor = Color.White;
     this.skinButtonSearchPrevious.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonSearchPrevious.IsStyled = true;
     this.skinButtonSearchPrevious.Location = new Point(0x2c, 0x193);
     this.skinButtonSearchPrevious.Name = "skinButtonSearchPrevious";
     this.skinButtonSearchPrevious.Size = new Size(40, 0x16);
     this.skinButtonSearchPrevious.SkinBasePath = @"Controls\Button\Previous";
     base.ttDefault.SetSuperTip(this.skinButtonSearchPrevious, null);
     this.skinButtonSearchPrevious.TabIndex = 6;
     this.skinButtonSearchPrevious.TabStop = true;
     this.skinButtonSearchPrevious.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchPrevious.TextPadding = new Padding(0);
     this.skinButtonSearchPrevious.Click += new EventHandler(this.skinButtonSearchPrevious_Click);
     this.gpgGroupBoxCriteria.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     this.gpgGroupBoxCriteria.AutoStyle = false;
     this.gpgGroupBoxCriteria.BackColor = Color.Black;
     this.gpgGroupBoxCriteria.Controls.Add(this.skinButtonRunSearch);
     this.gpgGroupBoxCriteria.Controls.Add(this.gpgPanelSearchCriteria);
     this.gpgGroupBoxCriteria.CutCorner = false;
     this.gpgGroupBoxCriteria.Font = new Font("Verdana", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgGroupBoxCriteria.HeaderImage = GroupPanelImages.blue_gradient;
     this.gpgGroupBoxCriteria.IsStyled = true;
     this.gpgGroupBoxCriteria.Location = new Point(4, 5);
     this.gpgGroupBoxCriteria.Margin = new Padding(4, 3, 4, 3);
     this.gpgGroupBoxCriteria.Name = "gpgGroupBoxCriteria";
     this.gpgGroupBoxCriteria.Size = new Size(700, 0x72);
     base.ttDefault.SetSuperTip(this.gpgGroupBoxCriteria, null);
     this.gpgGroupBoxCriteria.TabIndex = 15;
     this.gpgGroupBoxCriteria.Text = "<LOC>Search Criteria";
     this.gpgGroupBoxCriteria.TextAlign = ContentAlignment.MiddleLeft;
     this.gpgGroupBoxCriteria.TextPadding = new Padding(8, 0, 0, 0);
     this.skinButtonRunSearch.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonRunSearch.AutoStyle = true;
     this.skinButtonRunSearch.BackColor = Color.Black;
     this.skinButtonRunSearch.ButtonState = 0;
     this.skinButtonRunSearch.DialogResult = DialogResult.OK;
     this.skinButtonRunSearch.DisabledForecolor = Color.Gray;
     this.skinButtonRunSearch.DrawColor = Color.White;
     this.skinButtonRunSearch.DrawEdges = true;
     this.skinButtonRunSearch.FocusColor = Color.Yellow;
     this.skinButtonRunSearch.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonRunSearch.ForeColor = Color.White;
     this.skinButtonRunSearch.HorizontalScalingMode = ScalingModes.Tile;
     this.skinButtonRunSearch.IsStyled = true;
     this.skinButtonRunSearch.Location = new Point(0x238, 0x51);
     this.skinButtonRunSearch.Name = "skinButtonRunSearch";
     this.skinButtonRunSearch.Size = new Size(0x7d, 0x1a);
     this.skinButtonRunSearch.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonRunSearch, null);
     this.skinButtonRunSearch.TabIndex = 30;
     this.skinButtonRunSearch.TabStop = true;
     this.skinButtonRunSearch.Text = "<LOC>Run Search";
     this.skinButtonRunSearch.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonRunSearch.TextPadding = new Padding(0);
     this.skinButtonRunSearch.Click += new EventHandler(this.skinButtonRunSearch_Click);
     this.gpgPanelSearchCriteria.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanelSearchCriteria.AutoScroll = true;
     this.gpgPanelSearchCriteria.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanelSearchCriteria.BorderThickness = 2;
     this.gpgPanelSearchCriteria.Controls.Add(this.skinButtonSearchType);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabelSearchType);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchCreator);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel16);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchName);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel1);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgTextBoxSearchKeywords);
     this.gpgPanelSearchCriteria.Controls.Add(this.gpgLabel21);
     this.gpgPanelSearchCriteria.DrawBorder = false;
     this.gpgPanelSearchCriteria.Location = new Point(2, 0x17);
     this.gpgPanelSearchCriteria.Name = "gpgPanelSearchCriteria";
     this.gpgPanelSearchCriteria.Size = new Size(0x2b3, 0x34);
     base.ttDefault.SetSuperTip(this.gpgPanelSearchCriteria, null);
     this.gpgPanelSearchCriteria.TabIndex = 0x1d;
     this.skinButtonSearchType.AutoStyle = true;
     this.skinButtonSearchType.BackColor = Color.Transparent;
     this.skinButtonSearchType.ButtonState = 0;
     this.skinButtonSearchType.DialogResult = DialogResult.OK;
     this.skinButtonSearchType.DisabledForecolor = Color.Gray;
     this.skinButtonSearchType.DrawColor = Color.White;
     this.skinButtonSearchType.DrawEdges = false;
     this.skinButtonSearchType.FocusColor = Color.Yellow;
     this.skinButtonSearchType.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.skinButtonSearchType.ForeColor = Color.White;
     this.skinButtonSearchType.HorizontalScalingMode = ScalingModes.Center;
     this.skinButtonSearchType.IsStyled = true;
     this.skinButtonSearchType.Location = new Point(0x295, 0x17);
     this.skinButtonSearchType.Name = "skinButtonSearchType";
     this.skinButtonSearchType.Size = new Size(0x18, 0x12);
     this.skinButtonSearchType.SkinBasePath = @"Dialog\ContentManager\BtnAdvancedSearch";
     base.ttDefault.SetSuperTip(this.skinButtonSearchType, null);
     this.skinButtonSearchType.TabIndex = 0x25;
     this.skinButtonSearchType.TabStop = true;
     this.skinButtonSearchType.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonSearchType.TextPadding = new Padding(0);
     this.skinButtonSearchType.Click += new EventHandler(this.skinButtonSearchType_Click);
     this.gpgLabelSearchType.AutoGrowDirection = GrowDirections.None;
     this.gpgLabelSearchType.AutoSize = true;
     this.gpgLabelSearchType.AutoStyle = true;
     this.gpgLabelSearchType.Font = new Font("Verdana", 6.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabelSearchType.ForeColor = Color.DimGray;
     this.gpgLabelSearchType.IgnoreMouseWheel = false;
     this.gpgLabelSearchType.IsStyled = false;
     this.gpgLabelSearchType.Location = new Point(530, 0x1a);
     this.gpgLabelSearchType.Name = "gpgLabelSearchType";
     this.gpgLabelSearchType.Size = new Size(0x7e, 12);
     base.ttDefault.SetSuperTip(this.gpgLabelSearchType, null);
     this.gpgLabelSearchType.TabIndex = 0x23;
     this.gpgLabelSearchType.Text = "<LOC>Advanced Search";
     this.gpgLabelSearchType.TextStyle = TextStyles.Custom;
     this.gpgTextBoxSearchCreator.Location = new Point(0xb9, 0x16);
     this.gpgTextBoxSearchCreator.Name = "gpgTextBoxSearchCreator";
     this.gpgTextBoxSearchCreator.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchCreator.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchCreator.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchCreator.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchCreator.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchCreator.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchCreator.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchCreator.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchCreator.Properties.MaxLength = 0x16;
     this.gpgTextBoxSearchCreator.Size = new Size(160, 20);
     this.gpgTextBoxSearchCreator.TabIndex = 0x22;
     this.gpgTextBoxSearchCreator.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgLabel16.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel16.AutoSize = true;
     this.gpgLabel16.AutoStyle = true;
     this.gpgLabel16.Font = new Font("Arial", 9.75f);
     this.gpgLabel16.ForeColor = Color.White;
     this.gpgLabel16.IgnoreMouseWheel = false;
     this.gpgLabel16.IsStyled = false;
     this.gpgLabel16.Location = new Point(0xb6, 3);
     this.gpgLabel16.Name = "gpgLabel16";
     this.gpgLabel16.Size = new Size(0x73, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel16, null);
     this.gpgLabel16.TabIndex = 0x21;
     this.gpgLabel16.Text = "<LOC>Created By";
     this.gpgLabel16.TextStyle = TextStyles.Bold;
     this.gpgTextBoxSearchName.EditValue = "";
     this.gpgTextBoxSearchName.Location = new Point(8, 0x16);
     this.gpgTextBoxSearchName.Name = "gpgTextBoxSearchName";
     this.gpgTextBoxSearchName.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchName.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchName.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchName.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchName.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchName.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchName.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchName.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchName.Properties.MaxLength = 0x100;
     this.gpgTextBoxSearchName.Size = new Size(160, 20);
     this.gpgTextBoxSearchName.TabIndex = 0x20;
     this.gpgTextBoxSearchName.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgLabel1.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel1.AutoSize = true;
     this.gpgLabel1.AutoStyle = true;
     this.gpgLabel1.Font = new Font("Arial", 9.75f);
     this.gpgLabel1.ForeColor = Color.White;
     this.gpgLabel1.IgnoreMouseWheel = false;
     this.gpgLabel1.IsStyled = false;
     this.gpgLabel1.Location = new Point(5, 3);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0x54, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 0x1f;
     this.gpgLabel1.Text = "<LOC>Name";
     this.gpgLabel1.TextStyle = TextStyles.Bold;
     this.gpgTextBoxSearchKeywords.Location = new Point(0x16c, 0x16);
     this.gpgTextBoxSearchKeywords.Name = "gpgTextBoxSearchKeywords";
     this.gpgTextBoxSearchKeywords.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxSearchKeywords.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxSearchKeywords.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxSearchKeywords.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxSearchKeywords.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxSearchKeywords.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxSearchKeywords.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxSearchKeywords.Properties.MaxLength = 0x100;
     this.gpgTextBoxSearchKeywords.Size = new Size(160, 20);
     this.gpgTextBoxSearchKeywords.TabIndex = 30;
     this.gpgTextBoxSearchKeywords.EditValueChanged += new EventHandler(this.SearchCriteriaChanged);
     this.gpgLabel21.AutoGrowDirection = GrowDirections.None;
     this.gpgLabel21.AutoSize = true;
     this.gpgLabel21.AutoStyle = true;
     this.gpgLabel21.Font = new Font("Arial", 9.75f);
     this.gpgLabel21.ForeColor = Color.White;
     this.gpgLabel21.IgnoreMouseWheel = false;
     this.gpgLabel21.IsStyled = false;
     this.gpgLabel21.Location = new Point(0x169, 3);
     this.gpgLabel21.Name = "gpgLabel21";
     this.gpgLabel21.Size = new Size(0x6b, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel21, null);
     this.gpgLabel21.TabIndex = 0x1d;
     this.gpgLabel21.Text = "<LOC>Keywords";
     this.gpgLabel21.TextStyle = TextStyles.Bold;
     this.gpgPanel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPanel1.BorderColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.gpgPanel1.BorderThickness = 2;
     this.gpgPanel1.Controls.Add(this.splitContainerDownload);
     this.gpgPanel1.DrawBorder = true;
     this.gpgPanel1.Location = new Point(10, 0x42);
     this.gpgPanel1.Name = "gpgPanel1";
     this.gpgPanel1.Size = new Size(0x39c, 0x233);
     base.ttDefault.SetSuperTip(this.gpgPanel1, null);
     this.gpgPanel1.TabIndex = 20;
     this.imageListContentTypes.ImageStream = (ImageListStreamer) manager.GetObject("imageListContentTypes.ImageStream");
     this.imageListContentTypes.TransparentColor = Color.Transparent;
     this.imageListContentTypes.Images.SetKeyName(0, "icon_map_sm.png");
     this.imageListContentTypes.Images.SetKeyName(1, "icon_mod_sm.png");
     this.imageListContentTypes.Images.SetKeyName(2, "icon_mag_glass_sm.png");
     this.imageListContentTypes.Images.SetKeyName(3, "icon_saved_sm.png");
     this.imageListContentTypes.Images.SetKeyName(4, "icon_my_upload_sm.png");
     this.imageListContentTypes.Images.SetKeyName(5, "icon_avail_upload_sm.png");
     this.imageListContentTypes.Images.SetKeyName(6, "icon_replay_sm.png");
     this.imageListContentTypes.Images.SetKeyName(7, "icon_missing_sm.png");
     this.imageListContentTypes.Images.SetKeyName(8, "icon_tools_sm.png");
     this.imageListContentTypes.Images.SetKeyName(9, "icon_video_sm.png");
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x3af, 0x2d4);
     base.Controls.Add(this.gpgPanel1);
     base.Controls.Add(this.skinButtonCancel);
     base.Controls.Add(this.skinButtonOK);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     base.Name = "DlgVaultQuickSearch";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "DlgVaultQuickSearch";
     base.Controls.SetChildIndex(this.skinButtonOK, 0);
     base.Controls.SetChildIndex(this.skinButtonCancel, 0);
     base.Controls.SetChildIndex(this.gpgPanel1, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.splitContainerDownload.Panel1.ResumeLayout(false);
     this.splitContainerDownload.Panel2.ResumeLayout(false);
     this.splitContainerDownload.ResumeLayout(false);
     this.gpgGroupBoxResults.ResumeLayout(false);
     this.dataGridSearchResults.EndInit();
     this.gvResults.EndInit();
     this.repositoryItemPictureEdit1.EndInit();
     this.repositoryItemRatingStars.EndInit();
     this.repositoryItemChatLink.EndInit();
     this.repositoryItemVersionLink.EndInit();
     this.gpgGroupBoxCriteria.ResumeLayout(false);
     this.gpgPanelSearchCriteria.ResumeLayout(false);
     this.gpgPanelSearchCriteria.PerformLayout();
     this.gpgTextBoxSearchCreator.Properties.EndInit();
     this.gpgTextBoxSearchName.Properties.EndInit();
     this.gpgTextBoxSearchKeywords.Properties.EndInit();
     this.gpgPanel1.ResumeLayout(false);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 47
0
        public static GridColumn[] InitColumn(GridControl gridControl, GridView gridView)
        {
            HelpGridColumn.CotTextLeft(
                XtraGridSupportExt.CreateGridColumn(gridView, "ID", -1, -1), "ID");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Tên công ty", 0, 150), "SHORT_NAME");
            HelpGridColumn.CotTextLeft(
               HelpGridColumn.ThemCot(gridView, "Ký hiệu", 1, 150), "CODE");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Tên đầy đủ", 2, 300), "NAME");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Tên giao dịch", 3, 150), "TRADENAME");
            HelpGridColumn.CotTextLeft(
               HelpGridColumn.ThemCot(gridView, "Mã số thuế", 4, 150), "TAXCODE");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Địa chỉ", 5, 150), "ADDRESS");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Điện thoại", 6, 150), "PHONE");
            HelpGridColumn.CotTextLeft(
                HelpGridColumn.ThemCot(gridView, "Fax", 7, 150), "FAX");
            HelpGridColumn.CotTextLeft(
                   HelpGridColumn.ThemCot(gridView, "Email", 8, 150), "EMAIL");
            HelpGridColumn.CotTextLeft(
                    HelpGridColumn.ThemCot(gridView, "Website", 9, 150), "WEBSITE");

            GridColumn colLogo = HelpGridColumn.ThemCot(gridView, "Logo", 10, 150);
            RepositoryItemPictureEdit r = new RepositoryItemPictureEdit();
            colLogo.ColumnEdit = r;
            colLogo.FieldName = "LOGO";
            r.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;

            gridView.OptionsView.RowAutoHeight = true;

            GridColumn colHeader = HelpGridColumn.ThemCot(gridView, "Tiêu đề", 10, 150);
            RepositoryItemPictureEdit rH = new RepositoryItemPictureEdit();
            colHeader.ColumnEdit = rH;
            colHeader.FieldName = "HEADER_LETTER";
            rH.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;

            gridView.OptionsView.RowAutoHeight = true;

            ((PLGridView)gridView).DefaultNewRow = DefaultRow;
            return null;
        }
Exemplo n.º 48
0
 private void InitializeComponent()
 {
     this.gpgPacketGrid = new GPGChatGrid();
     this.gvPacketGrid = new GridView();
     this.colSourceAddress = new GridColumn();
     this.colSourcePort = new GridColumn();
     this.colDestAddress = new GridColumn();
     this.colDestPort = new GridColumn();
     this.colData = new GridColumn();
     this.repositoryItemMemoEdit1 = new RepositoryItemMemoEdit();
     this.colTime = new GridColumn();
     this.repositoryItemTimeEdit1 = new RepositoryItemTimeEdit();
     this.colBytes = new GridColumn();
     this.colPacketType = new GridColumn();
     this.rimPictureEdit3 = new RepositoryItemPictureEdit();
     this.rimTextEdit = new RepositoryItemTextEdit();
     this.rimMemoEdit3 = new RepositoryItemMemoEdit();
     this.btnEnd = new GPGButton();
     this.btnBegin = new GPGButton();
     this.btnTestPacket = new GPGButton();
     this.gpgPacketGrid.BeginInit();
     this.gvPacketGrid.BeginInit();
     this.repositoryItemMemoEdit1.BeginInit();
     this.repositoryItemTimeEdit1.BeginInit();
     this.rimPictureEdit3.BeginInit();
     this.rimTextEdit.BeginInit();
     this.rimMemoEdit3.BeginInit();
     base.SuspendLayout();
     this.gpgPacketGrid.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgPacketGrid.EmbeddedNavigator.Name = "";
     this.gpgPacketGrid.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gpgPacketGrid.IgnoreMouseWheel = false;
     this.gpgPacketGrid.Location = new Point(12, 0x53);
     this.gpgPacketGrid.LookAndFeel.SkinName = "Money Twins";
     this.gpgPacketGrid.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgPacketGrid.MainView = this.gvPacketGrid;
     this.gpgPacketGrid.Name = "gpgPacketGrid";
     this.gpgPacketGrid.RepositoryItems.AddRange(new RepositoryItem[] { this.rimPictureEdit3, this.rimTextEdit, this.rimMemoEdit3, this.repositoryItemMemoEdit1, this.repositoryItemTimeEdit1 });
     this.gpgPacketGrid.Size = new Size(0x32d, 350);
     this.gpgPacketGrid.TabIndex = 12;
     this.gpgPacketGrid.ViewCollection.AddRange(new BaseView[] { this.gvPacketGrid });
     this.gvPacketGrid.ActiveFilterString = "";
     this.gvPacketGrid.Appearance.ColumnFilterButton.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.ColumnFilterButton.BackColor2 = Color.FromArgb(20, 20, 20);
     this.gvPacketGrid.Appearance.ColumnFilterButton.BorderColor = Color.Black;
     this.gvPacketGrid.Appearance.ColumnFilterButton.ForeColor = Color.Gray;
     this.gvPacketGrid.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.BackColor = Color.FromArgb(20, 20, 20);
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.BackColor2 = Color.FromArgb(0x4e, 0x4e, 0x4e);
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.BorderColor = Color.FromArgb(20, 20, 20);
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.ForeColor = Color.Blue;
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.Empty.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.Empty.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FilterCloseButton.BackColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPacketGrid.Appearance.FilterCloseButton.BackColor2 = Color.FromArgb(90, 90, 90);
     this.gvPacketGrid.Appearance.FilterCloseButton.BorderColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPacketGrid.Appearance.FilterCloseButton.ForeColor = Color.Black;
     this.gvPacketGrid.Appearance.FilterCloseButton.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPacketGrid.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.FilterPanel.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.FilterPanel.BackColor2 = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPacketGrid.Appearance.FilterPanel.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.FilterPanel.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPacketGrid.Appearance.FilterPanel.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FilterPanel.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.FixedLine.BackColor = Color.FromArgb(0x3a, 0x3a, 0x3a);
     this.gvPacketGrid.Appearance.FixedLine.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FocusedCell.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.FocusedCell.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.FocusedCell.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.FocusedCell.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FocusedCell.Options.UseFont = true;
     this.gvPacketGrid.Appearance.FocusedCell.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.FocusedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvPacketGrid.Appearance.FocusedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvPacketGrid.Appearance.FocusedRow.Font = new Font("Arial", 9.75f);
     this.gvPacketGrid.Appearance.FocusedRow.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.FocusedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPacketGrid.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FocusedRow.Options.UseFont = true;
     this.gvPacketGrid.Appearance.FocusedRow.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.FooterPanel.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.FooterPanel.BorderColor = Color.Black;
     this.gvPacketGrid.Appearance.FooterPanel.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.FooterPanel.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.FooterPanel.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.FooterPanel.Options.UseFont = true;
     this.gvPacketGrid.Appearance.FooterPanel.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.GroupButton.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.GroupButton.BorderColor = Color.Black;
     this.gvPacketGrid.Appearance.GroupButton.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.GroupButton.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.GroupButton.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.GroupButton.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.GroupFooter.BackColor = Color.FromArgb(10, 10, 10);
     this.gvPacketGrid.Appearance.GroupFooter.BorderColor = Color.FromArgb(10, 10, 10);
     this.gvPacketGrid.Appearance.GroupFooter.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.GroupFooter.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.GroupFooter.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.GroupPanel.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.GroupPanel.BackColor2 = Color.Black;
     this.gvPacketGrid.Appearance.GroupPanel.Font = new Font("Tahoma", 10f, FontStyle.Bold);
     this.gvPacketGrid.Appearance.GroupPanel.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.GroupPanel.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.GroupPanel.Options.UseFont = true;
     this.gvPacketGrid.Appearance.GroupPanel.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.GroupRow.BackColor = Color.Gray;
     this.gvPacketGrid.Appearance.GroupRow.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.GroupRow.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.GroupRow.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.GroupRow.Options.UseFont = true;
     this.gvPacketGrid.Appearance.GroupRow.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.HeaderPanel.BorderColor = Color.Black;
     this.gvPacketGrid.Appearance.HeaderPanel.Font = new Font("Arial", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gvPacketGrid.Appearance.HeaderPanel.ForeColor = Color.Black;
     this.gvPacketGrid.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.gvPacketGrid.Appearance.HeaderPanel.Options.UseFont = true;
     this.gvPacketGrid.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.HideSelectionRow.BackColor = Color.Gray;
     this.gvPacketGrid.Appearance.HideSelectionRow.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.HideSelectionRow.ForeColor = Color.FromArgb(0xd4, 0xd0, 200);
     this.gvPacketGrid.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.HideSelectionRow.Options.UseFont = true;
     this.gvPacketGrid.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.HorzLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvPacketGrid.Appearance.HorzLine.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.Preview.BackColor = Color.White;
     this.gvPacketGrid.Appearance.Preview.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.Preview.ForeColor = Color.Purple;
     this.gvPacketGrid.Appearance.Preview.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.Preview.Options.UseFont = true;
     this.gvPacketGrid.Appearance.Preview.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.Row.BackColor = Color.Black;
     this.gvPacketGrid.Appearance.Row.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0xb2);
     this.gvPacketGrid.Appearance.Row.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.Row.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.Row.Options.UseFont = true;
     this.gvPacketGrid.Appearance.Row.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.RowSeparator.BackColor = Color.White;
     this.gvPacketGrid.Appearance.RowSeparator.BackColor2 = Color.White;
     this.gvPacketGrid.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.SelectedRow.BackColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gvPacketGrid.Appearance.SelectedRow.BackColor2 = Color.FromArgb(0x52, 0x83, 190);
     this.gvPacketGrid.Appearance.SelectedRow.Font = new Font("Arial", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.gvPacketGrid.Appearance.SelectedRow.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.SelectedRow.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gvPacketGrid.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvPacketGrid.Appearance.SelectedRow.Options.UseFont = true;
     this.gvPacketGrid.Appearance.SelectedRow.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.TopNewRow.Font = new Font("Tahoma", 10f);
     this.gvPacketGrid.Appearance.TopNewRow.ForeColor = Color.White;
     this.gvPacketGrid.Appearance.TopNewRow.Options.UseFont = true;
     this.gvPacketGrid.Appearance.TopNewRow.Options.UseForeColor = true;
     this.gvPacketGrid.Appearance.VertLine.BackColor = Color.FromArgb(0x52, 0x83, 190);
     this.gvPacketGrid.Appearance.VertLine.Options.UseBackColor = true;
     this.gvPacketGrid.BorderStyle = BorderStyles.NoBorder;
     this.gvPacketGrid.Columns.AddRange(new GridColumn[] { this.colSourceAddress, this.colSourcePort, this.colDestAddress, this.colDestPort, this.colData, this.colTime, this.colBytes, this.colPacketType });
     this.gvPacketGrid.GridControl = this.gpgPacketGrid;
     this.gvPacketGrid.Name = "gvPacketGrid";
     this.gvPacketGrid.OptionsDetail.AllowZoomDetail = false;
     this.gvPacketGrid.OptionsDetail.EnableMasterViewMode = false;
     this.gvPacketGrid.OptionsDetail.ShowDetailTabs = false;
     this.gvPacketGrid.OptionsDetail.SmartDetailExpand = false;
     this.gvPacketGrid.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvPacketGrid.OptionsSelection.MultiSelect = true;
     this.gvPacketGrid.OptionsView.RowAutoHeight = true;
     this.colSourceAddress.Caption = "Source Address";
     this.colSourceAddress.FieldName = "SourceAddress";
     this.colSourceAddress.Name = "colSourceAddress";
     this.colSourceAddress.OptionsColumn.AllowEdit = false;
     this.colSourceAddress.Visible = true;
     this.colSourceAddress.VisibleIndex = 1;
     this.colSourceAddress.Width = 0x73;
     this.colSourcePort.Caption = "Source Port";
     this.colSourcePort.FieldName = "SourcePort";
     this.colSourcePort.Name = "colSourcePort";
     this.colSourcePort.OptionsColumn.AllowEdit = false;
     this.colSourcePort.Visible = true;
     this.colSourcePort.VisibleIndex = 2;
     this.colSourcePort.Width = 0x60;
     this.colDestAddress.Caption = "Dest Address";
     this.colDestAddress.FieldName = "DestAddress";
     this.colDestAddress.Name = "colDestAddress";
     this.colDestAddress.OptionsColumn.AllowEdit = false;
     this.colDestAddress.Visible = true;
     this.colDestAddress.VisibleIndex = 3;
     this.colDestAddress.Width = 0x63;
     this.colDestPort.Caption = "Dest Port";
     this.colDestPort.FieldName = "DestPort";
     this.colDestPort.Name = "colDestPort";
     this.colDestPort.OptionsColumn.AllowEdit = false;
     this.colDestPort.Visible = true;
     this.colDestPort.VisibleIndex = 4;
     this.colDestPort.Width = 0x5e;
     this.colData.Caption = "Data";
     this.colData.ColumnEdit = this.repositoryItemMemoEdit1;
     this.colData.FieldName = "Data";
     this.colData.Name = "colData";
     this.colData.OptionsColumn.AllowEdit = false;
     this.colData.Visible = true;
     this.colData.VisibleIndex = 5;
     this.colData.Width = 0x188;
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     this.colTime.Caption = "Time";
     this.colTime.ColumnEdit = this.repositoryItemTimeEdit1;
     this.colTime.FieldName = "Time";
     this.colTime.Name = "colTime";
     this.colTime.OptionsColumn.AllowEdit = false;
     this.colTime.Visible = true;
     this.colTime.VisibleIndex = 0;
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton() });
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     this.colBytes.Caption = "Byte List";
     this.colBytes.ColumnEdit = this.repositoryItemMemoEdit1;
     this.colBytes.FieldName = "ByteList";
     this.colBytes.Name = "colBytes";
     this.colBytes.OptionsColumn.AllowEdit = false;
     this.colPacketType.Caption = "Packet Type";
     this.colPacketType.FieldName = "PacketType";
     this.colPacketType.Name = "colPacketType";
     this.colPacketType.OptionsColumn.AllowEdit = false;
     this.rimPictureEdit3.Name = "rimPictureEdit3";
     this.rimPictureEdit3.PictureAlignment = ContentAlignment.TopCenter;
     this.rimTextEdit.AutoHeight = false;
     this.rimTextEdit.Name = "rimTextEdit";
     this.rimMemoEdit3.MaxLength = 500;
     this.rimMemoEdit3.Name = "rimMemoEdit3";
     this.btnEnd.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnEnd.ForeColor = Color.Black;
     this.btnEnd.Location = new Point(0x259, 0x1b7);
     this.btnEnd.Name = "btnEnd";
     this.btnEnd.Size = new Size(0x68, 0x17);
     this.btnEnd.TabIndex = 0x1a;
     this.btnEnd.Text = "End Sniffing";
     this.btnEnd.UseVisualStyleBackColor = true;
     this.btnEnd.Click += new EventHandler(this.btnEnd_Click);
     this.btnBegin.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnBegin.ForeColor = Color.Black;
     this.btnBegin.Location = new Point(0x2c7, 0x1b7);
     this.btnBegin.Name = "btnBegin";
     this.btnBegin.Size = new Size(0x68, 0x17);
     this.btnBegin.TabIndex = 0x19;
     this.btnBegin.Text = "Begin Sniffing";
     this.btnBegin.UseVisualStyleBackColor = true;
     this.btnBegin.Click += new EventHandler(this.btnBegin_Click);
     this.btnTestPacket.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.btnTestPacket.ForeColor = Color.Black;
     this.btnTestPacket.Location = new Point(0x1eb, 0x1b7);
     this.btnTestPacket.Name = "btnTestPacket";
     this.btnTestPacket.Size = new Size(0x68, 0x17);
     this.btnTestPacket.TabIndex = 0x1b;
     this.btnTestPacket.Text = "Test";
     this.btnTestPacket.UseVisualStyleBackColor = true;
     this.btnTestPacket.Click += new EventHandler(this.btnTestPacket_Click);
     base.AutoScaleDimensions = new SizeF(7f, 16f);
     base.AutoScaleMode = AutoScaleMode.None;
     base.ClientSize = new Size(0x345, 0x214);
     base.Controls.Add(this.btnTestPacket);
     base.Controls.Add(this.btnEnd);
     base.Controls.Add(this.btnBegin);
     base.Controls.Add(this.gpgPacketGrid);
     base.Location = new Point(0, 0);
     base.Name = "DlgUDPSniffer";
     this.Text = "Packet Sniffer";
     base.Controls.SetChildIndex(this.gpgPacketGrid, 0);
     base.Controls.SetChildIndex(this.btnBegin, 0);
     base.Controls.SetChildIndex(this.btnEnd, 0);
     base.Controls.SetChildIndex(this.btnTestPacket, 0);
     this.gpgPacketGrid.EndInit();
     this.gvPacketGrid.EndInit();
     this.repositoryItemMemoEdit1.EndInit();
     this.repositoryItemTimeEdit1.EndInit();
     this.rimPictureEdit3.EndInit();
     this.rimTextEdit.EndInit();
     this.rimMemoEdit3.EndInit();
     base.ResumeLayout(false);
 }