コード例 #1
1
ファイル: XtraGrid.cs プロジェクト: labeuze/source
        public static void SetGridColumnEditSecond(GridColumn col, XElement xe)
        {
            //if (gbTrace) cTrace.StartNestedLevel("SetGridColumnEditSecond");

            RepositoryItemTextEdit edit = new RepositoryItemTextEdit();
            edit.Name = "PKT_Grid_SecondEdit";
            ((System.ComponentModel.ISupportInitialize)edit).BeginInit();
            col.View.GridControl.RepositoryItems.AddRange(new RepositoryItem[] { edit });
            //edit.AutoHeight = false;

            string sFormat = xe.zAttribValue("Format");
            if (sFormat == "" || sFormat == null) sFormat = "hh:mm:ss";
            SecondEdit secondEdit = new SecondEdit();
            secondEdit.Format = sFormat;

            edit.MaskData.EditMask = secondEdit.EditMask;
            edit.MaskData.MaskType = MaskType.Simple;
            edit.FormatEditValue += new ConvertEditValueEventHandler(secondEdit.FormatEditValue);
            edit.ParseEditValue += new ConvertEditValueEventHandler(secondEdit.ParseEditValue);
            col.ColumnEdit = edit;
            ((System.ComponentModel.ISupportInitialize)edit).EndInit();

            //if (gbTrace) cTrace.StopNestedLevel("SetGridColumnEditSecond");
        }
コード例 #2
0
ファイル: FormForecastJG.cs プロジェクト: github188/myitoppsp
        //添加年份后,新增一列
        private void AddColumn(int year)
        {
            TreeListColumn column = new TreeListColumn();

            column.FieldName = "y" + year;
            column.Tag       = year;
            column.Caption   = year + "年";
            column.Name      = year.ToString();
            column.Width     = 70;
            //column.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            column.VisibleIndex = year;//有两列隐藏列

            //
            // repositoryItemTextEdit1
            //
            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();

            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "n2";
            repositoryItemTextEdit1.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
            repositoryItemTextEdit1.Mask.EditMask = "n2";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;
            //column.DisplayFormat.FormatString = "#####################0.##";
            //column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            column.Format.FormatString = "#####################0.##";
            column.Format.FormatType   = DevExpress.Utils.FormatType.Numeric;
            this.treeList1.Columns.AddRange(new TreeListColumn[] {
                column
            });
        }
コード例 #3
0
        private static void MockListEditor(Platform platform, Type[] controlTypes, XafApplication application,
                                           PredefinedMap predefinedMap, RepositoryItemTextEdit repositoryItemTextEdit)
        {
            application.MockListEditor((view, xafApplication, collectionSource) => {
                ListEditor listEditor;
                if (new[] { PredefinedMap.PivotGridControl, PredefinedMap.ChartControl, PredefinedMap.SchedulerControl, PredefinedMap.TreeList, }.Any(map => map == predefinedMap))
                {
                    listEditor =
                        (ListEditor)Activator.CreateInstance(controlTypes.Last(), view);
                }
                else if (new[] { PredefinedMap.DashboardDesigner, PredefinedMap.SplitContainerControl }.Any(map => map == predefinedMap))
                {
                    return(application.ListEditorMock().Object);
                }
                else
                {
                    listEditor = platform == Platform.Win
                        ? (ListEditor) new CustomGridListEditor(view, controlTypes.First(),
                                                                controlTypes.Skip(1).First(), repositoryItemTextEdit)
                        : new ASPxGridListEditor(view);
                }

                if (listEditor is IComplexListEditor complexListEditor)
                {
                    complexListEditor.Setup(collectionSource, application);
                }

                return(listEditor);
            });
        }
コード例 #4
0
        private void RESAI02H_Load(object sender, EventArgs e)
        {
            // TODO: 這行程式碼會將資料載入 'dS_RESAI02.DS_GVD' 資料表。您可以視需要進行移動或移除。
            this.gVDTableAdapter.Fill(this.dS_RESAI02.DS_GVD);
            // TODO: 這行程式碼會將資料載入 'dS_RESAI02.DS_GVC' 資料表。您可以視需要進行移動或移除。
            this.gVCTableAdapter.Fill(this.dS_RESAI02.DS_GVC);
            // TODO: 這行程式碼會將資料載入 'dS_RESAI02.DS_GVB' 資料表。您可以視需要進行移動或移除。
            this.gVBTableAdapter.Fill(this.dS_RESAI02.DS_GVB);
            // TODO: 這行程式碼會將資料載入 'dS_RESAI02.DS_GVA' 資料表。您可以視需要進行移動或移除。
            this.gVATableAdapter.Fill(this.dS_RESAI02.DS_GVA);

            RepositoryItemTextEdit edit = new RepositoryItemTextEdit();
            GV_B.Columns["XC002"].ColumnEdit = edit;
            GV_C.Columns["XC002"].ColumnEdit = edit;
            GV_D.Columns["XC002"].ColumnEdit = edit;
            edit.DisplayFormat.FormatType = FormatType.Custom;
            edit.DisplayFormat.FormatString = "Date";
            edit.DisplayFormat.Format = new CustomFormatter();

            edit = new RepositoryItemTextEdit();
            GV_A.Columns["XC009"].ColumnEdit = edit;
            GV_B.Columns["XC009"].ColumnEdit = edit;
            GV_C.Columns["XC009"].ColumnEdit = edit;
            GV_D.Columns["XC009"].ColumnEdit = edit;
            edit.DisplayFormat.FormatType = FormatType.Custom;
            edit.DisplayFormat.FormatString = "XC009";
            edit.DisplayFormat.Format = new AI02Formatter();

        }
コード例 #5
0
        private BarEditItem CreateBarEditItem(TextEntryActionItem item)
        {
            var guiItem = new BarEditItem();

            guiItem.Name    = item.Key;
            guiItem.Caption = item.Caption;

            RepositoryItemTextEdit textBox = new RepositoryItemTextEdit();

            guiItem.Edit = textBox;

            if (item.Width != 0)
            {
                guiItem.Width = item.Width;
            }

            if (!item.Enabled)
            {
                guiItem.Enabled = false;
            }

            textBox.EditValueChanged += delegate(object sender, System.EventArgs e)
            {
                var edit = sender as DevExpress.XtraEditors.TextEdit;
                item.PropertyChanged -= TextEntryActionItem_PropertyChanged;
                item.Text             = edit.Text;
                item.PropertyChanged += TextEntryActionItem_PropertyChanged;
            };

            return(guiItem);
        }
コード例 #6
0
        private void Form1_Load(object sender, EventArgs e)
        {
            colorEdit1.EditValue = Color.LightBlue;
            colorEdit2.EditValue = Color.LightGray;

            gridControl1.DataSource = CreateDataSource();
            gridControl1.ForceInitialize();

            CreateUnboundColumn();

            string[] intColumns = new string[] { "Value1", "Value2" };

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

            reCheckEdit.EditValueChanged            += new EventHandler(reCheckEdit_EditValueChanged);
            gridView1.Columns["Selected"].ColumnEdit = reCheckEdit;

            RepositoryItemTextEdit reTextEdit = gridControl1.RepositoryItems.Add("TextEdit") as RepositoryItemTextEdit;

            reTextEdit.EditValueChanged          += new EventHandler(reTextEdit_EditValueChanged);
            reTextEdit.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
            foreach (string columnName in intColumns)
            {
                summaryCache.Add(columnName, 0);
                gridView1.Columns[columnName].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Custom;
                gridView1.Columns[columnName].SummaryItem.DisplayFormat = "Custom Sum = {0}";
                gridView1.Columns[columnName].ColumnEdit = reTextEdit;
            }
            gridView1.OptionsView.ShowFooter = true;
        }
コード例 #7
0
        private void spreadsheetControl_CustomCellEdit(object sender, DevExpress.XtraSpreadsheet.SpreadsheetCustomCellEditEventArgs e)
        {
            if (e.ColumnIndex == 0)
            {
                RepositoryItemTextEdit repository = new RepositoryItemTextEdit();
                repository.AutoHeight  = false;
                repository.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

                Style  thisCellsStyle     = e.Cell.Style;
                string thisCellsFormat    = thisCellsStyle.NumberFormat;
                string thisCellsStyleName = thisCellsStyle.Name;
                thisCellsFormat = e.Cell.NumberFormat;
                bool thisCellIsLocked = e.Cell.Protection.Locked;
                IList <DevExpress.Spreadsheet.Comment> comments = spreadsheetControl.ActiveWorksheet.Comments.GetComments(spreadsheetControl.ActiveCell);
                string thisCellsNote = comments[0].Text; // hardcoding '0' only works because there is only one ActiveCell

                if (thisCellsFormat == "")
                {
                    repository.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
                }
                else
                {
                    repository.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                    repository.Mask.EditMask = thisCellsFormat;
                }
                e.RepositoryItem = repository;
            }
        }
コード例 #8
0
        //添加最小二乘列
        private void AddEndColumn()
        {
            TreeListColumn column = new TreeListColumn();

            column.FieldName    = "N2";
            column.Caption      = "误差平方和";
            column.VisibleIndex = 200;
            column.Width        = 180;



            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();

            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "n2";
            repositoryItemTextEdit1.DisplayFormat.FormatType   = DevExpress.Utils.FormatType.Numeric;
            repositoryItemTextEdit1.Mask.EditMask = "n2";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;

            column.Format.FormatString = "#####################0.##";
            column.Format.FormatType   = DevExpress.Utils.FormatType.Numeric;

            this.treeList1.Columns.AddRange(new TreeListColumn[] {
                column
            });
        }
コード例 #9
0
        private void ControlSettings_Load(object sender, EventArgs e)
        {
            if (DesignMode)
            {
                return;
            }

            _backendSettings = new BackendSettings();
            _backendSettings.Load(ConfigurationStorage.LocalAndGlobal);

            propertyGridControl1.SelectedObject      = _backendSettings;
            propertyDescriptionControl1.PropertyGrid = propertyGridControl1;
            var generalCheckBox = new RepositoryItemCheckEdit();

            propertyGridControl1.OptionsBehavior.PropertySort = PropertySort.NoSort;
            propertyGridControl1.DefaultEditors.Add(typeof(bool), generalCheckBox);
            var passwordField = new RepositoryItemTextEdit {
                PasswordChar = '*'
            };

            propertyGridControl1
            .Rows[$"row{AttributeNamesBackend.Password}"]
            .Properties
            .RowEdit = passwordField;

            propertyGridControl1
            .Rows[$"row{AttributeNamesBackend.TimeSpan}"]
            .Properties
            .RowEdit = GetSpinEdit(10, 60, 5);

            propertyGridControl1.CustomRecordCellEdit += (o, ev) =>
            {
                Console.WriteLine(ev.Row.Name);
            };
        }
コード例 #10
0
        protected override ResultStatus Open()
        {
            base.Open();
            try {
                DataTable dt = dao49050.GetDataList();

                //1. 設定欄位
                RepositoryItemTextEdit memo = new RepositoryItemTextEdit(); //說明
                gcMain.RepositoryItems.Add(memo);
                gvMain.Columns["MGT3_MEMO"].ColumnEdit = memo;
                memo.MaxLength = 30;

                //2. 設定gvMain
                gcMain.Visible    = true;
                gcMain.DataSource = dt;
                gvMain.BestFitColumns();
                GridHelper.SetCommonGrid(gvMain);
                gvMain.Columns["MGT3_MEMO"].Width    = 600;
                gvMain.Columns["MGT3_DATE_FM"].Width = 120;
                gvMain.Columns["MGT3_DATE_TO"].Width = 120;
                gcMain.Focus();

                if (dt.Rows.Count <= 0)
                {
                    InsertRow();
                }

                return(ResultStatus.Success);
            } catch (Exception ex) {
                WriteLog(ex);
            }
            return(ResultStatus.Fail);
        }
コード例 #11
0
 public TemplateView(IImageListRetriever imageListRetriever, Shell shell)
     : base(shell)
 {
     _imageListRetriever = imageListRetriever;
     InitializeComponent();
     _gridViewBinder                  = new GridViewBinder <TemplateDTO>(gridView);
     gridView.MultiSelect             = true;
     gridView.OptionsView.ShowPreview = true;
     gridView.OptionsView.AutoCalcPreviewLineCount = true;
     gridView.ShouldUseColorForDisabledCell        = false;
     // Prevent the focused cell from being highlighted.
     gridView.OptionsSelection.EnableAppearanceFocusedCell = false;
     // Draw a dotted focus rectangle around the entire row.
     gridView.FocusRectStyle    = DrawFocusRectStyle.None;
     gridView.GroupFormat       = "[#image]{1}";
     gridView.ShowingEditor    += (o, e) => OnEvent(onShowingEditor, o, e);
     gridView.EndGrouping      += (o, e) => gridView.ExpandAllGroups();
     gridView.SelectionChanged += (o, e) => OnEvent(onGridViewSelectionChanged);
     toolTipController.Initialize(imageListRetriever);
     _disabledRepository = new RepositoryItemTextEdit {
         Enabled = false, ReadOnly = true
     };
     _editRemoveRepository = createEditRemoveButtonRepository();
     _urlRepository        = new RepositoryItemHyperLinkEdit {
         TextEditStyle = TextEditStyles.DisableTextEditor, SingleClick = true
     };
     lblDescription.AsDescription();
     gridView.PopupMenuShowing += (o, e) => OnEvent(onPopupMenuShowing, o, e);
 }
コード例 #12
0
        private void FillLevel()
        {
            dtF = new DataTable();
            dtF = UnitDirBL.GetFloorChangeRate(m_iCCId, m_iFlatTypeId);
            grdRate.DataSource = dtF;

            grdViewRate.Columns["LevelId"].Visible      = false;
            grdViewRate.Columns["FlatTypeId"].Visible   = false;
            grdViewRate.Columns["CostCentreId"].Visible = false;
            grdViewRate.BestFitColumns();

            grdViewRate.Columns["LevelName"].OptionsColumn.AllowEdit = false;
            grdViewRate.Columns["OldRate"].OptionsColumn.AllowEdit   = false;

            RepositoryItemTextEdit txtAmtEdit = new RepositoryItemTextEdit();

            grdViewRate.Columns["NewRate"].ColumnEdit = txtAmtEdit;
            txtAmtEdit.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            txtAmtEdit.Mask.EditMask = "########################";
            txtAmtEdit.Validating   += txtAmtEdit_Validating;

            grdViewRate.OptionsCustomization.AllowFilter       = false;
            grdViewRate.OptionsBehavior.AllowIncrementalSearch = true;
            grdViewRate.OptionsView.ShowAutoFilterRow          = false;
            grdViewRate.OptionsView.ShowViewCaption            = false;
            grdViewRate.OptionsView.ShowFooter           = false;
            grdViewRate.OptionsSelection.MultiSelectMode = GridMultiSelectMode.CellSelect;
            grdViewRate.OptionsSelection.InvertSelection = false;
            grdViewRate.OptionsView.ColumnAutoWidth      = true;
            grdViewRate.Appearance.HeaderPanel.Font      = new Font(grdViewRate.Appearance.HeaderPanel.Font, FontStyle.Bold);
        }
コード例 #13
0
        private void FormDangKyVe_Load(object sender, EventArgs e)
        {
            btnThem.Enabled = false;

            deDate.DateTime = DateTime.Now;
            registerTicket.CreateProcedure();

            var tableInfoLoaiVe = registerTicket.GetLoaiVeInformation();

            if (tableInfoLoaiVe != null)
            {
                FillGridControlLoaiVe(tableInfoLoaiVe);
            }

            var tableDoiTac = FormDanhSachDaiLy.Instance.GetDoiTacTable();

            if (tableDoiTac != null)
            {
                FillDanhSachDoiTac(tableDoiTac);
            }

            var tableDotPhatHanh = publish.GetAllPublishPlan();

            if (tableDotPhatHanh != null)
            {
                FillDotPhatHanh(tableDotPhatHanh);
            }

            var edit = new RepositoryItemTextEdit();

            edit.Mask.MaskType = MaskType.RegEx;
            edit.Mask.EditMask = @"\d+";
            gridView1.Columns["SOLUONG"].ColumnEdit = edit;
        }
コード例 #14
0
ファイル: frmDeletePipeline.cs プロジェクト: secondii/Yutai
 private void gridView1_CustomRowCellEditForEditing(object sender,
                                                    DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
 {
     if (e.Column.FieldName != "FName")
     {
         object     obj    = e.CellValue;
         TreeRecord record = _treeRecords.FirstOrDefault(p => p.FName == obj.ToString());
         if (record != null && record.IsDomain)
         {
             RepositoryItemComboBox combo = new RepositoryItemComboBox();
             gridControl1.RepositoryItems.AddRange(new RepositoryItem[] { combo });
             if (record.DoaminValue != null)
             {
                 combo.Items.AddRange(((List <CodeValuePair>)record.DoaminValue).Select(p => p.Name).ToList());
             }
             e.RepositoryItem = combo;
             return;
         }
         if (record != null && record.FieldType == esriFieldType.esriFieldTypeDate)
         {
             RepositoryItemDateEdit dateEdit = new RepositoryItemDateEdit();
             gridControl1.RepositoryItems.AddRange(new RepositoryItem[] { dateEdit });
             e.RepositoryItem = dateEdit;
             return;
         }
         RepositoryItemTextEdit textEdit = new RepositoryItemTextEdit();
         gridControl1.RepositoryItems.AddRange(new RepositoryItem[] { textEdit });
         e.RepositoryItem = textEdit;
     }
 }
コード例 #15
0
        public PopulationAnalysisFieldsView(IImageListRetriever imageListRetriever, IToolTipCreator toolTipCreator)
        {
            _toolTipCreator    = toolTipCreator;
            _toolTipController = new ToolTipController();
            _toolTipController.Initialize(imageListRetriever);

            InitializeComponent();
            _gridViewBinder          = new GridViewBinder <PopulationAnalysisFieldDTO>(gridView);
            gridView.AllowsFiltering = false;
            gridView.OptionsSelection.EnableAppearanceFocusedRow = true;
            gridControl.ToolTipController = _toolTipController;

            //this makes sure that the field is not in edit mode as soon as we click on the field. This is required for a nice user experience with popup
            gridView.EditorShowMode = EditorShowMode.Click;
            PopupBarManager         = new BarManager {
                Form = this, Images = imageListRetriever.AllImagesForContextMenu
            };

            _colorRepository           = new UxRepositoryItemColorPickEditWithHistory(gridView);
            _unitComboBoxRepository    = new UxRepositoryItemComboBox(gridView);
            _scalingComboBoxRepository = new UxRepositoryItemComboBox(gridView);
            _removeField = createEditAndRemoveRepo();
            _removeField.Buttons[_editButtonIndex].Enabled = false;
            _editGroupAndRemoveField = createEditAndRemoveRepo();

            _repositoryItemDisabled = new RepositoryItemTextEdit {
                Enabled = false, ReadOnly = true
            };
            _repositoryItemDisabled.CustomDisplayText += (o, e) => OnEvent(customDisplayText, e);

            _scalingComboBoxRepository.FillComboBoxRepositoryWith(EnumHelper.AllValuesFor <Scalings>());
            gridView.ShowingEditor             += (o, e) => OnEvent(showingEditor, e);
            gridView.CustomDrawEmptyForeground += (o, e) => OnEvent(addMessageInEmptyArea, e);
        }
コード例 #16
0
ファイル: MainForm.cs プロジェクト: staherianYMCA/test
        public MainForm()
        {
            InitializeComponent();
            gridControl.DataSource = GetDataTable();

            var repositoryItemTextEditPCI = new RepositoryItemTextEdit();

            repositoryItemTextEditPCI.Mask.MaskType = MaskType.Numeric;
            //repositoryItemTextEditPCI.Mask.EditMask = "# ##0.00%%";
            repositoryItemTextEditPCI.DisplayFormat.FormatString  = "# ##0.00%";
            repositoryItemTextEditPCI.EditFormat.FormatString     = "# ##0.00%";
            repositoryItemTextEditPCI.Mask.UseMaskAsDisplayFormat = false;

            var repositoryItemTextEditPCII = new RepositoryItemTextEdit();

            repositoryItemTextEditPCII.Mask.MaskType = MaskType.Numeric;
            repositoryItemTextEditPCI.Mask.EditMask  = "# ##0.00%%";
            repositoryItemTextEditPCII.DisplayFormat.FormatString  = "# ##0.00%";
            repositoryItemTextEditPCII.EditFormat.FormatString     = "# ##0.00%";
            repositoryItemTextEditPCII.Mask.UseMaskAsDisplayFormat = true;

            gridControl.RepositoryItems.Add(repositoryItemTextEditPCI);
            gridControl.RepositoryItems.Add(repositoryItemTextEditPCII);
            gridView.Columns.ColumnByFieldName("PC I").ColumnEdit  = repositoryItemTextEditPCI;
            gridView.Columns.ColumnByFieldName("PC II").ColumnEdit = repositoryItemTextEditPCII;
        }
コード例 #17
0
        public JournalView(IToolTipCreator toolTipCreator, IImageListRetriever imageListRetriever)
        {
            _toolTipCreator     = toolTipCreator;
            _imageListRetriever = imageListRetriever;
            InitializeComponent();
            _gridViewBinder = new GridViewBinder <JournalPageDTO>(gridView);
            gridView.ShouldUseColorForDisabledCell = false;
            gridView.ShowColumnChooser             = true;
            _rowFontSize    = AppearanceObject.DefaultFont.Size;
            PopupBarManager = new BarManager {
                Form = this, Images = imageListRetriever.AllImagesForContextMenu
            };
            _toolTipCreator = toolTipCreator;
            var toolTipController = new ToolTipController();

            toolTipController.GetActiveObjectInfo += onToolTipControllerGetActiveObjectInfo;
            toolTipController.Initialize(imageListRetriever);
            gridControl.ToolTipController = toolTipController;

            gridView.MouseDown              += (o, e) => OnEvent(onGridViewMouseDown, e);
            gridView.DoubleClick            += (o, e) => OnEvent(onGridViewDoubleClicked, e);
            gridView.RowCellStyle           += (o, e) => OnEvent(onRowCellStyle, e);
            gridView.CustomDrawRowPreview   += (o, e) => OnEvent(onCustomDrawRowPreview, e);
            gridView.ShowFilterPopupListBox += (o, e) => OnEvent(onShowFilterPopupListBox, e);
            gridView.MeasurePreviewHeight   += (o, e) => OnEvent(onMeasurePreviewHeight, e);

            _titleRepository = new RepositoryItemTextEdit();

            _dateTimeFormatter     = new DateTimeFormatter();
            _descriptionRepository = new RepositoryItemRichTextEdit {
                DocumentFormat = DocumentFormat.Html
            };
        }
コード例 #18
0
        private RepositoryItem createRepositoryItemFor <T>()
        {
            var repositoryItem = new RepositoryItemTextEdit();

            repositoryItem.ConfigureWith(typeof(T));
            return(repositoryItem);
        }
コード例 #19
0
        public override void InitializeBinding()
        {
            base.InitializeBinding();
            _repositoryCache[typeof(bool)] = createBoolEditRepositoryItem();

            _repositoryCache[typeof(int)] = createIntegerEditRepositoryItem();
            var decimalEditRepositoryItem = createDecimalEditRepositoryItem();

            _repositoryCache[typeof(float)]  = decimalEditRepositoryItem;
            _repositoryCache[typeof(double)] = decimalEditRepositoryItem;
            _repositoryItemTextEdit          = new RepositoryItemTextEdit();
            _repositoryCache[typeof(string)] = _repositoryItemTextEdit;

            _gridBinder = new GridViewBinder <IExtendedProperty>(gridView);

            _gridBinder.Bind(x => x.DisplayName)
            .WithCaption(Captions.Name)
            .WithFormat(_splitToUpperCaseFormatter)
            .AsReadOnly();

            _valueColumn = _gridBinder.Bind(x => x.ValueAsObject)
                           .WithCaption(Captions.Value)
                           .WithRepository(repositoryFor)
                           .WithOnValueUpdating((property, e) => OnEvent(() => setValue(property, e)));

            _gridBinder.Changed += NotifyViewChanged;

            gridControl.ToolTipController = new ToolTipController().Initialize(_imageListRetriever);
            gridControl.ToolTipController.GetActiveObjectInfo += (o, e) => OnEvent(() => createToolTip(e));
        }
コード例 #20
0
ファイル: frmFlatTypeArea.cs プロジェクト: SDivyaprabha/CRM1
        private void FlatAreaGrid()
        {
            dgvTransView.Columns["AreaId"].Visible    = false;
            dgvTransView.Columns["Description"].Width = 310;
            dgvTransView.Columns["AreaSqft"].Width    = 120;

            dgvTransView.Columns["AreaSqft"].SummaryItem.SummaryType   = DevExpress.Data.SummaryItemType.Sum;
            dgvTransView.Columns["AreaSqft"].SummaryItem.DisplayFormat = BsfGlobal.g_sDigitFormatS;

            dgvTransView.Columns["Description"].OptionsColumn.ReadOnly  = true;
            dgvTransView.Columns["Description"].OptionsColumn.AllowEdit = false;

            RepositoryItemTextEdit txtArea = new RepositoryItemTextEdit();

            dgvTransView.Columns["AreaSqft"].ColumnEdit = txtArea;
            txtArea.Mask.EditMask = BsfGlobal.g_sDigitFormat;
            txtArea.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            txtArea.Validating   += txtArea_Validating;

            dgvTransView.OptionsCustomization.AllowFilter       = false;
            dgvTransView.OptionsBehavior.AllowIncrementalSearch = true;
            dgvTransView.OptionsView.ShowAutoFilterRow          = false;
            dgvTransView.OptionsView.ShowViewCaption            = false;
            dgvTransView.OptionsView.ShowFooter           = true;
            dgvTransView.OptionsSelection.MultiSelectMode = GridMultiSelectMode.CellSelect;
            dgvTransView.OptionsSelection.InvertSelection = false;
            dgvTransView.OptionsView.ColumnAutoWidth      = true;
            dgvTransView.Appearance.HeaderPanel.Font      = new Font(dgvTransView.Appearance.HeaderPanel.Font, FontStyle.Bold);
        }
コード例 #21
0
ファイル: FormForecast5.cs プロジェクト: EdgarEDT/myitoppsp
        //�����ݺ�����һ��
        private void AddColumn(int year)
        {
            TreeListColumn column = new TreeListColumn();

            column.FieldName = "y" + year;
            column.Tag = year;
            column.Caption = year + "��";
            column.Name = year.ToString();
            column.Width = 70;
            //column.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
            column.VisibleIndex = year;//������������

            //
            // repositoryItemTextEdit1
            //
            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();
            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "n2";
            repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            repositoryItemTextEdit1.Mask.EditMask = "n2";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;
            //column.DisplayFormat.FormatString = "#####################0.##";
            //column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            column.Format.FormatString = "#####################0.##";
            column.Format.FormatType = DevExpress.Utils.FormatType.Numeric;
            this.treeList1.Columns.AddRange(new TreeListColumn[] {
            column});
        }
コード例 #22
0
        public override void GV_Body_MasterRowExpanded(object sender, CustomMasterRowEventArgs e)
        {
            base.GV_Body_MasterRowExpanded(sender, e);
            GridView gridViewWelds = sender as GridView;
            GridView gridViewTests = gridViewWelds.GetDetailView(e.RowHandle, e.RelationIndex) as GridView;

            gridViewTests.OptionsBehavior.ReadOnly = true;
            gridViewTests.BeginUpdate();
            for (int i = 0; i < gridViewTests.Columns.Count; i++)
            {
                gridViewTests.Columns[i].AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;

                if (!DetailViewFields.Contains(gridViewTests.Columns[i].FieldName))
                {
                    gridViewTests.Columns[i].Visible = false;
                    gridViewTests.Columns[i].OptionsColumn.ShowInCustomizationForm = false;
                }
            }
            if (DetailViewFields.Contains("XK005"))
            {
                RepositoryItemTextEdit edit = new RepositoryItemTextEdit();
                gridViewTests.Columns["XK005"].ColumnEdit = edit;
                edit.DisplayFormat.FormatType             = FormatType.Custom;
                edit.DisplayFormat.FormatString           = "XK005";
                edit.DisplayFormat.Format = new AI04Formatter();
            }

            if (DetailViewFields.Contains("XH004"))
            {
                gridViewTests.Columns["XH004"].DisplayFormat.FormatType   = FormatType.Numeric;
                gridViewTests.Columns["XH004"].DisplayFormat.FormatString = "n0";
            }
            gridViewTests.EndUpdate();
        }
コード例 #23
0
        private void CustomStringParametrizedAction_CustomizeControl(object sender, CustomizeControlEventArgs e)
        {
            //Inside BarManager.
            BarEditItem barItem = e.Control as BarEditItem;

            if (barItem != null)
            {
                RepositoryItemTextEdit repositoryItem = (RepositoryItemTextEdit)barItem.Edit;
                repositoryItem.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
                repositoryItem.Mask.EditMask = "(000)000-00-00";
                repositoryItem.Mask.UseMaskAsDisplayFormat = true;
                repositoryItem.EditValueChanged           += repositoryItem_EditValueChanged;
                barItem.Width = 250; //BarManager scales controls itself
            }
            else
            {
                //Inside LayoutManager.
                ButtonEdit buttonEdit = e.Control as ButtonEdit;
                if (buttonEdit != null)
                {
                    buttonEdit.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
                    buttonEdit.Properties.Mask.EditMask = "(000)000-00-00";
                    buttonEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
                    buttonEdit.MinimumSize       = new Size(ScaledWidth(250), 0);
                    buttonEdit.EditValueChanged += repositoryItem_EditValueChanged;
                }
            }
        }
コード例 #24
0
        public static RepositoryItemTextEdit SetEnglishTextEditor(GridColumn column)
        {
            var edit = new RepositoryItemTextEdit();

            column.ColumnEdit = edit;
            edit.Mask.SetEnglishEditorMask();
            return(edit);
        }
コード例 #25
0
        private static RepositoryItemTextEdit CreateNumericEdit(string mask)
        {
            var edit = new RepositoryItemTextEdit();

            edit.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
            edit.Mask.EditMask = mask;
            return(edit);
        }
コード例 #26
0
 public F04()
 {
     InitializeComponent();
     UserLookAndFeel.Default.StyleChanged += MyStyleChanged;
     iniConfig = new IniFile("Config.ini");
     UserLookAndFeel.Default.SetSkinStyle(iniConfig.Read("SkinName", "DevExpress"), iniConfig.Read("SkinPalette", "DevExpress"));
     edit = new RepositoryItemTextEdit();
 }
コード例 #27
0
 public LibraryRibbonTextEdit(BarEditItem beiItem)
 {
     this.beiItem = beiItem;
     riteItem = (RepositoryItemTextEdit)beiItem.Edit;
     riteItem.EditValueChanged += new EventHandler(Edit_EditValueChanged);
     riteItem.KeyDown += OnKeyDown;
     Text = string.Empty;
 }
コード例 #28
0
 public LibraryRibbonTextEdit(BarEditItem beiItem)
 {
     this.beiItem = beiItem;
     riteItem     = (RepositoryItemTextEdit)beiItem.Edit;
     riteItem.EditValueChanged += new EventHandler(Edit_EditValueChanged);
     riteItem.KeyDown          += OnKeyDown;
     Text = string.Empty;
 }
コード例 #29
0
ファイル: AddFrom.cs プロジェクト: xuanximoming/key
        private RepositoryItem SetGridRepositoryItem(DataElementEntity dateElement)
        {
            try
            {
                if (dateElement == null)
                {
                    return(null);
                }
                RepositoryItem repositoryItem = new RepositoryItemTextEdit();
                switch (dateElement.ElementType.ToUpper())
                {
                case "S1":
                    repositoryItem = new RepositoryItemTextEdit();
                    break;

                case "S2":
                    repositoryItem = SetRepositoryItemComboBox(dateElement);
                    break;

                case "S3":
                    repositoryItem = SetRepositoryItemComboBox(dateElement);
                    break;

                case "S4":
                    repositoryItem = SetRepositoryItemMemoEdit(dateElement);
                    break;

                case "S9":
                    repositoryItem = SetRepositoryItemCheckedComboBoxEdit(dateElement);
                    break;

                case "DT":
                    repositoryItem = SetRepositoryItemDateEdit(dateElement);
                    break;

                case "D":
                    repositoryItem = SetRepositoryItemDateEdit(dateElement);
                    break;

                case "T":
                    repositoryItem = SetRepositoryItemTimeEdit(dateElement);
                    break;

                case "N":
                    repositoryItem = SetRepositoryItemSpinEdit(dateElement);
                    break;

                case "L":
                    repositoryItem = SetRepositoryItemCheckEdit(dateElement);
                    break;
                }
                return(repositoryItem);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
コード例 #30
0
        private void btnAgrega_Click(object sender, EventArgs e)
        {
            try
            {
                if (!this._defConfig)
                {
                    throw new Exception("No se ha definido la configuración");
                }

                this.tbTotal.Text = string.Empty;

                // obtiene los articulos seleccionadas del grid de articulos
                List <Modelos.Articulos> seleccionados =
                    ((List <Modelos.Articulos>) this.gridView1.DataSource).Where(w => w.seleccionado == true).Select(s => s).ToList();

                if (seleccionados.Count == 0)
                {
                    return;
                }

                // obtiene los articulos agregados
                List <Modelos.Articulos> agregados = ((List <Modelos.Articulos>) this.gridView2.DataSource).ToList();

                foreach (Modelos.Articulos art in seleccionados)
                {
                    if (agregados.Where(w => w.articuloId == art.articuloId).ToList().Count == 0)
                    {
                        agregados.Add(new Modelos.Articulos
                        {
                            articulo     = art.articulo,
                            articuloId   = art.articuloId,
                            costo        = art.costo,
                            cvearticulo  = art.cvearticulo,
                            estatus      = art.estatus,
                            seleccionado = false
                        });
                    }
                }

                this.gcCalcCosto.DataSource = null;
                this.gcCalcCosto.DataSource = agregados;

                RepositoryItemTextEdit edit = new RepositoryItemTextEdit();
                edit.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                edit.Mask.EditMask = "###,##0.0###";
                this.gcCalcCosto.RepositoryItems.Add(edit);
                gridView2.Columns["calculo"].ColumnEdit = edit;


                this.gridView2.BestFitColumns();

                this._calcReal = false;
            }
            catch (Exception Ex)
            {
                MessageBox.Show(Ex.Message, "Calcular Costos", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
コード例 #31
0
        /// <summary>
        /// Grid Control Initialize
        /// </summary>
        private void InitGridControl()
        {
            try
            {
                viewGetEqEquipmentInfo.BeginInit();

                viewGetEqEquipmentInfo.InitGridColumn("EqSeq             ", "설비 Seq       ", 60, 0, false, false, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("EqCd              ", "설비 코드       ", 60, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("EqNm              ", "설비명        ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("EqCls             ", "설비 구분       ", 80, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("Spec              ", "규격           ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("CountryCd         ", "제조국가       ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("MakerNm           ", "제조사명      ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("PuCust            ", "구매처 명      ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("PuDt              ", "구매 일자       ", 80, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("PuPrice           ", "구매가격       ", 110, 0, false, true, ColumnDataType.Default, HorzAlignment.Far);
                viewGetEqEquipmentInfo.InitGridColumn("OilType           ", "유류 타입       ", 80, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("OilExchCycle      ", "유류 교환 주기   ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Far);
                viewGetEqEquipmentInfo.InitGridColumn("ManagerEmpNo      ", "관리자 사번    ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("WorkerEmpNo       ", "부관리자 사번  ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("InspCycle         ", "점검 주기(월)  ", 80, 0, false, true, ColumnDataType.Default, HorzAlignment.Far);
                viewGetEqEquipmentInfo.InitGridColumn("LastInspDt        ", "마지막 점검 일자", 90, 0, false, true, ColumnDataType.DateTime, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("StatusCd          ", "상태 코드       ", 60, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("UseYN             ", "사용 여부       ", 60, 0, false, true, ColumnDataType.CheckEdit, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("Image             ", "설비 이미지     ", 100, 0, false, false, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("RegUserId         ", "등록자 ID       ", 60, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("RegDt             ", "등록일시       ", 80, 0, false, true, ColumnDataType.DateTime, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("ModUserId         ", "수정자 ID       ", 60, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("ModDt             ", "수정일시       ", 80, 0, false, true, ColumnDataType.DateTime, HorzAlignment.Near);
                viewGetEqEquipmentInfo.InitGridColumn("Remark            ", "비고           ", 100, 0, false, true, ColumnDataType.Default, HorzAlignment.Near);

                viewGetEqEquipmentInfo.InitComboBoxColumn("EqCls", AppCodeUtil.GetCodeMaster("EQ_Type", ""));
                viewGetEqEquipmentInfo.InitComboBoxColumn("CountryCd", AppCodeUtil.GetCodeMaster("COUNTRY", ""));
                viewGetEqEquipmentInfo.InitComboBoxColumn("OilType", AppCodeUtil.GetCodeMaster("OilType", ""));
                viewGetEqEquipmentInfo.InitComboBoxColumn("StatusCd", AppCodeUtil.GetCodeMaster("EqStateCd", ""));
                viewGetEqEquipmentInfo.Columns["PuCust"].ColumnEdit       = lueCust;
                viewGetEqEquipmentInfo.Columns["ManagerEmpNo"].ColumnEdit = lueUser;
                viewGetEqEquipmentInfo.Columns["WorkerEmpNo"].ColumnEdit  = lueUser;
                viewGetEqEquipmentInfo.Columns["RegUserId"].ColumnEdit    = lueUser;
                viewGetEqEquipmentInfo.Columns["ModUserId"].ColumnEdit    = lueUser;
                viewGetEqEquipmentInfo.Columns["PuPrice"].ColumnEdit      = spinPrice;

                RepositoryItemTextEdit textEdit = new RepositoryItemTextEdit();
                textEdit.DisplayFormat.FormatType   = FormatType.DateTime;
                textEdit.DisplayFormat.FormatString = "yyyy-MM-dd";
                viewGetEqEquipmentInfo.Columns["PuDt"].ColumnEdit       = textEdit;
                viewGetEqEquipmentInfo.Columns["LastInspDt"].ColumnEdit = textEdit;
                viewGetEqEquipmentInfo.Columns["RegDt"].ColumnEdit      = textEdit;
                viewGetEqEquipmentInfo.Columns["ModDt"].ColumnEdit      = textEdit;

                viewGetEqEquipmentInfo.EndInit();
            }
            catch (Exception ex)
            {
                ExceptionBox.Show(ex);
            }
        }
コード例 #32
0
 public void AddTextEdit(string string_2, object object_0, bool bool_0)
 {
     this.repositoryItemTextEdit_0 = new RepositoryItemTextEdit();
     this.gridEditorCollection_0.Add(this.repositoryItemTextEdit_0, string_2, object_0);
     this.repositoryItemTextEdit_0.AutoHeight  = false;
     this.repositoryItemTextEdit_0.BorderStyle = BorderStyles.NoBorder;
     this.repositoryItemTextEdit_0.Name        = "repositoryItemTextEdit";
     this.repositoryItemTextEdit_0.ReadOnly    = bool_0;
 }
コード例 #33
0
        protected override ResultStatus Retrieve()
        {
            try {
                DataTable dt = dao49072.ListData();

                //0.check (沒有資料時,則自動新增一筆)
                if (dt.Rows.Count <= 0)
                {
                    InsertRow();
                }

                //1. 設定gvExport
                gvMain.Columns.Clear();
                gvMain.OptionsBehavior.AutoPopulateColumns = true;
                gcMain.DataSource = dt;
                gvMain.BestFitColumns();
                GridHelper.SetCommonGrid(gvMain);

                //1.1 設定欄位caption
                gvMain.SetColumnCaption("SPNT1_TYPE", "商品");
                gvMain.SetColumnCaption("SPNT1_DAYS", "天期");
                gvMain.SetColumnCaption("SPNT1_VAL", "值");
                gvMain.SetColumnCaption("SPNT1_W_TIME", "SPNT1_W_TIME");
                gvMain.SetColumnCaption("SPNT1_W_USER_ID", "SPNT1_W_USER_ID");

                gvMain.SetColumnCaption("IS_NEWROW", "Is_NewRow");

                //設定欄位header顏色
                gvMain.Columns["SPNT1_TYPE"].AppearanceHeader.BackColor = GridHelper.PK;
                gvMain.Columns["SPNT1_DAYS"].AppearanceHeader.BackColor = GridHelper.PK;
                gvMain.Columns["SPNT1_VAL"].AppearanceHeader.BackColor  = GridHelper.PK;

                //1.2 設定欄位format格式
                RepositoryItemTextEdit type = new RepositoryItemTextEdit();
                gcMain.RepositoryItems.Add(type);
                gvMain.Columns["SPNT1_VAL"].ColumnEdit = type;
                type.DisplayFormat.FormatType          = DevExpress.Utils.FormatType.Numeric;
                type.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
                type.DisplayFormat.FormatString = "###0.########";
                type.Mask.EditMask = "####0.########";

                //1.3 設定隱藏欄位
                gvMain.Columns["SPNT1_W_TIME"].Visible    = false;
                gvMain.Columns["SPNT1_W_USER_ID"].Visible = false;
                gvMain.Columns["IS_NEWROW"].Visible       = false;

                //1.4 設定dropdownlist
                gvMain.Columns["SPNT1_TYPE"].ColumnEdit = lupSpnt1;

                gcMain.Focus();

                return(ResultStatus.Success);
            } catch (Exception ex) {
                WriteLog(ex);
            }
            return(ResultStatus.Fail);
        }
コード例 #34
0
 private void InitGrid()
 {
     this.view.BeginUpdate();
     this.view.OptionsView.ShowHorzLines = true;
     this.view.OptionsView.ShowVertLines = true;
     this.view.OptionsSelection.MultiSelect = true;
     string[] strArray = new string[] { "ParticipantName", "ParticipantType", "ResourceName", "Description" };
     string[] strArray2 = new string[] { "参与者名称", "参与者类型", "资源名称", "备注" };
     GridColumn[] columns = new GridColumn[strArray.Length];
     for (int i = 0; i < columns.Length; i++)
     {
         columns[i] = new GridColumn();
         columns[i].FieldName = strArray[i];
         columns[i].Caption = strArray2[i];
         columns[i].VisibleIndex = i;
     }
     this.view.Columns.AddRange(columns);
     RepositoryItemButtonEdit edit = new RepositoryItemButtonEdit();
     RepositoryItemTextEdit edit2 = new RepositoryItemTextEdit();
     RepositoryItemButtonEdit edit3 = new RepositoryItemButtonEdit();
     edit.ReadOnly = true;
     edit2.ReadOnly = true;
     edit3.ReadOnly = true;
     edit.ButtonClick += new ButtonPressedEventHandler(this.ParticipantButtonClick);
     edit3.ButtonClick += new ButtonPressedEventHandler(this.ResouceButtonClick);
     columns[0].ColumnEdit = edit;
     columns[1].ColumnEdit = edit2;
     columns[2].ColumnEdit = edit3;
     this.view.EndUpdate();
 }
コード例 #35
0
ファイル: XtraGrid.cs プロジェクト: labeuze/source
 public static void SetTextEditOption(RepositoryItemTextEdit edit, string sOption)
 {
     if (sOption == null || sOption == "") return;
     string[] sOptions = zsplit.Split(sOption, ',', true);
     foreach (string s in sOptions)
     {
         switch (s.ToLower())
         {
             case "regular":
                 edit.MaskData.MaskType = MaskType.Regular;
                 break;
             case "nosaveliteral":
                 edit.MaskData.SaveLiteral = true;
                 break;
             case "noignoremaskblank":
                 edit.MaskData.IgnoreMaskBlank = true;
                 break;
             case "beeponerror":
                 edit.MaskData.BeepOnError = true;
                 break;
         }
     }
 }
コード例 #36
0
ファイル: XtraGrid.cs プロジェクト: labeuze/source
        public static void SetGridColumnEditMask(GridColumn col, XElement colDefinition)
        {
            if (col == null) return;

            //if (gbTrace) cTrace.StartNestedLevel("SetGridColumnEditMask");

            RepositoryItemTextEdit edit = new RepositoryItemTextEdit();
            edit.Name = "PKT_Grid_Mask_Edit";
            ((System.ComponentModel.ISupportInitialize)edit).BeginInit();
            col.View.GridControl.RepositoryItems.AddRange(new RepositoryItem[] { edit });

            string s = colDefinition.zAttribValue("Mask");
            if (s != null) edit.MaskData.EditMask = s;
            s = colDefinition.zAttribValue("MaskBlank");
            if (s != null) edit.MaskData.Blank = s;
            edit.MaskData.MaskType = MaskType.Simple;
            edit.MaskData.SaveLiteral = true;
            edit.MaskData.IgnoreMaskBlank = true;
            edit.MaskData.BeepOnError = false;
            // modif le 27/03/2013 column edit Mask par defaut pour pouvoir afficher les valeurs nulles --null--
            string sNullText = colDefinition.zAttribValue("NullText", "--null--");
            edit.NullText = sNullText;
            s = colDefinition.zAttribValue("MaskOption");
            SetTextEditOption(edit, s);
            col.ColumnEdit = edit;
            ((System.ComponentModel.ISupportInitialize)edit).EndInit();

            //if (gbTrace) cTrace.StopNestedLevel("SetGridColumnEditMask");
        }
コード例 #37
0
 private void GridEditorsAdjust()
 {
     this.lv_condition.BeginUpdate();
     RepositoryItemComboBox box = new RepositoryItemComboBox();
     this.cmbrs_cnd = new RepositoryItemComboBox();
     this.cmbrs_fld = new RepositoryItemComboBox();
     this.cmbrs_type = new RepositoryItemComboBox();
     RepositoryItemComboBox box2 = new RepositoryItemComboBox();
     this.cmbrs_tableName = new RepositoryItemComboBox();
     this.txtrs_val = new RepositoryItemTextEdit();
     this.txtrs_cbx = new RepositoryItemComboBox();
     this.dtrs_val = new RepositoryItemDateEdit();
     box.Items.AddRange(new object[] { "且", "或" });
     this.cmbrs_fld.AutoHeight = false;
     box2.AutoHeight = false;
     box2.Items.AddRange(new object[] { "包含", "等于", "大于", "小于", "不等于", "大于或等于", "小于或等于" });
     this.col_op.FieldName = "Operation";
     this.col_Rel.FieldName = "Relation";
     this.col_value.FieldName = "Compare_Value";
     this.col_condition.FieldName = "Condition_Name";
     this.col_fieldid.FieldName = "Field_ID";
     this.col_type.FieldName = "Field_Type";
     this.col_tableName.FieldName = "TABLE_NAME";
     this.col_Rel.ColumnEdit = box;
     this.col_condition.ColumnEdit = this.cmbrs_cnd;
     this.col_fieldid.ColumnEdit = this.cmbrs_fld;
     this.col_type.ColumnEdit = this.cmbrs_type;
     this.col_op.ColumnEdit = box2;
     this.txtrs_val.Validating += new CancelEventHandler(this.ValueValidating);
     this.cmbrs_cnd.SelectedIndexChanged += new EventHandler(this.ConditionNameChanged);
     this.lv_condition.EndUpdate();
 }
コード例 #38
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(frmDepartmentDlg));
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnSave = new System.Windows.Forms.Button();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmbStatus = new System.Windows.Forms.ComboBox();
     this.tbcDepartment = new System.Windows.Forms.TabControl();
     this.tbpDeptInfo = new System.Windows.Forms.TabPage();
     this.pnlDeptInfo = new System.Windows.Forms.Panel();
     this.txtNickName = new System.Windows.Forms.TextBox();
     this.lblNickName = new System.Windows.Forms.Label();
     this.chkNoDept = new System.Windows.Forms.CheckBox();
     this.llblClient = new System.Windows.Forms.LinkLabel();
     this.cmbClient = new System.Windows.Forms.ComboBox();
     this.dtEnded = new System.Windows.Forms.DateTimePicker();
     this.dtJoined = new System.Windows.Forms.DateTimePicker();
     this.lblHRHeader = new System.Windows.Forms.Label();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.label42 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label11 = new System.Windows.Forms.Label();
     this.txtCompRomaji = new System.Windows.Forms.TextBox();
     this.txtCompPhonetic = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.txtCompName = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tbpAddress = new System.Windows.Forms.TabPage();
     this.pnlAddress = new System.Windows.Forms.Panel();
     this.btnImportClientAddress = new System.Windows.Forms.Button();
     this.label48 = new System.Windows.Forms.Label();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.txtAccFirstRomaji = new System.Windows.Forms.TextBox();
     this.txtAccFirstPhonetic = new System.Windows.Forms.TextBox();
     this.label49 = new System.Windows.Forms.Label();
     this.label50 = new System.Windows.Forms.Label();
     this.txtAccFirstName = new System.Windows.Forms.TextBox();
     this.label51 = new System.Windows.Forms.Label();
     this.txtAccLRomaji1 = new System.Windows.Forms.TextBox();
     this.txtAccLPhonetic = new System.Windows.Forms.TextBox();
     this.label52 = new System.Windows.Forms.Label();
     this.label53 = new System.Windows.Forms.Label();
     this.txtAccLName = new System.Windows.Forms.TextBox();
     this.label54 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.txtUrl = new System.Windows.Forms.TextBox();
     this.label38 = new System.Windows.Forms.Label();
     this.txtFax2 = new System.Windows.Forms.TextBox();
     this.txtFax1 = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.lblContactInfoHeader = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label43 = new System.Windows.Forms.Label();
     this.txtPhoneOther = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.txtPhone2 = new System.Windows.Forms.TextBox();
     this.txtPhone1 = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.lblStation2Header = new System.Windows.Forms.Label();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.txtMintSt2 = new System.Windows.Forms.TextBox();
     this.txtClosestLine2 = new System.Windows.Forms.TextBox();
     this.label60 = new System.Windows.Forms.Label();
     this.label61 = new System.Windows.Forms.Label();
     this.txtClosestSt2 = new System.Windows.Forms.TextBox();
     this.label62 = new System.Windows.Forms.Label();
     this.lblStation1Header = new System.Windows.Forms.Label();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.txtMintSt1 = new System.Windows.Forms.TextBox();
     this.txtClosestLine1 = new System.Windows.Forms.TextBox();
     this.label55 = new System.Windows.Forms.Label();
     this.label56 = new System.Windows.Forms.Label();
     this.txtClosestSt1 = new System.Windows.Forms.TextBox();
     this.label57 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.cmbBlock = new System.Windows.Forms.ComboBox();
     this.txtCountry = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.txtPost = new System.Windows.Forms.TextBox();
     this.txtState = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.txtCity = new System.Windows.Forms.TextBox();
     this.label25 = new System.Windows.Forms.Label();
     this.txtStreet3 = new System.Windows.Forms.TextBox();
     this.txtStreet2 = new System.Windows.Forms.TextBox();
     this.txtStreet1 = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.lblAddressHeader = new System.Windows.Forms.Label();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.tbpContact = new System.Windows.Forms.TabPage();
     this.pnlContact = new System.Windows.Forms.Panel();
     this.grdContact = new DevExpress.XtraGrid.GridControl();
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.gvwContact = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolContactID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolContactType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColLastName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolFirstNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEmail1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhone = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolMobile = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatusID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlBottom = new System.Windows.Forms.Panel();
     this.button1 = new System.Windows.Forms.Button();
     this.btnDel = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnPrint = new System.Windows.Forms.Button();
     this.btnPageSetup = new System.Windows.Forms.Button();
     this.printPreviewDialog1 = new System.Windows.Forms.PrintPreviewDialog();
     this.printDocument1 = new System.Drawing.Printing.PrintDocument();
     this.printingSystem1 = new DevExpress.XtraPrinting.PrintingSystem(this.components);
     this.tbcDepartment.SuspendLayout();
     this.tbpDeptInfo.SuspendLayout();
     this.pnlDeptInfo.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tbpAddress.SuspendLayout();
     this.pnlAddress.SuspendLayout();
     this.tbpContact.SuspendLayout();
     this.pnlContact.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).BeginInit();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnCancel.Location = new System.Drawing.Point(480, 525);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 5;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnSave
     //
     this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnSave.Location = new System.Drawing.Point(397, 525);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "Save";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // lblStatus
     //
     this.lblStatus.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStatus.Location = new System.Drawing.Point(384, 106);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(88, 17);
     this.lblStatus.TabIndex = 3;
     this.lblStatus.Text = "Status";
     //
     // cmbStatus
     //
     this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbStatus.Items.AddRange(new object[] {
     "Active",
     "Inactive"});
     this.cmbStatus.Location = new System.Drawing.Point(486, 104);
     this.cmbStatus.Name = "cmbStatus";
     this.cmbStatus.Size = new System.Drawing.Size(120, 21);
     this.cmbStatus.TabIndex = 7;
     this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
     //
     // tbcDepartment
     //
     this.tbcDepartment.Controls.Add(this.tbpDeptInfo);
     this.tbcDepartment.Controls.Add(this.tbpAddress);
     this.tbcDepartment.Controls.Add(this.tbpContact);
     this.tbcDepartment.Location = new System.Drawing.Point(0, 2);
     this.tbcDepartment.Name = "tbcDepartment";
     this.tbcDepartment.SelectedIndex = 0;
     this.tbcDepartment.Size = new System.Drawing.Size(648, 510);
     this.tbcDepartment.TabIndex = 15;
     //
     // tbpDeptInfo
     //
     this.tbpDeptInfo.Controls.Add(this.pnlDeptInfo);
     this.tbpDeptInfo.Location = new System.Drawing.Point(4, 22);
     this.tbpDeptInfo.Name = "tbpDeptInfo";
     this.tbpDeptInfo.Size = new System.Drawing.Size(640, 484);
     this.tbpDeptInfo.TabIndex = 0;
     this.tbpDeptInfo.Text = "Department Info";
     //
     // pnlDeptInfo
     //
     this.pnlDeptInfo.Controls.Add(this.txtNickName);
     this.pnlDeptInfo.Controls.Add(this.lblNickName);
     this.pnlDeptInfo.Controls.Add(this.chkNoDept);
     this.pnlDeptInfo.Controls.Add(this.llblClient);
     this.pnlDeptInfo.Controls.Add(this.cmbClient);
     this.pnlDeptInfo.Controls.Add(this.dtEnded);
     this.pnlDeptInfo.Controls.Add(this.dtJoined);
     this.pnlDeptInfo.Controls.Add(this.lblHRHeader);
     this.pnlDeptInfo.Controls.Add(this.groupBox12);
     this.pnlDeptInfo.Controls.Add(this.label42);
     this.pnlDeptInfo.Controls.Add(this.label39);
     this.pnlDeptInfo.Controls.Add(this.label13);
     this.pnlDeptInfo.Controls.Add(this.groupBox1);
     this.pnlDeptInfo.Controls.Add(this.txtCompRomaji);
     this.pnlDeptInfo.Controls.Add(this.txtCompPhonetic);
     this.pnlDeptInfo.Controls.Add(this.label4);
     this.pnlDeptInfo.Controls.Add(this.label5);
     this.pnlDeptInfo.Controls.Add(this.txtCompName);
     this.pnlDeptInfo.Controls.Add(this.label6);
     this.pnlDeptInfo.Controls.Add(this.lblStatus);
     this.pnlDeptInfo.Controls.Add(this.cmbStatus);
     this.pnlDeptInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlDeptInfo.Location = new System.Drawing.Point(0, 0);
     this.pnlDeptInfo.Name = "pnlDeptInfo";
     this.pnlDeptInfo.Size = new System.Drawing.Size(640, 484);
     this.pnlDeptInfo.TabIndex = 337;
     //
     // txtNickName
     //
     this.txtNickName.Location = new System.Drawing.Point(147, 153);
     this.txtNickName.MaxLength = 255;
     this.txtNickName.Name = "txtNickName";
     this.txtNickName.Size = new System.Drawing.Size(192, 21);
     this.txtNickName.TabIndex = 3;
     //
     // lblNickName
     //
     this.lblNickName.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblNickName.Location = new System.Drawing.Point(27, 155);
     this.lblNickName.Name = "lblNickName";
     this.lblNickName.Size = new System.Drawing.Size(114, 17);
     this.lblNickName.TabIndex = 336;
     this.lblNickName.Text = "Abbreviated Name";
     //
     // chkNoDept
     //
     this.chkNoDept.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkNoDept.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chkNoDept.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkNoDept.Location = new System.Drawing.Point(27, 56);
     this.chkNoDept.Name = "chkNoDept";
     this.chkNoDept.Size = new System.Drawing.Size(134, 16);
     this.chkNoDept.TabIndex = 334;
     this.chkNoDept.Text = "No Department";
     this.chkNoDept.CheckedChanged += new System.EventHandler(this.chkNoDept_CheckedChanged);
     //
     // llblClient
     //
     this.llblClient.Location = new System.Drawing.Point(24, 34);
     this.llblClient.Name = "llblClient";
     this.llblClient.Size = new System.Drawing.Size(104, 17);
     this.llblClient.TabIndex = 3;
     this.llblClient.TabStop = true;
     this.llblClient.Text = "Client";
     this.llblClient.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.llblClient_LinkClicked);
     //
     // cmbClient
     //
     this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbClient.Items.AddRange(new object[] {
     "Class",
     "Desk",
     "Presentation Training",
     "Recording",
     "Mendan",
     "Other"});
     this.cmbClient.Location = new System.Drawing.Point(147, 31);
     this.cmbClient.Name = "cmbClient";
     this.cmbClient.Size = new System.Drawing.Size(192, 21);
     this.cmbClient.TabIndex = 4;
     this.cmbClient.SelectedIndexChanged += new System.EventHandler(this.cmbClient_SelectedIndexChanged);
     //
     // dtEnded
     //
     this.dtEnded.CustomFormat = "MM/dd/yyyy";
     this.dtEnded.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtEnded.Location = new System.Drawing.Point(486, 56);
     this.dtEnded.Name = "dtEnded";
     this.dtEnded.ShowCheckBox = true;
     this.dtEnded.Size = new System.Drawing.Size(120, 21);
     this.dtEnded.TabIndex = 6;
     //
     // dtJoined
     //
     this.dtJoined.CustomFormat = "MM/dd/yyyy";
     this.dtJoined.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtJoined.Location = new System.Drawing.Point(486, 32);
     this.dtJoined.Name = "dtJoined";
     this.dtJoined.ShowCheckBox = true;
     this.dtJoined.Size = new System.Drawing.Size(120, 21);
     this.dtJoined.TabIndex = 5;
     //
     // lblHRHeader
     //
     this.lblHRHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblHRHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblHRHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblHRHeader.Location = new System.Drawing.Point(384, 9);
     this.lblHRHeader.Name = "lblHRHeader";
     this.lblHRHeader.Size = new System.Drawing.Size(27, 17);
     this.lblHRHeader.TabIndex = 238;
     this.lblHRHeader.Text = "HR";
     //
     // groupBox12
     //
     this.groupBox12.Location = new System.Drawing.Point(408, 16);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(200, 2);
     this.groupBox12.TabIndex = 237;
     this.groupBox12.TabStop = false;
     //
     // label42
     //
     this.label42.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label42.Location = new System.Drawing.Point(384, 58);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(88, 17);
     this.label42.TabIndex = 236;
     this.label42.Text = "Date Ended";
     //
     // label39
     //
     this.label39.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label39.Location = new System.Drawing.Point(384, 34);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(88, 17);
     this.label39.TabIndex = 235;
     this.label39.Text = "Date Joined";
     //
     // label13
     //
     this.label13.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label13.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label13.Location = new System.Drawing.Point(24, 9);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(89, 17);
     this.label13.TabIndex = 79;
     this.label13.Text = "Department";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label11);
     this.groupBox1.Location = new System.Drawing.Point(110, 16);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(226, 2);
     this.groupBox1.TabIndex = 78;
     this.groupBox1.TabStop = false;
     //
     // label11
     //
     this.label11.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label11.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label11.Location = new System.Drawing.Point(24, -56);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(57, 21);
     this.label11.TabIndex = 73;
     this.label11.Text = "Company";
     //
     // txtCompRomaji
     //
     this.txtCompRomaji.Location = new System.Drawing.Point(147, 128);
     this.txtCompRomaji.MaxLength = 255;
     this.txtCompRomaji.Name = "txtCompRomaji";
     this.txtCompRomaji.Size = new System.Drawing.Size(192, 21);
     this.txtCompRomaji.TabIndex = 2;
     //
     // txtCompPhonetic
     //
     this.txtCompPhonetic.Location = new System.Drawing.Point(147, 104);
     this.txtCompPhonetic.MaxLength = 255;
     this.txtCompPhonetic.Name = "txtCompPhonetic";
     this.txtCompPhonetic.Size = new System.Drawing.Size(192, 21);
     this.txtCompPhonetic.TabIndex = 1;
     //
     // label4
     //
     this.label4.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label4.Location = new System.Drawing.Point(27, 128);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(104, 17);
     this.label4.TabIndex = 77;
     this.label4.Text = "Name Romaji";
     //
     // label5
     //
     this.label5.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label5.Location = new System.Drawing.Point(27, 104);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(104, 17);
     this.label5.TabIndex = 76;
     this.label5.Text = "Name Phonetic";
     //
     // txtCompName
     //
     this.txtCompName.Location = new System.Drawing.Point(147, 80);
     this.txtCompName.MaxLength = 255;
     this.txtCompName.Name = "txtCompName";
     this.txtCompName.Size = new System.Drawing.Size(192, 21);
     this.txtCompName.TabIndex = 0;
     //
     // label6
     //
     this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label6.Location = new System.Drawing.Point(27, 80);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(104, 17);
     this.label6.TabIndex = 75;
     this.label6.Text = "Name";
     //
     // tbpAddress
     //
     this.tbpAddress.Controls.Add(this.pnlAddress);
     this.tbpAddress.Location = new System.Drawing.Point(4, 22);
     this.tbpAddress.Name = "tbpAddress";
     this.tbpAddress.Size = new System.Drawing.Size(640, 484);
     this.tbpAddress.TabIndex = 1;
     this.tbpAddress.Text = "Address";
     //
     // pnlAddress
     //
     this.pnlAddress.Controls.Add(this.btnImportClientAddress);
     this.pnlAddress.Controls.Add(this.label48);
     this.pnlAddress.Controls.Add(this.groupBox9);
     this.pnlAddress.Controls.Add(this.txtAccFirstRomaji);
     this.pnlAddress.Controls.Add(this.txtAccFirstPhonetic);
     this.pnlAddress.Controls.Add(this.label49);
     this.pnlAddress.Controls.Add(this.label50);
     this.pnlAddress.Controls.Add(this.txtAccFirstName);
     this.pnlAddress.Controls.Add(this.label51);
     this.pnlAddress.Controls.Add(this.txtAccLRomaji1);
     this.pnlAddress.Controls.Add(this.txtAccLPhonetic);
     this.pnlAddress.Controls.Add(this.label52);
     this.pnlAddress.Controls.Add(this.label53);
     this.pnlAddress.Controls.Add(this.txtAccLName);
     this.pnlAddress.Controls.Add(this.label54);
     this.pnlAddress.Controls.Add(this.label36);
     this.pnlAddress.Controls.Add(this.txtUrl);
     this.pnlAddress.Controls.Add(this.label38);
     this.pnlAddress.Controls.Add(this.txtFax2);
     this.pnlAddress.Controls.Add(this.txtFax1);
     this.pnlAddress.Controls.Add(this.label41);
     this.pnlAddress.Controls.Add(this.lblContactInfoHeader);
     this.pnlAddress.Controls.Add(this.groupBox2);
     this.pnlAddress.Controls.Add(this.label43);
     this.pnlAddress.Controls.Add(this.txtPhoneOther);
     this.pnlAddress.Controls.Add(this.label33);
     this.pnlAddress.Controls.Add(this.txtPhone2);
     this.pnlAddress.Controls.Add(this.txtPhone1);
     this.pnlAddress.Controls.Add(this.label32);
     this.pnlAddress.Controls.Add(this.lblStation2Header);
     this.pnlAddress.Controls.Add(this.groupBox11);
     this.pnlAddress.Controls.Add(this.txtMintSt2);
     this.pnlAddress.Controls.Add(this.txtClosestLine2);
     this.pnlAddress.Controls.Add(this.label60);
     this.pnlAddress.Controls.Add(this.label61);
     this.pnlAddress.Controls.Add(this.txtClosestSt2);
     this.pnlAddress.Controls.Add(this.label62);
     this.pnlAddress.Controls.Add(this.lblStation1Header);
     this.pnlAddress.Controls.Add(this.groupBox10);
     this.pnlAddress.Controls.Add(this.txtMintSt1);
     this.pnlAddress.Controls.Add(this.txtClosestLine1);
     this.pnlAddress.Controls.Add(this.label55);
     this.pnlAddress.Controls.Add(this.label56);
     this.pnlAddress.Controls.Add(this.txtClosestSt1);
     this.pnlAddress.Controls.Add(this.label57);
     this.pnlAddress.Controls.Add(this.label28);
     this.pnlAddress.Controls.Add(this.label29);
     this.pnlAddress.Controls.Add(this.cmbBlock);
     this.pnlAddress.Controls.Add(this.txtCountry);
     this.pnlAddress.Controls.Add(this.label27);
     this.pnlAddress.Controls.Add(this.txtPost);
     this.pnlAddress.Controls.Add(this.txtState);
     this.pnlAddress.Controls.Add(this.label26);
     this.pnlAddress.Controls.Add(this.txtCity);
     this.pnlAddress.Controls.Add(this.label25);
     this.pnlAddress.Controls.Add(this.txtStreet3);
     this.pnlAddress.Controls.Add(this.txtStreet2);
     this.pnlAddress.Controls.Add(this.txtStreet1);
     this.pnlAddress.Controls.Add(this.label24);
     this.pnlAddress.Controls.Add(this.lblAddressHeader);
     this.pnlAddress.Controls.Add(this.groupBox8);
     this.pnlAddress.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlAddress.Location = new System.Drawing.Point(0, 0);
     this.pnlAddress.Name = "pnlAddress";
     this.pnlAddress.Size = new System.Drawing.Size(640, 484);
     this.pnlAddress.TabIndex = 312;
     //
     // btnImportClientAddress
     //
     this.btnImportClientAddress.Enabled = false;
     this.btnImportClientAddress.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnImportClientAddress.Location = new System.Drawing.Point(200, 7);
     this.btnImportClientAddress.Name = "btnImportClientAddress";
     this.btnImportClientAddress.Size = new System.Drawing.Size(240, 23);
     this.btnImportClientAddress.TabIndex = 312;
     this.btnImportClientAddress.Text = "Import Client\'s Address Information";
     this.btnImportClientAddress.Click += new System.EventHandler(this.btnImportClientAddress_Click);
     //
     // label48
     //
     this.label48.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label48.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.label48.Location = new System.Drawing.Point(342, 284);
     this.label48.Name = "label48";
     this.label48.Size = new System.Drawing.Size(151, 17);
     this.label48.TabIndex = 311;
     this.label48.Text = "Internal Accounts Rep";
     //
     // groupBox9
     //
     this.groupBox9.Location = new System.Drawing.Point(474, 292);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(144, 2);
     this.groupBox9.TabIndex = 310;
     this.groupBox9.TabStop = false;
     //
     // txtAccFirstRomaji
     //
     this.txtAccFirstRomaji.Location = new System.Drawing.Point(464, 436);
     this.txtAccFirstRomaji.MaxLength = 255;
     this.txtAccFirstRomaji.Name = "txtAccFirstRomaji";
     this.txtAccFirstRomaji.Size = new System.Drawing.Size(165, 21);
     this.txtAccFirstRomaji.TabIndex = 255;
     //
     // txtAccFirstPhonetic
     //
     this.txtAccFirstPhonetic.Location = new System.Drawing.Point(464, 412);
     this.txtAccFirstPhonetic.MaxLength = 255;
     this.txtAccFirstPhonetic.Name = "txtAccFirstPhonetic";
     this.txtAccFirstPhonetic.Size = new System.Drawing.Size(165, 21);
     this.txtAccFirstPhonetic.TabIndex = 254;
     //
     // label49
     //
     this.label49.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label49.Location = new System.Drawing.Point(342, 438);
     this.label49.Name = "label49";
     this.label49.Size = new System.Drawing.Size(114, 17);
     this.label49.TabIndex = 309;
     this.label49.Text = "First Name Romaji";
     //
     // label50
     //
     this.label50.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label50.Location = new System.Drawing.Point(342, 414);
     this.label50.Name = "label50";
     this.label50.Size = new System.Drawing.Size(118, 17);
     this.label50.TabIndex = 308;
     this.label50.Text = "First Name Phonetic";
     //
     // txtAccFirstName
     //
     this.txtAccFirstName.Location = new System.Drawing.Point(464, 388);
     this.txtAccFirstName.MaxLength = 255;
     this.txtAccFirstName.Name = "txtAccFirstName";
     this.txtAccFirstName.Size = new System.Drawing.Size(165, 21);
     this.txtAccFirstName.TabIndex = 253;
     //
     // label51
     //
     this.label51.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label51.Location = new System.Drawing.Point(342, 390);
     this.label51.Name = "label51";
     this.label51.Size = new System.Drawing.Size(114, 17);
     this.label51.TabIndex = 307;
     this.label51.Text = "First Name";
     //
     // txtAccLRomaji1
     //
     this.txtAccLRomaji1.Location = new System.Drawing.Point(464, 356);
     this.txtAccLRomaji1.MaxLength = 255;
     this.txtAccLRomaji1.Name = "txtAccLRomaji1";
     this.txtAccLRomaji1.Size = new System.Drawing.Size(165, 21);
     this.txtAccLRomaji1.TabIndex = 252;
     //
     // txtAccLPhonetic
     //
     this.txtAccLPhonetic.Location = new System.Drawing.Point(464, 332);
     this.txtAccLPhonetic.MaxLength = 255;
     this.txtAccLPhonetic.Name = "txtAccLPhonetic";
     this.txtAccLPhonetic.Size = new System.Drawing.Size(165, 21);
     this.txtAccLPhonetic.TabIndex = 251;
     this.txtAccLPhonetic.TextChanged += new System.EventHandler(this.txtAccLPhonetic_TextChanged);
     //
     // label52
     //
     this.label52.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label52.Location = new System.Drawing.Point(342, 358);
     this.label52.Name = "label52";
     this.label52.Size = new System.Drawing.Size(114, 17);
     this.label52.TabIndex = 306;
     this.label52.Text = "Last Name Romaji";
     //
     // label53
     //
     this.label53.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label53.Location = new System.Drawing.Point(342, 334);
     this.label53.Name = "label53";
     this.label53.Size = new System.Drawing.Size(114, 17);
     this.label53.TabIndex = 305;
     this.label53.Text = "Last Name Phonetic";
     this.label53.Click += new System.EventHandler(this.label53_Click);
     //
     // txtAccLName
     //
     this.txtAccLName.Location = new System.Drawing.Point(464, 308);
     this.txtAccLName.MaxLength = 255;
     this.txtAccLName.Name = "txtAccLName";
     this.txtAccLName.Size = new System.Drawing.Size(165, 21);
     this.txtAccLName.TabIndex = 250;
     //
     // label54
     //
     this.label54.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label54.Location = new System.Drawing.Point(342, 310);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(114, 17);
     this.label54.TabIndex = 304;
     this.label54.Text = "Last Name";
     //
     // label36
     //
     this.label36.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label36.Location = new System.Drawing.Point(344, 188);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(114, 17);
     this.label36.TabIndex = 287;
     this.label36.Text = "Fax 2";
     //
     // txtUrl
     //
     this.txtUrl.Cursor = System.Windows.Forms.Cursors.Hand;
     this.txtUrl.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUrl.ForeColor = System.Drawing.SystemColors.ActiveCaption;
     this.txtUrl.Location = new System.Drawing.Point(464, 210);
     this.txtUrl.MaxLength = 255;
     this.txtUrl.Name = "txtUrl";
     this.txtUrl.Size = new System.Drawing.Size(165, 21);
     this.txtUrl.TabIndex = 249;
     //
     // label38
     //
     this.label38.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label38.Location = new System.Drawing.Point(344, 212);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(114, 17);
     this.label38.TabIndex = 286;
     this.label38.Text = "URL";
     //
     // txtFax2
     //
     this.txtFax2.Location = new System.Drawing.Point(464, 186);
     this.txtFax2.MaxLength = 255;
     this.txtFax2.Name = "txtFax2";
     this.txtFax2.Size = new System.Drawing.Size(165, 21);
     this.txtFax2.TabIndex = 248;
     //
     // txtFax1
     //
     this.txtFax1.Location = new System.Drawing.Point(464, 162);
     this.txtFax1.MaxLength = 255;
     this.txtFax1.Name = "txtFax1";
     this.txtFax1.Size = new System.Drawing.Size(165, 21);
     this.txtFax1.TabIndex = 247;
     //
     // label41
     //
     this.label41.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label41.Location = new System.Drawing.Point(344, 164);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(114, 17);
     this.label41.TabIndex = 285;
     this.label41.Text = "Fax 1";
     //
     // lblContactInfoHeader
     //
     this.lblContactInfoHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblContactInfoHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblContactInfoHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblContactInfoHeader.Location = new System.Drawing.Point(342, 47);
     this.lblContactInfoHeader.Name = "lblContactInfoHeader";
     this.lblContactInfoHeader.Size = new System.Drawing.Size(86, 17);
     this.lblContactInfoHeader.TabIndex = 284;
     this.lblContactInfoHeader.Text = "Contact Info";
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(421, 54);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(195, 2);
     this.groupBox2.TabIndex = 283;
     this.groupBox2.TabStop = false;
     //
     // label43
     //
     this.label43.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label43.Location = new System.Drawing.Point(344, 140);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(114, 17);
     this.label43.TabIndex = 281;
     this.label43.Text = "Phone Other";
     //
     // txtPhoneOther
     //
     this.txtPhoneOther.Location = new System.Drawing.Point(464, 138);
     this.txtPhoneOther.MaxLength = 255;
     this.txtPhoneOther.Name = "txtPhoneOther";
     this.txtPhoneOther.Size = new System.Drawing.Size(165, 21);
     this.txtPhoneOther.TabIndex = 246;
     //
     // label33
     //
     this.label33.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label33.Location = new System.Drawing.Point(342, 102);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(114, 17);
     this.label33.TabIndex = 280;
     this.label33.Text = "Phone 2";
     //
     // txtPhone2
     //
     this.txtPhone2.Location = new System.Drawing.Point(464, 100);
     this.txtPhone2.MaxLength = 255;
     this.txtPhone2.Name = "txtPhone2";
     this.txtPhone2.Size = new System.Drawing.Size(165, 21);
     this.txtPhone2.TabIndex = 245;
     //
     // txtPhone1
     //
     this.txtPhone1.Location = new System.Drawing.Point(464, 76);
     this.txtPhone1.MaxLength = 255;
     this.txtPhone1.Name = "txtPhone1";
     this.txtPhone1.Size = new System.Drawing.Size(165, 21);
     this.txtPhone1.TabIndex = 244;
     //
     // label32
     //
     this.label32.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label32.Location = new System.Drawing.Point(342, 78);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(114, 17);
     this.label32.TabIndex = 276;
     this.label32.Text = "Phone 1";
     //
     // lblStation2Header
     //
     this.lblStation2Header.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStation2Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStation2Header.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblStation2Header.Location = new System.Drawing.Point(12, 339);
     this.lblStation2Header.Name = "lblStation2Header";
     this.lblStation2Header.Size = new System.Drawing.Size(75, 17);
     this.lblStation2Header.TabIndex = 273;
     this.lblStation2Header.Text = "Station 2";
     //
     // groupBox11
     //
     this.groupBox11.Location = new System.Drawing.Point(80, 346);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(235, 2);
     this.groupBox11.TabIndex = 272;
     this.groupBox11.TabStop = false;
     //
     // txtMintSt2
     //
     this.txtMintSt2.Location = new System.Drawing.Point(120, 412);
     this.txtMintSt2.MaxLength = 255;
     this.txtMintSt2.Name = "txtMintSt2";
     this.txtMintSt2.Size = new System.Drawing.Size(72, 21);
     this.txtMintSt2.TabIndex = 243;
     this.txtMintSt2.Tag = "N";
     this.txtMintSt2.Text = "0";
     this.txtMintSt2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtMintSt2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMintSt1_KeyPress);
     //
     // txtClosestLine2
     //
     this.txtClosestLine2.Location = new System.Drawing.Point(120, 388);
     this.txtClosestLine2.MaxLength = 255;
     this.txtClosestLine2.Name = "txtClosestLine2";
     this.txtClosestLine2.Size = new System.Drawing.Size(192, 21);
     this.txtClosestLine2.TabIndex = 242;
     //
     // label60
     //
     this.label60.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label60.Location = new System.Drawing.Point(12, 414);
     this.label60.Name = "label60";
     this.label60.Size = new System.Drawing.Size(107, 17);
     this.label60.TabIndex = 271;
     this.label60.Text = "Minutes to Station";
     //
     // label61
     //
     this.label61.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label61.Location = new System.Drawing.Point(12, 390);
     this.label61.Name = "label61";
     this.label61.Size = new System.Drawing.Size(100, 17);
     this.label61.TabIndex = 270;
     this.label61.Text = "Closest Line";
     //
     // txtClosestSt2
     //
     this.txtClosestSt2.Location = new System.Drawing.Point(120, 364);
     this.txtClosestSt2.MaxLength = 255;
     this.txtClosestSt2.Name = "txtClosestSt2";
     this.txtClosestSt2.Size = new System.Drawing.Size(192, 21);
     this.txtClosestSt2.TabIndex = 241;
     //
     // label62
     //
     this.label62.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label62.Location = new System.Drawing.Point(12, 366);
     this.label62.Name = "label62";
     this.label62.Size = new System.Drawing.Size(107, 17);
     this.label62.TabIndex = 269;
     this.label62.Text = "Closest Station";
     //
     // lblStation1Header
     //
     this.lblStation1Header.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblStation1Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblStation1Header.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblStation1Header.Location = new System.Drawing.Point(8, 244);
     this.lblStation1Header.Name = "lblStation1Header";
     this.lblStation1Header.Size = new System.Drawing.Size(79, 17);
     this.lblStation1Header.TabIndex = 268;
     this.lblStation1Header.Text = "Station 1";
     //
     // groupBox10
     //
     this.groupBox10.Location = new System.Drawing.Point(79, 252);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(235, 2);
     this.groupBox10.TabIndex = 267;
     this.groupBox10.TabStop = false;
     //
     // txtMintSt1
     //
     this.txtMintSt1.Location = new System.Drawing.Point(120, 308);
     this.txtMintSt1.MaxLength = 255;
     this.txtMintSt1.Name = "txtMintSt1";
     this.txtMintSt1.Size = new System.Drawing.Size(72, 21);
     this.txtMintSt1.TabIndex = 240;
     this.txtMintSt1.Tag = "N";
     this.txtMintSt1.Text = "0";
     this.txtMintSt1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtMintSt1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMintSt1_KeyPress);
     //
     // txtClosestLine1
     //
     this.txtClosestLine1.Location = new System.Drawing.Point(120, 284);
     this.txtClosestLine1.MaxLength = 255;
     this.txtClosestLine1.Name = "txtClosestLine1";
     this.txtClosestLine1.Size = new System.Drawing.Size(192, 21);
     this.txtClosestLine1.TabIndex = 239;
     //
     // label55
     //
     this.label55.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label55.Location = new System.Drawing.Point(12, 310);
     this.label55.Name = "label55";
     this.label55.Size = new System.Drawing.Size(107, 17);
     this.label55.TabIndex = 266;
     this.label55.Text = "Minutes to Station";
     //
     // label56
     //
     this.label56.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label56.Location = new System.Drawing.Point(12, 286);
     this.label56.Name = "label56";
     this.label56.Size = new System.Drawing.Size(100, 17);
     this.label56.TabIndex = 265;
     this.label56.Text = "Closest Line";
     //
     // txtClosestSt1
     //
     this.txtClosestSt1.Location = new System.Drawing.Point(120, 260);
     this.txtClosestSt1.MaxLength = 255;
     this.txtClosestSt1.Name = "txtClosestSt1";
     this.txtClosestSt1.Size = new System.Drawing.Size(192, 21);
     this.txtClosestSt1.TabIndex = 238;
     //
     // label57
     //
     this.label57.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label57.Location = new System.Drawing.Point(12, 262);
     this.label57.Name = "label57";
     this.label57.Size = new System.Drawing.Size(107, 17);
     this.label57.TabIndex = 264;
     this.label57.Text = "Closest Station";
     //
     // label28
     //
     this.label28.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label28.Location = new System.Drawing.Point(195, 164);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(52, 29);
     this.label28.TabIndex = 263;
     this.label28.Text = "Postal\r\nCode";
     this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // label29
     //
     this.label29.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label29.Location = new System.Drawing.Point(12, 220);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(100, 17);
     this.label29.TabIndex = 262;
     this.label29.Text = "Block";
     //
     // cmbBlock
     //
     this.cmbBlock.Items.AddRange(new object[] {
     "A",
     "B",
     "C",
     "D",
     "E",
     "F",
     "G",
     "H"});
     this.cmbBlock.Location = new System.Drawing.Point(120, 218);
     this.cmbBlock.Name = "cmbBlock";
     this.cmbBlock.Size = new System.Drawing.Size(72, 21);
     this.cmbBlock.TabIndex = 237;
     //
     // txtCountry
     //
     this.txtCountry.Location = new System.Drawing.Point(120, 194);
     this.txtCountry.MaxLength = 255;
     this.txtCountry.Name = "txtCountry";
     this.txtCountry.Size = new System.Drawing.Size(192, 21);
     this.txtCountry.TabIndex = 236;
     //
     // label27
     //
     this.label27.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label27.Location = new System.Drawing.Point(12, 196);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(100, 17);
     this.label27.TabIndex = 261;
     this.label27.Text = "Country";
     //
     // txtPost
     //
     this.txtPost.Location = new System.Drawing.Point(253, 167);
     this.txtPost.MaxLength = 255;
     this.txtPost.Name = "txtPost";
     this.txtPost.Size = new System.Drawing.Size(59, 21);
     this.txtPost.TabIndex = 235;
     //
     // txtState
     //
     this.txtState.Location = new System.Drawing.Point(120, 167);
     this.txtState.MaxLength = 255;
     this.txtState.Name = "txtState";
     this.txtState.Size = new System.Drawing.Size(72, 21);
     this.txtState.TabIndex = 234;
     //
     // label26
     //
     this.label26.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label26.Location = new System.Drawing.Point(12, 169);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(100, 17);
     this.label26.TabIndex = 260;
     this.label26.Text = "State";
     //
     // txtCity
     //
     this.txtCity.Location = new System.Drawing.Point(120, 140);
     this.txtCity.MaxLength = 255;
     this.txtCity.Name = "txtCity";
     this.txtCity.Size = new System.Drawing.Size(192, 21);
     this.txtCity.TabIndex = 233;
     //
     // label25
     //
     this.label25.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label25.Location = new System.Drawing.Point(12, 142);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(100, 17);
     this.label25.TabIndex = 259;
     this.label25.Text = "City";
     //
     // txtStreet3
     //
     this.txtStreet3.Location = new System.Drawing.Point(120, 116);
     this.txtStreet3.MaxLength = 255;
     this.txtStreet3.Name = "txtStreet3";
     this.txtStreet3.Size = new System.Drawing.Size(192, 21);
     this.txtStreet3.TabIndex = 232;
     //
     // txtStreet2
     //
     this.txtStreet2.Location = new System.Drawing.Point(120, 92);
     this.txtStreet2.MaxLength = 255;
     this.txtStreet2.Name = "txtStreet2";
     this.txtStreet2.Size = new System.Drawing.Size(192, 21);
     this.txtStreet2.TabIndex = 231;
     //
     // txtStreet1
     //
     this.txtStreet1.Location = new System.Drawing.Point(120, 68);
     this.txtStreet1.MaxLength = 255;
     this.txtStreet1.Name = "txtStreet1";
     this.txtStreet1.Size = new System.Drawing.Size(192, 21);
     this.txtStreet1.TabIndex = 230;
     //
     // label24
     //
     this.label24.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.label24.Location = new System.Drawing.Point(12, 70);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(100, 17);
     this.label24.TabIndex = 258;
     this.label24.Text = "Street";
     //
     // lblAddressHeader
     //
     this.lblAddressHeader.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblAddressHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAddressHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.lblAddressHeader.Location = new System.Drawing.Point(12, 47);
     this.lblAddressHeader.Name = "lblAddressHeader";
     this.lblAddressHeader.Size = new System.Drawing.Size(75, 17);
     this.lblAddressHeader.TabIndex = 257;
     this.lblAddressHeader.Text = "Address";
     //
     // groupBox8
     //
     this.groupBox8.Location = new System.Drawing.Point(80, 54);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(235, 2);
     this.groupBox8.TabIndex = 256;
     this.groupBox8.TabStop = false;
     //
     // tbpContact
     //
     this.tbpContact.Controls.Add(this.pnlContact);
     this.tbpContact.Controls.Add(this.pnlBottom);
     this.tbpContact.Controls.Add(this.pnlBody);
     this.tbpContact.Location = new System.Drawing.Point(4, 22);
     this.tbpContact.Name = "tbpContact";
     this.tbpContact.Size = new System.Drawing.Size(640, 484);
     this.tbpContact.TabIndex = 2;
     this.tbpContact.Text = "Contact";
     //
     // pnlContact
     //
     this.pnlContact.Controls.Add(this.grdContact);
     this.pnlContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlContact.Location = new System.Drawing.Point(0, 0);
     this.pnlContact.Name = "pnlContact";
     this.pnlContact.Size = new System.Drawing.Size(640, 436);
     this.pnlContact.TabIndex = 2;
     //
     // grdContact
     //
     this.grdContact.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdContact.ExternalRepository = this.persistentRepository1;
     this.grdContact.Location = new System.Drawing.Point(0, 0);
     this.grdContact.MainView = this.gvwContact;
     this.grdContact.Name = "grdContact";
     this.grdContact.Size = new System.Drawing.Size(640, 436);
     this.grdContact.TabIndex = 27;
     this.grdContact.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwContact});
     this.grdContact.DoubleClick += new System.EventHandler(this.grdContact_DoubleClick);
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // gvwContact
     //
     this.gvwContact.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwContact.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolContactID,
     this.gcolContactType,
     this.gcolType,
     this.gColLastName,
     this.gcolFirstName,
     this.gcolLastNameRomaji,
     this.gcolFirstNameRomaji,
     this.gcolEmail1,
     this.gcolPhone,
     this.gcolMobile,
     this.gcolStatusID,
     this.gcolStatus});
     this.gvwContact.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwContact.GridControl = this.grdContact;
     this.gvwContact.Name = "gvwContact";
     this.gvwContact.OptionsBehavior.Editable = false;
     this.gvwContact.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwContact.OptionsCustomization.AllowFilter = false;
     this.gvwContact.OptionsDetail.EnableDetailToolTip = true;
     this.gvwContact.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwContact.OptionsPrint.UsePrintStyles = true;
     this.gvwContact.OptionsView.ShowDetailButtons = false;
     this.gvwContact.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never;
     this.gvwContact.OptionsView.ShowGroupPanel = false;
     this.gvwContact.OptionsView.ShowHorzLines = false;
     this.gvwContact.OptionsView.ShowIndicator = false;
     this.gvwContact.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolContactType, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gcolContactID
     //
     this.gcolContactID.Caption = "ContactID";
     this.gcolContactID.FieldName = "ContactId";
     this.gcolContactID.Name = "gcolContactID";
     //
     // gcolContactType
     //
     this.gcolContactType.Caption = "Contact Type ID";
     this.gcolContactType.FieldName = "ContactType";
     this.gcolContactType.Name = "gcolContactType";
     this.gcolContactType.Width = 68;
     //
     // gcolType
     //
     this.gcolType.Caption = "Contact Type";
     this.gcolType.FieldName = "Type";
     this.gcolType.Name = "gcolType";
     //
     // gColLastName
     //
     this.gColLastName.Caption = "Last Name";
     this.gColLastName.FieldName = "LastName";
     this.gColLastName.Name = "gColLastName";
     this.gColLastName.Visible = true;
     this.gColLastName.VisibleIndex = 0;
     this.gColLastName.Width = 157;
     //
     // gcolFirstName
     //
     this.gcolFirstName.Caption = "First Name";
     this.gcolFirstName.FieldName = "FirstName";
     this.gcolFirstName.Name = "gcolFirstName";
     this.gcolFirstName.Visible = true;
     this.gcolFirstName.VisibleIndex = 1;
     this.gcolFirstName.Width = 157;
     //
     // gcolLastNameRomaji
     //
     this.gcolLastNameRomaji.Caption = "Last Name Romaji";
     this.gcolLastNameRomaji.FieldName = "LastNameRomaji";
     this.gcolLastNameRomaji.Name = "gcolLastNameRomaji";
     //
     // gcolFirstNameRomaji
     //
     this.gcolFirstNameRomaji.Caption = "First Name Romaji";
     this.gcolFirstNameRomaji.FieldName = "FirstNameRomaji";
     this.gcolFirstNameRomaji.Name = "gcolFirstNameRomaji";
     //
     // gcolEmail1
     //
     this.gcolEmail1.Caption = "EMail";
     this.gcolEmail1.FieldName = "Email1";
     this.gcolEmail1.Name = "gcolEmail1";
     this.gcolEmail1.Visible = true;
     this.gcolEmail1.VisibleIndex = 2;
     this.gcolEmail1.Width = 78;
     //
     // gcolPhone
     //
     this.gcolPhone.Caption = "Phone";
     this.gcolPhone.FieldName = "Phone1";
     this.gcolPhone.Name = "gcolPhone";
     this.gcolPhone.Visible = true;
     this.gcolPhone.VisibleIndex = 3;
     this.gcolPhone.Width = 78;
     //
     // gcolMobile
     //
     this.gcolMobile.Caption = "Mobile";
     this.gcolMobile.DisplayFormat.FormatString = "Mobile";
     this.gcolMobile.FieldName = "PhoneMobile1";
     this.gcolMobile.Name = "gcolMobile";
     this.gcolMobile.Visible = true;
     this.gcolMobile.VisibleIndex = 4;
     this.gcolMobile.Width = 78;
     //
     // gcolStatusID
     //
     this.gcolStatusID.Caption = "Status";
     this.gcolStatusID.FieldName = "ContactStatus";
     this.gcolStatusID.Name = "gcolStatusID";
     this.gcolStatusID.Width = 79;
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "Status";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Visible = true;
     this.gcolStatus.VisibleIndex = 5;
     this.gcolStatus.Width = 80;
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.button1);
     this.pnlBottom.Controls.Add(this.btnDel);
     this.pnlBottom.Controls.Add(this.btnEdit);
     this.pnlBottom.Controls.Add(this.btnAdd);
     this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlBottom.Location = new System.Drawing.Point(0, 436);
     this.pnlBottom.Name = "pnlBottom";
     this.pnlBottom.Size = new System.Drawing.Size(640, 48);
     this.pnlBottom.TabIndex = 1;
     //
     // button1
     //
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.button1.Location = new System.Drawing.Point(279, 13);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 20;
     this.button1.Text = "Print";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnDel
     //
     this.btnDel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnDel.Location = new System.Drawing.Point(178, 13);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(75, 23);
     this.btnDel.TabIndex = 19;
     this.btnDel.Text = "Delete";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnEdit
     //
     this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnEdit.Location = new System.Drawing.Point(98, 13);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 18;
     this.btnEdit.Text = "Edit";
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnAdd.Location = new System.Drawing.Point(16, 13);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 17;
     this.btnAdd.Text = "Add";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // pnlBody
     //
     this.pnlBody.Location = new System.Drawing.Point(0, 142);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(446, 342);
     this.pnlBody.TabIndex = 0;
     this.pnlBody.Visible = false;
     //
     // btnDelete
     //
     this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnDelete.Location = new System.Drawing.Point(563, 525);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 16;
     this.btnDelete.Text = "Delete";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnPrint
     //
     this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnPrint.Location = new System.Drawing.Point(16, 525);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex = 17;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // btnPageSetup
     //
     this.btnPageSetup.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btnPageSetup.Location = new System.Drawing.Point(100, 525);
     this.btnPageSetup.Name = "btnPageSetup";
     this.btnPageSetup.Size = new System.Drawing.Size(75, 23);
     this.btnPageSetup.TabIndex = 18;
     this.btnPageSetup.Text = "Page Setup";
     this.btnPageSetup.Click += new System.EventHandler(this.btnPageSetup_Click);
     //
     // printPreviewDialog1
     //
     this.printPreviewDialog1.AutoScrollMargin = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.AutoScrollMinSize = new System.Drawing.Size(0, 0);
     this.printPreviewDialog1.ClientSize = new System.Drawing.Size(400, 300);
     this.printPreviewDialog1.Document = this.printDocument1;
     this.printPreviewDialog1.Enabled = true;
     this.printPreviewDialog1.Icon = ((System.Drawing.Icon)(resources.GetObject("printPreviewDialog1.Icon")));
     this.printPreviewDialog1.Name = "printPreviewDialog1";
     this.printPreviewDialog1.Visible = false;
     //
     // printDocument1
     //
     this.printDocument1.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printDocument1_PrintPage);
     //
     // frmDepartmentDlg
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(650, 560);
     this.Controls.Add(this.btnPageSetup);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.tbcDepartment);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnSave);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmDepartmentDlg";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Adding Department...";
     this.Load += new System.EventHandler(this.frmDepartmentDlg_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmDepartmentDlg_KeyDown);
     this.tbcDepartment.ResumeLayout(false);
     this.tbpDeptInfo.ResumeLayout(false);
     this.pnlDeptInfo.ResumeLayout(false);
     this.pnlDeptInfo.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.tbpAddress.ResumeLayout(false);
     this.pnlAddress.ResumeLayout(false);
     this.pnlAddress.PerformLayout();
     this.tbpContact.ResumeLayout(false);
     this.pnlContact.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdContact)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwContact)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.printingSystem1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #39
0
ファイル: FormForecastJG.cs プロジェクト: EdgarEDT/myitoppsp
        //�����ݺ�����һ��
        private void AddColumn1(int year)
        {
            // treeList1.Columns.Add(year + "��", typeof(double));
            //    TreeListColumn column = treeList1.Columns.Add();
            //DevExpress.XtraTreeList.Columns.TreeListColumn column = new DevExpress.XtraTreeList.Columns.TreeListColumn();

            dataTable.Columns.Add("m" + year, typeof(double));

            TreeListColumn column = new TreeListColumn();

            column.FieldName = "m" + year;
            column.Tag = year;
            column.Caption = "���������";
            column.Name = year.ToString();
            column.Width = 100;
            column.VisibleIndex = year;//������������
            //column.ColumnEdit = repositoryItemTextEdit1;

            //
            // repositoryItemTextEdit1
            //
            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();
            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "P2";
            repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            repositoryItemTextEdit1.Mask.EditMask = "P2";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;
            //column.DisplayFormat.FormatString = "P2";
            //column.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;

            this.treeList1.Columns.AddRange(new TreeListColumn[] {
            column});
        }
コード例 #40
0
 private void InitializeComponent()
 {
     this.gpgDataGridRooms = new GPGDataGrid();
     this.gvChannels = new GridView();
     this.gcDescription = new GridColumn();
     this.gcPopulation = new GridColumn();
     this.gcMaxPop = new GridColumn();
     this.gcPassword = new GridColumn();
     this.repositoryItemTextEdit1 = new RepositoryItemTextEdit();
     this.gcOwner = new GridColumn();
     this.gcCreated = new GridColumn();
     this.gcIsPublic = new GridColumn();
     this.repositoryItemComboBox1 = new RepositoryItemComboBox();
     this.skinButtonCancel = new SkinButton();
     this.skinButtonOK = new SkinButton();
     this.skinButtonrefresh = new SkinButton();
     this.gpgLabel1 = new GPGLabel();
     this.gpgLabel2 = new GPGLabel();
     this.gpgTextBoxChannel = new GPGTextBox();
     this.gpgGroupBox1 = new GPGGroupBox();
     this.gpgGroupBox2 = new GPGGroupBox();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgDataGridRooms.BeginInit();
     this.gvChannels.BeginInit();
     this.repositoryItemTextEdit1.BeginInit();
     this.repositoryItemComboBox1.BeginInit();
     this.gpgTextBoxChannel.Properties.BeginInit();
     this.gpgGroupBox1.SuspendLayout();
     this.gpgGroupBox2.SuspendLayout();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x25a, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgDataGridRooms.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgDataGridRooms.CustomizeStyle = false;
     this.gpgDataGridRooms.EmbeddedNavigator.Name = "";
     this.gpgDataGridRooms.Location = new Point(3, 0x31);
     this.gpgDataGridRooms.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgDataGridRooms.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgDataGridRooms.MainView = this.gvChannels;
     this.gpgDataGridRooms.Name = "gpgDataGridRooms";
     this.gpgDataGridRooms.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemComboBox1, this.repositoryItemTextEdit1 });
     this.gpgDataGridRooms.ShowOnlyPredefinedDetails = true;
     this.gpgDataGridRooms.Size = new Size(0x278, 0x83);
     this.gpgDataGridRooms.TabIndex = 9;
     this.gpgDataGridRooms.ViewCollection.AddRange(new BaseView[] { this.gvChannels });
     this.gvChannels.Appearance.Empty.BackColor = Color.Black;
     this.gvChannels.Appearance.Empty.Options.UseBackColor = true;
     this.gvChannels.Appearance.EvenRow.BackColor = Color.Black;
     this.gvChannels.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.FocusedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.FocusedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvChannels.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.FocusedRow.Options.UseFont = true;
     this.gvChannels.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvChannels.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvChannels.Appearance.HideSelectionRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.OddRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChannels.Appearance.OddRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.Preview.BackColor = Color.Black;
     this.gvChannels.Appearance.Preview.Options.UseBackColor = true;
     this.gvChannels.Appearance.Row.BackColor = Color.Black;
     this.gvChannels.Appearance.Row.ForeColor = Color.White;
     this.gvChannels.Appearance.Row.Options.UseBackColor = true;
     this.gvChannels.Appearance.RowSeparator.BackColor = Color.Black;
     this.gvChannels.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvChannels.Appearance.SelectedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.SelectedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvChannels.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.SelectedRow.Options.UseFont = true;
     this.gvChannels.AppearancePrint.Row.ForeColor = Color.White;
     this.gvChannels.AppearancePrint.Row.Options.UseForeColor = true;
     this.gvChannels.BestFitMaxRowCount = 1;
     this.gvChannels.BorderStyle = BorderStyles.NoBorder;
     this.gvChannels.ColumnPanelRowHeight = 30;
     this.gvChannels.Columns.AddRange(new GridColumn[] { this.gcDescription, this.gcPopulation, this.gcMaxPop, this.gcPassword, this.gcOwner, this.gcCreated, this.gcIsPublic });
     this.gvChannels.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvChannels.GridControl = this.gpgDataGridRooms;
     this.gvChannels.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvChannels.Name = "gvChannels";
     this.gvChannels.OptionsBehavior.Editable = false;
     this.gvChannels.OptionsCustomization.AllowFilter = false;
     this.gvChannels.OptionsCustomization.AllowGroup = false;
     this.gvChannels.OptionsFilter.AllowFilterEditor = false;
     this.gvChannels.OptionsMenu.EnableColumnMenu = false;
     this.gvChannels.OptionsMenu.EnableFooterMenu = false;
     this.gvChannels.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvChannels.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvChannels.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gvChannels.OptionsSelection.MultiSelect = true;
     this.gvChannels.OptionsView.EnableAppearanceEvenRow = true;
     this.gvChannels.OptionsView.EnableAppearanceOddRow = true;
     this.gvChannels.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvChannels.OptionsView.ShowGroupPanel = false;
     this.gvChannels.OptionsView.ShowHorzLines = false;
     this.gvChannels.OptionsView.ShowIndicator = false;
     this.gvChannels.OptionsView.ShowVertLines = false;
     this.gvChannels.CustomColumnDisplayText += new CustomColumnDisplayTextEventHandler(this.gvChannels_CustomColumnDisplayText);
     this.gcDescription.AppearanceCell.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcDescription.AppearanceCell.ForeColor = Color.White;
     this.gcDescription.AppearanceCell.Options.UseFont = true;
     this.gcDescription.AppearanceCell.Options.UseForeColor = true;
     this.gcDescription.AppearanceCell.Options.UseTextOptions = true;
     this.gcDescription.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcDescription.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcDescription.AppearanceHeader.Options.UseFont = true;
     this.gcDescription.Caption = "<LOC>Channel name";
     this.gcDescription.FieldName = "Description";
     this.gcDescription.Name = "gcDescription";
     this.gcDescription.OptionsColumn.AllowEdit = false;
     this.gcDescription.Visible = true;
     this.gcDescription.VisibleIndex = 0;
     this.gcDescription.Width = 0x8e;
     this.gcPopulation.AppearanceCell.ForeColor = Color.White;
     this.gcPopulation.AppearanceCell.Options.UseForeColor = true;
     this.gcPopulation.AppearanceCell.Options.UseTextOptions = true;
     this.gcPopulation.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcPopulation.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcPopulation.AppearanceHeader.Options.UseFont = true;
     this.gcPopulation.Caption = "<LOC>Players";
     this.gcPopulation.FieldName = "Population";
     this.gcPopulation.Name = "gcPopulation";
     this.gcPopulation.OptionsColumn.AllowEdit = false;
     this.gcPopulation.Visible = true;
     this.gcPopulation.VisibleIndex = 1;
     this.gcPopulation.Width = 0x40;
     this.gcMaxPop.AppearanceCell.ForeColor = Color.White;
     this.gcMaxPop.AppearanceCell.Options.UseForeColor = true;
     this.gcMaxPop.AppearanceCell.Options.UseTextOptions = true;
     this.gcMaxPop.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcMaxPop.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcMaxPop.AppearanceHeader.Options.UseFont = true;
     this.gcMaxPop.Caption = "<LOC>Max players";
     this.gcMaxPop.FieldName = "MaxPopulation";
     this.gcMaxPop.Name = "gcMaxPop";
     this.gcMaxPop.OptionsColumn.AllowEdit = false;
     this.gcMaxPop.Visible = true;
     this.gcMaxPop.VisibleIndex = 2;
     this.gcMaxPop.Width = 0x58;
     this.gcPassword.Caption = "<LOC>Password required";
     this.gcPassword.ColumnEdit = this.repositoryItemTextEdit1;
     this.gcPassword.FieldName = "PasswordProtected";
     this.gcPassword.GroupFormat.FormatString = "{0}";
     this.gcPassword.GroupFormat.FormatType = FormatType.Custom;
     this.gcPassword.Name = "gcPassword";
     this.gcPassword.OptionsColumn.AllowEdit = false;
     this.gcPassword.Visible = true;
     this.gcPassword.VisibleIndex = 3;
     this.gcPassword.Width = 0x8a;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.gcOwner.AppearanceCell.ForeColor = Color.White;
     this.gcOwner.AppearanceCell.Options.UseForeColor = true;
     this.gcOwner.AppearanceCell.Options.UseTextOptions = true;
     this.gcOwner.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcOwner.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcOwner.AppearanceHeader.Options.UseFont = true;
     this.gcOwner.Caption = "<LOC>Channel operator";
     this.gcOwner.FieldName = "Owner";
     this.gcOwner.Name = "gcOwner";
     this.gcOwner.OptionsColumn.AllowEdit = false;
     this.gcOwner.Visible = true;
     this.gcOwner.VisibleIndex = 4;
     this.gcOwner.Width = 0x79;
     this.gcCreated.AppearanceCell.ForeColor = Color.White;
     this.gcCreated.AppearanceCell.Options.UseForeColor = true;
     this.gcCreated.AppearanceCell.Options.UseTextOptions = true;
     this.gcCreated.AppearanceCell.TextOptions.HAlignment = HorzAlignment.Near;
     this.gcCreated.AppearanceHeader.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gcCreated.AppearanceHeader.Options.UseFont = true;
     this.gcCreated.Caption = "<LOC>Created";
     this.gcCreated.FieldName = "Created";
     this.gcCreated.Name = "gcCreated";
     this.gcCreated.OptionsColumn.AllowEdit = false;
     this.gcCreated.Visible = true;
     this.gcCreated.VisibleIndex = 5;
     this.gcCreated.Width = 0x4f;
     this.gcIsPublic.Caption = "IsPublic";
     this.gcIsPublic.FieldName = "IsPublic";
     this.gcIsPublic.Name = "gcIsPublic";
     this.gcIsPublic.OptionsColumn.ShowInCustomizationForm = false;
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     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(0x22b, 0x162);
     this.skinButtonCancel.Name = "skinButtonCancel";
     this.skinButtonCancel.Size = new Size(0x5e, 0x1a);
     this.skinButtonCancel.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonCancel, null);
     this.skinButtonCancel.TabIndex = 10;
     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.skinButtonOK.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonOK.AutoStyle = true;
     this.skinButtonOK.BackColor = Color.Black;
     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(0x1c7, 0x162);
     this.skinButtonOK.Name = "skinButtonOK";
     this.skinButtonOK.Size = new Size(0x5e, 0x1a);
     this.skinButtonOK.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonOK, null);
     this.skinButtonOK.TabIndex = 11;
     this.skinButtonOK.TabStop = true;
     this.skinButtonOK.Text = "<LOC>Join";
     this.skinButtonOK.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonOK.TextPadding = new Padding(0);
     this.skinButtonOK.Click += new EventHandler(this.skinButtonOK_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(0x163, 0x162);
     this.skinButtonrefresh.Name = "skinButtonrefresh";
     this.skinButtonrefresh.Size = new Size(0x5e, 0x1a);
     this.skinButtonrefresh.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonrefresh, null);
     this.skinButtonrefresh.TabIndex = 12;
     this.skinButtonrefresh.TabStop = true;
     this.skinButtonrefresh.Text = "<LOC>Refresh";
     this.skinButtonrefresh.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonrefresh.TextPadding = new Padding(0);
     this.skinButtonrefresh.Click += new EventHandler(this.skinButtonrefresh_Click);
     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(6, 30);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(0xcf, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 13;
     this.gpgLabel1.Text = "<LOC>Select an available channel";
     this.gpgLabel1.TextStyle = TextStyles.Default;
     this.gpgLabel2.AutoGrowDirection = GrowDirections.None;
     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(3, 30);
     this.gpgLabel2.Name = "gpgLabel2";
     this.gpgLabel2.Size = new Size(0x16c, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel2, null);
     this.gpgLabel2.TabIndex = 14;
     this.gpgLabel2.Text = "<LOC>Enter a private channel name, or create a new channel";
     this.gpgLabel2.TextStyle = TextStyles.Default;
     this.gpgTextBoxChannel.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgTextBoxChannel.Location = new Point(6, 50);
     this.gpgTextBoxChannel.Name = "gpgTextBoxChannel";
     this.gpgTextBoxChannel.Properties.Appearance.BackColor = Color.Black;
     this.gpgTextBoxChannel.Properties.Appearance.BorderColor = Color.FromArgb(0x52, 0x83, 190);
     this.gpgTextBoxChannel.Properties.Appearance.ForeColor = Color.White;
     this.gpgTextBoxChannel.Properties.Appearance.Options.UseBackColor = true;
     this.gpgTextBoxChannel.Properties.Appearance.Options.UseBorderColor = true;
     this.gpgTextBoxChannel.Properties.Appearance.Options.UseForeColor = true;
     this.gpgTextBoxChannel.Properties.AppearanceFocused.BackColor = Color.FromArgb(0x10, 0x21, 0x4f);
     this.gpgTextBoxChannel.Properties.AppearanceFocused.BackColor2 = Color.FromArgb(0, 0, 0);
     this.gpgTextBoxChannel.Properties.AppearanceFocused.BorderColor = Color.FromArgb(0xbb, 0xc9, 0xe2);
     this.gpgTextBoxChannel.Properties.AppearanceFocused.GradientMode = LinearGradientMode.ForwardDiagonal;
     this.gpgTextBoxChannel.Properties.AppearanceFocused.Options.UseBackColor = true;
     this.gpgTextBoxChannel.Properties.AppearanceFocused.Options.UseBorderColor = true;
     this.gpgTextBoxChannel.Properties.BorderStyle = BorderStyles.Simple;
     this.gpgTextBoxChannel.Properties.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgTextBoxChannel.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgTextBoxChannel.Properties.MaxLength = 60;
     this.gpgTextBoxChannel.Size = new Size(0x271, 20);
     this.gpgTextBoxChannel.TabIndex = 15;
     this.gpgGroupBox1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom;
     this.gpgGroupBox1.Controls.Add(this.gpgLabel2);
     this.gpgGroupBox1.Controls.Add(this.gpgTextBoxChannel);
     this.gpgGroupBox1.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.gpgGroupBox1.Location = new Point(12, 0x109);
     this.gpgGroupBox1.Name = "gpgGroupBox1";
     this.gpgGroupBox1.Size = new Size(0x27d, 0x4c);
     base.ttDefault.SetSuperTip(this.gpgGroupBox1, null);
     this.gpgGroupBox1.TabIndex = 0x10;
     this.gpgGroupBox1.TabStop = false;
     this.gpgGroupBox1.Text = "<LOC>Private Channel";
     this.gpgGroupBox2.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgGroupBox2.Controls.Add(this.gpgLabel1);
     this.gpgGroupBox2.Controls.Add(this.gpgDataGridRooms);
     this.gpgGroupBox2.Font = new Font("Verdana", 8f, FontStyle.Bold);
     this.gpgGroupBox2.Location = new Point(12, 0x4c);
     this.gpgGroupBox2.Name = "gpgGroupBox2";
     this.gpgGroupBox2.Size = new Size(0x27e, 0xb7);
     base.ttDefault.SetSuperTip(this.gpgGroupBox2, null);
     this.gpgGroupBox2.TabIndex = 0x11;
     this.gpgGroupBox2.TabStop = false;
     this.gpgGroupBox2.Text = "<LOC>Public Channel";
     base.AcceptButton = this.skinButtonOK;
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.CancelButton = this.skinButtonCancel;
     base.ClientSize = new Size(0x295, 0x1bb);
     base.Controls.Add(this.gpgGroupBox2);
     base.Controls.Add(this.gpgGroupBox1);
     base.Controls.Add(this.skinButtonrefresh);
     base.Controls.Add(this.skinButtonOK);
     base.Controls.Add(this.skinButtonCancel);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     this.MinimumSize = new Size(320, 0x178);
     base.Name = "DlgSelectChannel";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "<LOC>Select Channel";
     base.Controls.SetChildIndex(this.skinButtonCancel, 0);
     base.Controls.SetChildIndex(this.skinButtonOK, 0);
     base.Controls.SetChildIndex(this.skinButtonrefresh, 0);
     base.Controls.SetChildIndex(this.gpgGroupBox1, 0);
     base.Controls.SetChildIndex(this.gpgGroupBox2, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgDataGridRooms.EndInit();
     this.gvChannels.EndInit();
     this.repositoryItemTextEdit1.EndInit();
     this.repositoryItemComboBox1.EndInit();
     this.gpgTextBoxChannel.Properties.EndInit();
     this.gpgGroupBox1.ResumeLayout(false);
     this.gpgGroupBox1.PerformLayout();
     this.gpgGroupBox2.ResumeLayout(false);
     this.gpgGroupBox2.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
コード例 #41
0
		private void InitializeComponent()
		{
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup1 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup2 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            DevExpress.XtraBars.Ribbon.GalleryItemGroup galleryItemGroup3 = new DevExpress.XtraBars.Ribbon.GalleryItemGroup();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.ribbonControl1 = new DevExpress.XtraBars.Ribbon.RibbonControl();
            this.btnNewTerminal = new DevExpress.XtraBars.BarButtonItem();
            this.btnNewTerminal2 = new DevExpress.XtraBars.BarButtonItem();
            this.btnNewTerminal3 = new DevExpress.XtraBars.BarButtonItem();
            this.btnStart = new DevExpress.XtraBars.BarButtonItem();
            this.btnStop = new DevExpress.XtraBars.BarButtonItem();
            this.btnClear = new DevExpress.XtraBars.BarButtonItem();
            this.txtUsername = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.txtPassword = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
            this.btnLogin = new DevExpress.XtraBars.BarButtonItem();
            this.btnChangePassword = new DevExpress.XtraBars.BarButtonItem();
            this.btnLogout = new DevExpress.XtraBars.BarButtonItem();
            this.lblSystemTime = new DevExpress.XtraBars.BarStaticItem();
            this.lblTotalTransaction = new DevExpress.XtraBars.BarStaticItem();
            this.lblTotalTerminal = new DevExpress.XtraBars.BarStaticItem();
            this.barEditItem1 = new DevExpress.XtraBars.BarEditItem();
            this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
            this.ribbonGalleryBarItem1 = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.barButtonGroup1 = new DevExpress.XtraBars.BarButtonGroup();
            this.barButtonGroup2 = new DevExpress.XtraBars.BarButtonGroup();
            this.skinGalleryBarItem = new DevExpress.XtraBars.RibbonGalleryBarItem();
            this.ribbonPage1 = new DevExpress.XtraBars.Ribbon.RibbonPage();
            this.ribbonPageGroup3 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup1 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup2 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonPageGroup5 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            this.ribbonStatusBar1 = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
            this.grdTransaction = new DevExpress.XtraGrid.GridControl();
            this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
            this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
            this.btnStatement = new DevExpress.XtraEditors.SimpleButton();
            this.btnBetList = new DevExpress.XtraEditors.SimpleButton();
            this.cbeSignatureTemplate = new DevExpress.XtraEditors.ComboBoxEdit();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            this.webBrowser2 = new System.Windows.Forms.WebBrowser();
            this.splitter1 = new System.Windows.Forms.Splitter();
            this.webBrowser1 = new System.Windows.Forms.WebBrowser();
            this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
            this.textEdit4 = new DevExpress.XtraEditors.MemoEdit();
            this.chkSCloud = new DevExpress.XtraEditors.CheckEdit();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            this.textEdit3 = new DevExpress.XtraEditors.TextEdit();
            this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
            this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.chkRCloud = new DevExpress.XtraEditors.CheckEdit();
            this.btnSignMeIn = new DevExpress.XtraEditors.SimpleButton();
            this.txtServerIP = new DevExpress.XtraEditors.TextEdit();
            this.txtServerUserName = new DevExpress.XtraEditors.TextEdit();
            this.txtServerPassword = new DevExpress.XtraEditors.TextEdit();
            this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
            this.xtraTabControl2 = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
            this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
            this.ribbonPageGroup4 = new DevExpress.XtraBars.Ribbon.RibbonPageGroup();
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
            this.xtraTabControl1.SuspendLayout();
            this.xtraTabPage1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
            this.xtraTabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.panelControl1.SuspendLayout();
            this.xtraTabPage5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
            this.panelControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkSCloud.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkRCloud.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerIP.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerUserName.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerPassword.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).BeginInit();
            this.xtraTabControl2.SuspendLayout();
            this.SuspendLayout();
            // 
            // ribbonControl1
            // 
            this.ribbonControl1.ApplicationButtonText = null;
            // 
            // 
            // 
            this.ribbonControl1.ExpandCollapseItem.Id = 0;
            this.ribbonControl1.ExpandCollapseItem.Name = "";
            this.ribbonControl1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.ribbonControl1.ExpandCollapseItem,
            this.btnNewTerminal,
            this.btnNewTerminal2,
            this.btnNewTerminal3,
            this.btnStart,
            this.btnStop,
            this.btnClear,
            this.txtUsername,
            this.txtPassword,
            this.btnLogin,
            this.btnChangePassword,
            this.btnLogout,
            this.lblSystemTime,
            this.lblTotalTransaction,
            this.lblTotalTerminal,
            this.barEditItem1,
            this.ribbonGalleryBarItem1,
            this.barButtonGroup1,
            this.barButtonGroup2,
            this.skinGalleryBarItem});
            this.ribbonControl1.Location = new System.Drawing.Point(0, 0);
            this.ribbonControl1.MaxItemId = 22;
            this.ribbonControl1.Name = "ribbonControl1";
            this.ribbonControl1.Pages.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPage[] {
            this.ribbonPage1});
            this.ribbonControl1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
            this.repositoryItemTextEdit1,
            this.repositoryItemTextEdit2,
            this.repositoryItemPopupContainerEdit1});
            this.ribbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010;
            this.ribbonControl1.SelectedPage = this.ribbonPage1;
            this.ribbonControl1.ShowExpandCollapseButton = DevExpress.Utils.DefaultBoolean.False;
            this.ribbonControl1.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Hide;
            this.ribbonControl1.ShowToolbarCustomizeItem = false;
            this.ribbonControl1.Size = new System.Drawing.Size(1056, 125);
            this.ribbonControl1.StatusBar = this.ribbonStatusBar1;
            this.ribbonControl1.Toolbar.ShowCustomizeItem = false;
            // 
            // btnNewTerminal
            // 
            this.btnNewTerminal.Caption = "ibet-3in1";
            this.btnNewTerminal.Enabled = false;
            this.btnNewTerminal.Id = 1;
            this.btnNewTerminal.LargeGlyph = global::iBet.App.Properties.Resources.i4;
            this.btnNewTerminal.Name = "btnNewTerminal";
            this.btnNewTerminal.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal_ItemClick);
            // 
            // btnNewTerminal2
            // 
            this.btnNewTerminal2.Caption = "ibet-sbo";
            this.btnNewTerminal2.Enabled = false;
            this.btnNewTerminal2.Id = 13;
            this.btnNewTerminal2.LargeGlyph = global::iBet.App.Properties.Resources.i9;
            this.btnNewTerminal2.Name = "btnNewTerminal2";
            this.btnNewTerminal2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal2_ItemClick);
            // 
            // btnNewTerminal3
            // 
            this.btnNewTerminal3.Caption = "Follow Sub";
            this.btnNewTerminal3.Enabled = false;
            this.btnNewTerminal3.Id = 14;
            this.btnNewTerminal3.LargeGlyph = global::iBet.App.Properties.Resources.i10;
            this.btnNewTerminal3.Name = "btnNewTerminal3";
            this.btnNewTerminal3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnNewTerminal3_ItemClick);
            // 
            // btnStart
            // 
            this.btnStart.Caption = "Start";
            this.btnStart.Enabled = false;
            this.btnStart.Id = 2;
            this.btnStart.LargeGlyph = global::iBet.App.Properties.Resources.i5;
            this.btnStart.Name = "btnStart";
            this.btnStart.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStart_ItemClick);
            // 
            // btnStop
            // 
            this.btnStop.Caption = "Stop";
            this.btnStop.Enabled = false;
            this.btnStop.Id = 3;
            this.btnStop.LargeGlyph = global::iBet.App.Properties.Resources.i6;
            this.btnStop.Name = "btnStop";
            this.btnStop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnStop_ItemClick);
            // 
            // btnClear
            // 
            this.btnClear.Caption = "Clear";
            this.btnClear.Enabled = false;
            this.btnClear.Glyph = global::iBet.App.Properties.Resources.i7;
            this.btnClear.Id = 4;
            this.btnClear.LargeGlyph = global::iBet.App.Properties.Resources.i7;
            this.btnClear.Name = "btnClear";
            this.btnClear.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnClear_ItemClick);
            // 
            // txtUsername
            // 
            this.txtUsername.Caption = "Username";
            this.txtUsername.Edit = this.repositoryItemTextEdit1;
            this.txtUsername.Id = 5;
            this.txtUsername.Name = "txtUsername";
            this.txtUsername.Width = 150;
            // 
            // repositoryItemTextEdit1
            // 
            this.repositoryItemTextEdit1.AutoHeight = false;
            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
            // 
            // txtPassword
            // 
            this.txtPassword.Caption = "Password ";
            this.txtPassword.Edit = this.repositoryItemTextEdit2;
            this.txtPassword.Id = 6;
            this.txtPassword.Name = "txtPassword";
            this.txtPassword.Width = 150;
            // 
            // repositoryItemTextEdit2
            // 
            this.repositoryItemTextEdit2.AutoHeight = false;
            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
            this.repositoryItemTextEdit2.PasswordChar = '*';
            // 
            // btnLogin
            // 
            this.btnLogin.Caption = "Login";
            this.btnLogin.Id = 7;
            this.btnLogin.LargeGlyph = global::iBet.App.Properties.Resources.i1;
            this.btnLogin.Name = "btnLogin";
            this.btnLogin.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLogin_ItemClick);
            // 
            // btnChangePassword
            // 
            this.btnChangePassword.Caption = "Change Password";
            this.btnChangePassword.Enabled = false;
            this.btnChangePassword.Id = 8;
            this.btnChangePassword.LargeGlyph = global::iBet.App.Properties.Resources.i3;
            this.btnChangePassword.Name = "btnChangePassword";
            this.btnChangePassword.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnChangePassword_ItemClick);
            // 
            // btnLogout
            // 
            this.btnLogout.Caption = "Logout";
            this.btnLogout.Enabled = false;
            this.btnLogout.Id = 9;
            this.btnLogout.LargeGlyph = global::iBet.App.Properties.Resources.i2;
            this.btnLogout.Name = "btnLogout";
            this.btnLogout.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.btnLogout_ItemClick);
            // 
            // lblSystemTime
            // 
            this.lblSystemTime.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
            this.lblSystemTime.Id = 10;
            this.lblSystemTime.Name = "lblSystemTime";
            this.lblSystemTime.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblTotalTransaction
            // 
            this.lblTotalTransaction.Caption = "Total transaction(s): 0";
            this.lblTotalTransaction.Id = 11;
            this.lblTotalTransaction.Name = "lblTotalTransaction";
            this.lblTotalTransaction.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // lblTotalTerminal
            // 
            this.lblTotalTerminal.Caption = "Total Terminal(s): 0";
            this.lblTotalTerminal.Id = 12;
            this.lblTotalTerminal.Name = "lblTotalTerminal";
            this.lblTotalTerminal.TextAlignment = System.Drawing.StringAlignment.Near;
            // 
            // barEditItem1
            // 
            this.barEditItem1.Caption = "barEditItem1";
            this.barEditItem1.Edit = this.repositoryItemPopupContainerEdit1;
            this.barEditItem1.Id = 15;
            this.barEditItem1.Name = "barEditItem1";
            // 
            // repositoryItemPopupContainerEdit1
            // 
            this.repositoryItemPopupContainerEdit1.AutoHeight = false;
            this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
            // 
            // ribbonGalleryBarItem1
            // 
            this.ribbonGalleryBarItem1.Caption = "ribbonGalleryBarItem1";
            this.ribbonGalleryBarItem1.Id = 17;
            this.ribbonGalleryBarItem1.Name = "ribbonGalleryBarItem1";
            // 
            // barButtonGroup1
            // 
            this.barButtonGroup1.Caption = "barButtonGroup1";
            this.barButtonGroup1.Id = 18;
            this.barButtonGroup1.Name = "barButtonGroup1";
            // 
            // barButtonGroup2
            // 
            this.barButtonGroup2.Caption = "barButtonGroup2";
            this.barButtonGroup2.Id = 19;
            this.barButtonGroup2.Name = "barButtonGroup2";
            // 
            // skinGalleryBarItem
            // 
            this.skinGalleryBarItem.Caption = "skinGalleryBarItem";
            // 
            // skinGalleryBarItem
            // 
            this.skinGalleryBarItem.Gallery.AllowHoverImages = true;
            this.skinGalleryBarItem.Gallery.FixedHoverImageSize = false;
            galleryItemGroup1.Caption = "Standard";
            galleryItemGroup2.Caption = "Bonus";
            galleryItemGroup2.Visible = false;
            galleryItemGroup3.Caption = "Office";
            galleryItemGroup3.Visible = false;
            this.skinGalleryBarItem.Gallery.Groups.AddRange(new DevExpress.XtraBars.Ribbon.GalleryItemGroup[] {
            galleryItemGroup1,
            galleryItemGroup2,
            galleryItemGroup3});
            this.skinGalleryBarItem.Gallery.ImageSize = new System.Drawing.Size(58, 43);
            this.skinGalleryBarItem.Gallery.ItemCheckMode = DevExpress.XtraBars.Ribbon.Gallery.ItemCheckMode.SingleRadio;
            this.skinGalleryBarItem.Id = 1;
            this.skinGalleryBarItem.Name = "skinGalleryBarItem";
            // 
            // ribbonPage1
            // 
            this.ribbonPage1.Groups.AddRange(new DevExpress.XtraBars.Ribbon.RibbonPageGroup[] {
            this.ribbonPageGroup3,
            this.ribbonPageGroup1,
            this.ribbonPageGroup2,
            this.ribbonPageGroup5});
            this.ribbonPage1.Name = "ribbonPage1";
            this.ribbonPage1.Text = "Terminal";
            // 
            // ribbonPageGroup3
            // 
            this.ribbonPageGroup3.ItemLinks.Add(this.txtUsername);
            this.ribbonPageGroup3.ItemLinks.Add(this.txtPassword);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnLogin);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnChangePassword);
            this.ribbonPageGroup3.ItemLinks.Add(this.btnLogout);
            this.ribbonPageGroup3.Name = "ribbonPageGroup3";
            this.ribbonPageGroup3.ShowCaptionButton = false;
            this.ribbonPageGroup3.Text = "Authentication";
            // 
            // ribbonPageGroup1
            // 
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal2);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnNewTerminal3);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnStart);
            this.ribbonPageGroup1.ItemLinks.Add(this.btnStop);
            this.ribbonPageGroup1.Name = "ribbonPageGroup1";
            this.ribbonPageGroup1.ShowCaptionButton = false;
            this.ribbonPageGroup1.Text = "Terminal";
            // 
            // ribbonPageGroup2
            // 
            this.ribbonPageGroup2.ItemLinks.Add(this.btnClear);
            this.ribbonPageGroup2.Name = "ribbonPageGroup2";
            this.ribbonPageGroup2.ShowCaptionButton = false;
            this.ribbonPageGroup2.Text = "Tracking";
            // 
            // ribbonPageGroup5
            // 
            this.ribbonPageGroup5.ItemLinks.Add(this.skinGalleryBarItem);
            this.ribbonPageGroup5.Name = "ribbonPageGroup5";
            this.ribbonPageGroup5.Text = "Skins";
            // 
            // ribbonStatusBar1
            // 
            this.ribbonStatusBar1.ItemLinks.Add(this.lblSystemTime);
            this.ribbonStatusBar1.ItemLinks.Add(this.lblTotalTerminal);
            this.ribbonStatusBar1.ItemLinks.Add(this.lblTotalTransaction);
            this.ribbonStatusBar1.Location = new System.Drawing.Point(0, 617);
            this.ribbonStatusBar1.Name = "ribbonStatusBar1";
            this.ribbonStatusBar1.Ribbon = this.ribbonControl1;
            this.ribbonStatusBar1.Size = new System.Drawing.Size(1056, 31);
            // 
            // splitContainerControl1
            // 
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 125);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.xtraTabControl1);
            this.splitContainerControl1.Panel1.Text = "Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl2);
            this.splitContainerControl1.Panel2.Text = "Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1056, 492);
            this.splitContainerControl1.SplitterPosition = 44;
            this.splitContainerControl1.TabIndex = 1;
            this.splitContainerControl1.Text = "splitContainerControl1";
            // 
            // xtraTabControl1
            // 
            this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl1.Name = "xtraTabControl1";
            this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
            this.xtraTabControl1.Size = new System.Drawing.Size(1056, 443);
            this.xtraTabControl1.TabIndex = 0;
            this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage1,
            this.xtraTabPage3,
            this.xtraTabPage5});
            // 
            // xtraTabPage1
            // 
            this.xtraTabPage1.Controls.Add(this.grdTransaction);
            this.xtraTabPage1.Controls.Add(this.panelControl3);
            this.xtraTabPage1.Controls.Add(this.panelControl4);
            this.xtraTabPage1.Name = "xtraTabPage1";
            this.xtraTabPage1.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage1.Text = "Transactions";
            // 
            // grdTransaction
            // 
            this.grdTransaction.Dock = System.Windows.Forms.DockStyle.Fill;
            this.grdTransaction.EmbeddedNavigator.ShowToolTips = false;
            this.grdTransaction.Location = new System.Drawing.Point(0, 0);
            this.grdTransaction.MainView = this.gridView2;
            this.grdTransaction.Name = "grdTransaction";
            this.grdTransaction.Size = new System.Drawing.Size(1050, 417);
            this.grdTransaction.TabIndex = 7;
            this.grdTransaction.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridView2});
            // 
            // gridView2
            // 
            this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.gridColumn1,
            this.gridColumn8,
            this.gridColumn2,
            this.gridColumn3,
            this.gridColumn6,
            this.gridColumn4,
            this.gridColumn5,
            this.gridColumn7,
            this.gridColumn10,
            this.gridColumn11,
            this.gridColumn12,
            this.gridColumn9,
            this.gridColumn14,
            this.gridColumn15,
            this.gridColumn13});
            this.gridView2.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
            this.gridView2.GridControl = this.grdTransaction;
            this.gridView2.Name = "gridView2";
            this.gridView2.OptionsBehavior.Editable = false;
            this.gridView2.OptionsCustomization.AllowGroup = false;
            this.gridView2.OptionsMenu.EnableColumnMenu = false;
            this.gridView2.OptionsMenu.EnableFooterMenu = false;
            this.gridView2.OptionsMenu.EnableGroupPanelMenu = false;
            this.gridView2.OptionsView.HeaderFilterButtonShowMode = DevExpress.XtraEditors.Controls.FilterButtonShowMode.Button;
            this.gridView2.OptionsView.ShowAutoFilterRow = true;
            this.gridView2.OptionsView.ShowGroupPanel = false;
            this.gridView2.OptionsView.ShowPreview = true;
            this.gridView2.PreviewFieldName = "Note";
            this.gridView2.ShowButtonMode = DevExpress.XtraGrid.Views.Base.ShowButtonModeEnum.ShowForFocusedRow;
            this.gridView2.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gridColumn13, DevExpress.Data.ColumnSortOrder.Descending)});
            // 
            // gridColumn1
            // 
            this.gridColumn1.Caption = "ID";
            this.gridColumn1.FieldName = "ID";
            this.gridColumn1.Name = "gridColumn1";
            this.gridColumn1.OptionsColumn.AllowFocus = false;
            this.gridColumn1.OptionsColumn.AllowMove = false;
            this.gridColumn1.OptionsColumn.AllowSize = false;
            this.gridColumn1.OptionsColumn.FixedWidth = true;
            this.gridColumn1.Visible = true;
            this.gridColumn1.VisibleIndex = 0;
            this.gridColumn1.Width = 30;
            // 
            // gridColumn8
            // 
            this.gridColumn8.Caption = "Account Pair";
            this.gridColumn8.FieldName = "AccountPair";
            this.gridColumn8.Name = "gridColumn8";
            this.gridColumn8.OptionsColumn.AllowFocus = false;
            this.gridColumn8.OptionsColumn.FixedWidth = true;
            this.gridColumn8.Visible = true;
            this.gridColumn8.VisibleIndex = 1;
            this.gridColumn8.Width = 120;
            // 
            // gridColumn2
            // 
            this.gridColumn2.Caption = "Home Team";
            this.gridColumn2.FieldName = "HomeTeamName";
            this.gridColumn2.Name = "gridColumn2";
            this.gridColumn2.OptionsColumn.AllowFocus = false;
            this.gridColumn2.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn2.Visible = true;
            this.gridColumn2.VisibleIndex = 2;
            this.gridColumn2.Width = 107;
            // 
            // gridColumn3
            // 
            this.gridColumn3.Caption = "Away Team";
            this.gridColumn3.FieldName = "AwayTeamName";
            this.gridColumn3.Name = "gridColumn3";
            this.gridColumn3.OptionsColumn.AllowFocus = false;
            this.gridColumn3.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn3.Visible = true;
            this.gridColumn3.VisibleIndex = 3;
            this.gridColumn3.Width = 119;
            // 
            // gridColumn6
            // 
            this.gridColumn6.Caption = "Type";
            this.gridColumn6.FieldName = "OddType";
            this.gridColumn6.Name = "gridColumn6";
            this.gridColumn6.OptionsColumn.AllowFocus = false;
            this.gridColumn6.OptionsColumn.FixedWidth = true;
            this.gridColumn6.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn6.Visible = true;
            this.gridColumn6.VisibleIndex = 4;
            this.gridColumn6.Width = 150;
            // 
            // gridColumn4
            // 
            this.gridColumn4.Caption = "Odd";
            this.gridColumn4.FieldName = "OddKindValue";
            this.gridColumn4.Name = "gridColumn4";
            this.gridColumn4.OptionsColumn.AllowFocus = false;
            this.gridColumn4.OptionsColumn.FixedWidth = true;
            this.gridColumn4.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn4.Visible = true;
            this.gridColumn4.VisibleIndex = 5;
            this.gridColumn4.Width = 60;
            // 
            // gridColumn5
            // 
            this.gridColumn5.Caption = "Value";
            this.gridColumn5.FieldName = "OddValue";
            this.gridColumn5.Name = "gridColumn5";
            this.gridColumn5.OptionsColumn.AllowFocus = false;
            this.gridColumn5.OptionsColumn.FixedWidth = true;
            this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn5.Visible = true;
            this.gridColumn5.VisibleIndex = 6;
            this.gridColumn5.Width = 60;
            // 
            // gridColumn7
            // 
            this.gridColumn7.Caption = "Stake";
            this.gridColumn7.FieldName = "Stake";
            this.gridColumn7.Name = "gridColumn7";
            this.gridColumn7.OptionsColumn.AllowFocus = false;
            this.gridColumn7.OptionsColumn.FixedWidth = true;
            this.gridColumn7.UnboundType = DevExpress.Data.UnboundColumnType.String;
            this.gridColumn7.Visible = true;
            this.gridColumn7.VisibleIndex = 7;
            this.gridColumn7.Width = 60;
            // 
            // gridColumn10
            // 
            this.gridColumn10.Caption = "I";
            this.gridColumn10.FieldName = "IBETTrade";
            this.gridColumn10.Name = "gridColumn10";
            this.gridColumn10.OptionsColumn.AllowFocus = false;
            this.gridColumn10.OptionsColumn.FixedWidth = true;
            this.gridColumn10.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn10.Visible = true;
            this.gridColumn10.VisibleIndex = 8;
            this.gridColumn10.Width = 30;
            // 
            // gridColumn11
            // 
            this.gridColumn11.Caption = "3";
            this.gridColumn11.FieldName = "THREEIN1Trade";
            this.gridColumn11.Name = "gridColumn11";
            this.gridColumn11.OptionsColumn.AllowFocus = false;
            this.gridColumn11.OptionsColumn.FixedWidth = true;
            this.gridColumn11.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn11.Visible = true;
            this.gridColumn11.VisibleIndex = 9;
            this.gridColumn11.Width = 30;
            // 
            // gridColumn12
            // 
            this.gridColumn12.Caption = "3 Re";
            this.gridColumn12.FieldName = "THREEIN1ReTrade";
            this.gridColumn12.Name = "gridColumn12";
            this.gridColumn12.OptionsColumn.AllowFocus = false;
            this.gridColumn12.OptionsColumn.FixedWidth = true;
            this.gridColumn12.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn12.Visible = true;
            this.gridColumn12.VisibleIndex = 11;
            this.gridColumn12.Width = 30;
            // 
            // gridColumn9
            // 
            this.gridColumn9.Caption = "I Re";
            this.gridColumn9.FieldName = "IBETReTrade";
            this.gridColumn9.Name = "gridColumn9";
            this.gridColumn9.OptionsColumn.AllowFocus = false;
            this.gridColumn9.OptionsColumn.FixedWidth = true;
            this.gridColumn9.Visible = true;
            this.gridColumn9.VisibleIndex = 12;
            this.gridColumn9.Width = 30;
            // 
            // gridColumn14
            // 
            this.gridColumn14.Caption = "B";
            this.gridColumn14.FieldName = "SBOBETTrade";
            this.gridColumn14.Name = "gridColumn14";
            this.gridColumn14.OptionsColumn.AllowFocus = false;
            this.gridColumn14.OptionsColumn.FixedWidth = true;
            this.gridColumn14.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn14.Visible = true;
            this.gridColumn14.VisibleIndex = 10;
            this.gridColumn14.Width = 30;
            // 
            // gridColumn15
            // 
            this.gridColumn15.Caption = "B Re";
            this.gridColumn15.FieldName = "SBOBETReTrade";
            this.gridColumn15.Name = "gridColumn15";
            this.gridColumn15.OptionsColumn.AllowFocus = false;
            this.gridColumn15.OptionsColumn.FixedWidth = true;
            this.gridColumn15.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
            this.gridColumn15.Visible = true;
            this.gridColumn15.VisibleIndex = 13;
            this.gridColumn15.Width = 30;
            // 
            // gridColumn13
            // 
            this.gridColumn13.Caption = "DateTime";
            this.gridColumn13.DisplayFormat.FormatString = "dd/MM/yyyy hh:mm:ss";
            this.gridColumn13.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
            this.gridColumn13.FieldName = "DateTime";
            this.gridColumn13.Name = "gridColumn13";
            this.gridColumn13.OptionsColumn.AllowFocus = false;
            this.gridColumn13.OptionsColumn.FixedWidth = true;
            this.gridColumn13.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.gridColumn13.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
            new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Count)});
            this.gridColumn13.UnboundType = DevExpress.Data.UnboundColumnType.DateTime;
            this.gridColumn13.Visible = true;
            this.gridColumn13.VisibleIndex = 14;
            this.gridColumn13.Width = 150;
            // 
            // panelControl3
            // 
            this.panelControl3.Location = new System.Drawing.Point(0, 0);
            this.panelControl3.Name = "panelControl3";
            this.panelControl3.Size = new System.Drawing.Size(200, 100);
            this.panelControl3.TabIndex = 8;
            // 
            // panelControl4
            // 
            this.panelControl4.Location = new System.Drawing.Point(0, 0);
            this.panelControl4.Name = "panelControl4";
            this.panelControl4.Size = new System.Drawing.Size(200, 100);
            this.panelControl4.TabIndex = 9;
            // 
            // xtraTabPage3
            // 
            this.xtraTabPage3.Controls.Add(this.btnStatement);
            this.xtraTabPage3.Controls.Add(this.btnBetList);
            this.xtraTabPage3.Controls.Add(this.cbeSignatureTemplate);
            this.xtraTabPage3.Controls.Add(this.panelControl1);
            this.xtraTabPage3.Name = "xtraTabPage3";
            this.xtraTabPage3.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage3.Text = "Bet List - Statement";
            // 
            // btnStatement
            // 
            this.btnStatement.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnStatement.Location = new System.Drawing.Point(295, 391);
            this.btnStatement.Name = "btnStatement";
            this.btnStatement.Size = new System.Drawing.Size(99, 23);
            this.btnStatement.TabIndex = 7;
            this.btnStatement.Text = "Statement";
            this.btnStatement.Click += new System.EventHandler(this.btnStatement_Click);
            // 
            // btnBetList
            // 
            this.btnBetList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnBetList.Location = new System.Drawing.Point(198, 391);
            this.btnBetList.Name = "btnBetList";
            this.btnBetList.Size = new System.Drawing.Size(91, 23);
            this.btnBetList.TabIndex = 6;
            this.btnBetList.Text = "Refresh";
            this.btnBetList.Click += new System.EventHandler(this.btnRefresh_Click);
            // 
            // cbeSignatureTemplate
            // 
            this.cbeSignatureTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.cbeSignatureTemplate.EditValue = "Select account pair";
            this.cbeSignatureTemplate.Location = new System.Drawing.Point(3, 394);
            this.cbeSignatureTemplate.Name = "cbeSignatureTemplate";
            this.cbeSignatureTemplate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
            this.cbeSignatureTemplate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.cbeSignatureTemplate.Properties.DropDownRows = 10;
            this.cbeSignatureTemplate.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
            this.cbeSignatureTemplate.Size = new System.Drawing.Size(189, 20);
            this.cbeSignatureTemplate.TabIndex = 5;
            // 
            // panelControl1
            // 
            this.panelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl1.Controls.Add(this.webBrowser2);
            this.panelControl1.Controls.Add(this.splitter1);
            this.panelControl1.Controls.Add(this.webBrowser1);
            this.panelControl1.Location = new System.Drawing.Point(2, 3);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(1044, 382);
            this.panelControl1.TabIndex = 3;
            // 
            // webBrowser2
            // 
            this.webBrowser2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.webBrowser2.Location = new System.Drawing.Point(364, 2);
            this.webBrowser2.MinimumSize = new System.Drawing.Size(20, 20);
            this.webBrowser2.Name = "webBrowser2";
            this.webBrowser2.Size = new System.Drawing.Size(678, 378);
            this.webBrowser2.TabIndex = 2;
            this.webBrowser2.Url = new System.Uri("", System.UriKind.Relative);
            // 
            // splitter1
            // 
            this.splitter1.Location = new System.Drawing.Point(361, 2);
            this.splitter1.Name = "splitter1";
            this.splitter1.Size = new System.Drawing.Size(3, 378);
            this.splitter1.TabIndex = 1;
            this.splitter1.TabStop = false;
            // 
            // webBrowser1
            // 
            this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Left;
            this.webBrowser1.Location = new System.Drawing.Point(2, 2);
            this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20);
            this.webBrowser1.Name = "webBrowser1";
            this.webBrowser1.Size = new System.Drawing.Size(359, 378);
            this.webBrowser1.TabIndex = 0;
            this.webBrowser1.Url = new System.Uri("", System.UriKind.Relative);
            // 
            // xtraTabPage5
            // 
            this.xtraTabPage5.Controls.Add(this.panelControl2);
            this.xtraTabPage5.Name = "xtraTabPage5";
            this.xtraTabPage5.Size = new System.Drawing.Size(1050, 417);
            this.xtraTabPage5.Text = "Settings";
            // 
            // panelControl2
            // 
            this.panelControl2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panelControl2.Controls.Add(this.textEdit4);
            this.panelControl2.Controls.Add(this.chkSCloud);
            this.panelControl2.Controls.Add(this.simpleButton2);
            this.panelControl2.Controls.Add(this.textEdit3);
            this.panelControl2.Controls.Add(this.textEdit2);
            this.panelControl2.Controls.Add(this.textEdit1);
            this.panelControl2.Controls.Add(this.simpleButton1);
            this.panelControl2.Controls.Add(this.label4);
            this.panelControl2.Controls.Add(this.label3);
            this.panelControl2.Controls.Add(this.label2);
            this.panelControl2.Controls.Add(this.label1);
            this.panelControl2.Controls.Add(this.chkRCloud);
            this.panelControl2.Controls.Add(this.btnSignMeIn);
            this.panelControl2.Controls.Add(this.txtServerIP);
            this.panelControl2.Controls.Add(this.txtServerUserName);
            this.panelControl2.Controls.Add(this.txtServerPassword);
            this.panelControl2.Controls.Add(this.pictureEdit1);
            this.panelControl2.Location = new System.Drawing.Point(3, 3);
            this.panelControl2.Name = "panelControl2";
            this.panelControl2.Size = new System.Drawing.Size(1044, 497);
            this.panelControl2.TabIndex = 0;
            // 
            // textEdit4
            // 
            this.textEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.textEdit4.Location = new System.Drawing.Point(244, 5);
            this.textEdit4.Name = "textEdit4";
            this.textEdit4.Size = new System.Drawing.Size(408, 406);
            this.textEdit4.TabIndex = 18;
            // 
            // chkSCloud
            // 
            this.chkSCloud.EditValue = true;
            this.chkSCloud.Location = new System.Drawing.Point(13, 27);
            this.chkSCloud.Name = "chkSCloud";
            this.chkSCloud.Properties.Caption = "S cloud";
            this.chkSCloud.Size = new System.Drawing.Size(86, 19);
            this.chkSCloud.TabIndex = 17;
            // 
            // simpleButton2
            // 
            this.simpleButton2.Location = new System.Drawing.Point(130, 307);
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Size = new System.Drawing.Size(97, 23);
            this.simpleButton2.TabIndex = 16;
            this.simpleButton2.Text = "Set";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // textEdit3
            // 
            this.textEdit3.EditValue = "0";
            this.textEdit3.Location = new System.Drawing.Point(94, 216);
            this.textEdit3.Name = "textEdit3";
            this.textEdit3.Size = new System.Drawing.Size(142, 20);
            this.textEdit3.TabIndex = 15;
            // 
            // textEdit2
            // 
            this.textEdit2.Location = new System.Drawing.Point(94, 268);
            this.textEdit2.Name = "textEdit2";
            this.textEdit2.Size = new System.Drawing.Size(142, 20);
            this.textEdit2.TabIndex = 14;
            // 
            // textEdit1
            // 
            this.textEdit1.Location = new System.Drawing.Point(94, 241);
            this.textEdit1.Name = "textEdit1";
            this.textEdit1.Size = new System.Drawing.Size(142, 20);
            this.textEdit1.TabIndex = 13;
            // 
            // simpleButton1
            // 
            this.simpleButton1.Location = new System.Drawing.Point(18, 307);
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Size = new System.Drawing.Size(97, 23);
            this.simpleButton1.TabIndex = 12;
            this.simpleButton1.Text = "Get";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(12, 176);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(0, 13);
            this.label4.TabIndex = 11;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(11, 140);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(53, 13);
            this.label3.TabIndex = 10;
            this.label3.Text = "Password";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(11, 113);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(55, 13);
            this.label2.TabIndex = 9;
            this.label2.Text = "Username";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(11, 86);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(81, 13);
            this.label1.TabIndex = 8;
            this.label1.Text = "Server Address";
            // 
            // chkRCloud
            // 
            this.chkRCloud.EditValue = true;
            this.chkRCloud.Location = new System.Drawing.Point(12, 53);
            this.chkRCloud.Name = "chkRCloud";
            this.chkRCloud.Properties.Caption = "R cloud";
            this.chkRCloud.Size = new System.Drawing.Size(86, 19);
            this.chkRCloud.TabIndex = 7;
            this.chkRCloud.CheckedChanged += new System.EventHandler(this.chbCloud_CheckedChanged);
            // 
            // btnSignMeIn
            // 
            this.btnSignMeIn.Location = new System.Drawing.Point(154, 171);
            this.btnSignMeIn.Name = "btnSignMeIn";
            this.btnSignMeIn.Size = new System.Drawing.Size(75, 23);
            this.btnSignMeIn.TabIndex = 3;
            this.btnSignMeIn.Text = "Sign me in";
            this.btnSignMeIn.Click += new System.EventHandler(this.btnSignMeIn_Click);
            // 
            // txtServerIP
            // 
            this.txtServerIP.EditValue = "115.84.178.100";
            this.txtServerIP.Location = new System.Drawing.Point(95, 83);
            this.txtServerIP.Name = "txtServerIP";
            this.txtServerIP.Size = new System.Drawing.Size(142, 20);
            this.txtServerIP.TabIndex = 4;
            // 
            // txtServerUserName
            // 
            this.txtServerUserName.EditValue = "tuns";
            this.txtServerUserName.Location = new System.Drawing.Point(95, 110);
            this.txtServerUserName.Name = "txtServerUserName";
            this.txtServerUserName.Size = new System.Drawing.Size(142, 20);
            this.txtServerUserName.TabIndex = 5;
            // 
            // txtServerPassword
            // 
            this.txtServerPassword.EditValue = "anhkomuonradi";
            this.txtServerPassword.Location = new System.Drawing.Point(95, 137);
            this.txtServerPassword.Name = "txtServerPassword";
            this.txtServerPassword.Properties.UseSystemPasswordChar = true;
            this.txtServerPassword.Size = new System.Drawing.Size(142, 20);
            this.txtServerPassword.TabIndex = 6;
            // 
            // pictureEdit1
            // 
            this.pictureEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.pictureEdit1.EditValue = ((object)(resources.GetObject("pictureEdit1.EditValue")));
            this.pictureEdit1.Location = new System.Drawing.Point(658, 5);
            this.pictureEdit1.Name = "pictureEdit1";
            this.pictureEdit1.Properties.AllowFocused = false;
            this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
            this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
            this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.pictureEdit1.Properties.PictureAlignment = System.Drawing.ContentAlignment.TopLeft;
            this.pictureEdit1.Properties.ShowMenu = false;
            this.pictureEdit1.Size = new System.Drawing.Size(382, 448);
            this.pictureEdit1.TabIndex = 2;
            // 
            // xtraTabControl2
            // 
            this.xtraTabControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControl2.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControl2.Name = "xtraTabControl2";
            this.xtraTabControl2.SelectedTabPage = this.xtraTabPage2;
            this.xtraTabControl2.Size = new System.Drawing.Size(1056, 44);
            this.xtraTabControl2.TabIndex = 1;
            this.xtraTabControl2.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPage2,
            this.xtraTabPage4});
            // 
            // xtraTabPage2
            // 
            this.xtraTabPage2.Name = "xtraTabPage2";
            this.xtraTabPage2.Size = new System.Drawing.Size(1050, 18);
            this.xtraTabPage2.Text = "Waiting list";
            // 
            // xtraTabPage4
            // 
            this.xtraTabPage4.Name = "xtraTabPage4";
            this.xtraTabPage4.Size = new System.Drawing.Size(1050, 18);
            this.xtraTabPage4.Text = "Clones monitor";
            // 
            // ribbonPageGroup4
            // 
            this.ribbonPageGroup4.ItemLinks.Add(this.btnClear);
            this.ribbonPageGroup4.Name = "ribbonPageGroup4";
            this.ribbonPageGroup4.ShowCaptionButton = false;
            this.ribbonPageGroup4.Text = "Tracking";
            // 
            // MainForm
            // 
            this.AutoHideRibbon = false;
            this.ClientSize = new System.Drawing.Size(1056, 648);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.ribbonStatusBar1);
            this.Controls.Add(this.ribbonControl1);
            this.Icon = global::iBet.App.Properties.Resources.BetBrokerLogo;
            this.Name = "MainForm";
            this.Ribbon = this.ribbonControl1;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.StatusBar = this.ribbonStatusBar1;
            this.Text = "Bet Broker";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            ((System.ComponentModel.ISupportInitialize)(this.ribbonControl1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
            this.xtraTabControl1.ResumeLayout(false);
            this.xtraTabPage1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.grdTransaction)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
            this.xtraTabPage3.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.cbeSignatureTemplate.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.panelControl1.ResumeLayout(false);
            this.xtraTabPage5.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
            this.panelControl2.ResumeLayout(false);
            this.panelControl2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit4.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkSCloud.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit3.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chkRCloud.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerIP.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerUserName.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtServerPassword.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl2)).EndInit();
            this.xtraTabControl2.ResumeLayout(false);
            this.ResumeLayout(false);

		}
コード例 #42
0
ファイル: DlgTeamGame.cs プロジェクト: micheljung/gpgnetfix
 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();
 }
コード例 #43
0
ファイル: Editor.cs プロジェクト: 25cm/EMRDemo
 /// <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();
 }
コード例 #44
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();
 }
コード例 #45
0
ファイル: AppCtrl.cs プロジェクト: khanhdtn/did-vlib-2011
        public static void InitCotTimecode(GridColumn colunm, string fieldName)
        {
            var timeCode = new RepositoryItemTextEdit();
            // ReSharper disable CSharpWarnings::CS0612
            if (timeCode.Properties != null)
            {
                timeCode.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
                timeCode.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
                timeCode.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
                timeCode.Properties.Mask.ShowPlaceHolders = true;
            }
            // ReSharper restore CSharpWarnings::CS0612

            HelpGridColumn.CotRepository(colunm, fieldName, timeCode, HorzAlignment.Near);
        }
コード例 #46
0
 private void InitGrid()
 {
     this.view.BeginUpdate();
     this.view.OptionsView.ShowGroupPanel = false;
     this.view.OptionsView.ShowHorzLines = true;
     this.view.OptionsView.ShowVertLines = true;
     this.view.OptionsSelection.MultiSelect = true;
     RepositoryItemButtonEdit edit = new RepositoryItemButtonEdit();
     RepositoryItemTextEdit edit2 = new RepositoryItemTextEdit();
     RepositoryItemMemoExEdit edit3 = new RepositoryItemMemoExEdit();
     string[] strArray = new string[] { "Name", "CreateStaffName", "CreateDate", "Description" };
     string[] strArray2 = new string[] { "附件名称", "创建人", "创建时间", "备注" };
     GridColumn[] columns = new GridColumn[4];
     for (int i = 0; i < 4; i++)
     {
         columns[i] = new GridColumn();
         columns[i].FieldName = strArray[i];
         columns[i].Caption = strArray2[i];
         columns[i].VisibleIndex = i;
     }
     this.view.Columns.AddRange(columns);
     columns[0].ColumnEdit = edit;
     columns[3].ColumnEdit = edit3;
     columns[1].ColumnEdit = edit2;
     columns[2].ColumnEdit = edit2;
     columns[1].ColumnEdit.ReadOnly = true;
     columns[2].ColumnEdit.ReadOnly = true;
     edit.ButtonClick += new ButtonPressedEventHandler(this.BtEditClick);
     edit.EditValueChanged += new EventHandler(this.ValueChanged);
     edit3.EditValueChanged += new EventHandler(this.ValueChanged);
     edit2.EditValueChanged += new EventHandler(this.ValueChanged);
     this.view.EndUpdate();
 }
コード例 #47
0
ファイル: DlgLogWatcher.cs プロジェクト: micheljung/gpgnetfix
 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();
 }
コード例 #48
0
        //�����������
        private void AddEndColumn()
        {
            TreeListColumn column = new TreeListColumn();
            column.FieldName = "N2";
            column.Caption = "���ƽ����";
            column.VisibleIndex = 200;
            column.Width = 180;

            RepositoryItemTextEdit repositoryItemTextEdit1 = new RepositoryItemTextEdit();
            repositoryItemTextEdit1.AutoHeight = false;
            repositoryItemTextEdit1.DisplayFormat.FormatString = "n2";
            repositoryItemTextEdit1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
            repositoryItemTextEdit1.Mask.EditMask = "n2";
            repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;

            column.ColumnEdit = repositoryItemTextEdit1;

            column.Format.FormatString = "#####################0.##";
            column.Format.FormatType = DevExpress.Utils.FormatType.Numeric;

            this.treeList1.Columns.AddRange(new TreeListColumn[] {
            column});
        }
コード例 #49
0
ファイル: Form1.cs プロジェクト: algz/ReactiveControlAnalysis
        private void LoadView()
        {
            //BandedGridView view = bandedGridView1  as BandedGridView;
            List<string> ValueFrom4 = GetValueFrom4();
            List<string> ValueFrom3 = GetValueFrom3();
            if (ValueFrom4 != null)
            {
                bandedGridView1.BeginUpdate(); //开始视图的编辑,防止触发其他事件
                bandedGridView1.BeginDataUpdate(); //开始数据的编辑

                bandedGridView1.Bands.Clear();

                #region 修改附加选项
                bandedGridView1.OptionsView.ShowColumnHeaders = false;                         //因为有Band列了,所以把ColumnHeader隐藏
                bandedGridView1.OptionsView.ShowGroupPanel = false;                            //如果没必要分组,就把它去掉
                bandedGridView1.OptionsView.EnableAppearanceEvenRow = false;                   //是否启用偶数行外观
                bandedGridView1.OptionsView.EnableAppearanceOddRow = true;                     //是否启用奇数行外观
                bandedGridView1.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;   //是否显示过滤面板
                bandedGridView1.OptionsCustomization.AllowColumnMoving = false;                //是否允许移动列
                bandedGridView1.OptionsCustomization.AllowColumnResizing = false;              //是否允许调整列宽
                bandedGridView1.OptionsCustomization.AllowGroup = false;                       //是否允许分组
                bandedGridView1.OptionsCustomization.AllowFilter = false;                      //是否允许过滤
                bandedGridView1.OptionsCustomization.AllowSort = true;                         //是否允许排序
                bandedGridView1.OptionsSelection.EnableAppearanceFocusedCell = true;           //???
                bandedGridView1.OptionsBehavior.Editable = true;                               //是否允许用户编辑单元格
                //bandedGridView1.OptionsView.AllowCellMerge = true;
                #endregion

                #region  添加列标题
                GridBand bandID = bandedGridView1.Bands.AddBand("ID");
                bandID.Visible = false; //隐藏ID列
                GridBand bandName = bandedGridView1.Bands.AddBand("需求项");
                GridBand bandSystem1 = bandedGridView1.Bands.AddBand("第一系统/pcm");
                GridBand bandSystem2 = bandedGridView1.Bands.AddBand("第二系统/pcm");
                GridBand bandSystem3 = bandedGridView1.Bands.AddBand("非能动棒/pcm");
                GridBand bandValue1 = bandSystem1.Children.AddBand("计算值");
                GridBand bandError1 = bandSystem1.Children.AddBand("考虑的计算误差");
                GridBand bandValue2 = bandSystem2.Children.AddBand("计算值");
                GridBand bandError2 = bandSystem2.Children.AddBand("考虑的计算误差");
                GridBand bandValue3 = bandSystem3.Children.AddBand("计算值");
                GridBand bandError3 = bandSystem3.Children.AddBand("考虑的计算误差");
                GridBand bandErrer = bandedGridView1.Bands.AddBand("最大计算误差");
                #endregion
                #region 列标题对齐方式
                bandName.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandSystem1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandSystem2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandSystem3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandValue1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandError1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandValue2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandError2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandValue3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                bandError3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                #endregion

                List<Idata> datas = new List<Idata>();
                datas.Add(new Idata(1, "温度效应(冷态到热态的反应性亏损)", ValueFrom4[0], "", "", "", "0", "0", "15%"));
                datas.Add(new Idata(2, "功率效应", ValueFrom4[1], "", "", "", "", "", "25%"));
                datas.Add(new Idata(3, "燃料循环后备反应性", ValueFrom4[2], "", "0", "0", "0", "0", "10%"));
                datas.Add(new Idata(4, "超功率效应", (Convert.ToDouble(ValueFrom4[1]) * 0.1).ToString(), "0", "", "0", "0", "0", ""));
                datas.Add(new Idata(5, "反应性引入事故", (Convert.ToDouble(ValueFrom4[3]) * 0.5).ToString(), "", "", "", "0", "0", "15%"));
                datas.Add(new Idata(6, "临界和裂变材料装量不确定性相关的反应性", ValueFrom3[0], "0", "0", "0", "0", "0", ""));
                double total6 = SubTotal(datas);
                datas.Add(new Idata(7, "停堆深度要求", ValueFrom3[1], "0", "1000", "0", "0", "0", ""));

                double total8 = SubTotal(datas);
                datas.Add(new Idata(8, "合计(未考虑控制棒计算误差)", total8.ToString(), "", "", "", "", "", "15%"));
                datas.Add(new Idata(9, "卡棒准则下停堆深度要求", ValueFrom3[2], "0", ValueFrom3[2], "0", "空", "空", ""));
                double total10 = total6 + Convert.ToDouble(ValueFrom3[2]);
                datas.Add(new Idata(10, "卡棒准则下合计(未考虑控制棒计算误差)", total10.ToString(), "", "", "", "空", "空", "15%"));
                datas.Add(new Idata(11, "反应性价值最低要求(考虑控制棒计算误差)", (total8 / (1 - 0.15)).ToString(), (total8 / (1 - 0.15)).ToString(), "", "", "", "", ""));
                datas.Add(new Idata(12, "卡棒准则下反应性价值最低要求(考虑控制棒计算误差)", (total10 / (1 - 0.15)).ToString(), (total10 / (1 - 0.15)).ToString(), "", "", "空", "空", ""));
                this.gridControl1.DataSource = datas;
                this.gridControl1.MainView.PopulateColumns();

                #region 将标题列和数据列对应
                bandedGridView1.Columns["Id"].OwnerBand = bandID;
                bandedGridView1.Columns["Name"].OwnerBand = bandName;
                bandedGridView1.Columns["Value1"].OwnerBand = bandValue1;
                bandedGridView1.Columns["Error1"].OwnerBand = bandError1;
                bandedGridView1.Columns["Value2"].OwnerBand = bandValue2;
                bandedGridView1.Columns["Error2"].OwnerBand = bandError2;
                bandedGridView1.Columns["Value3"].OwnerBand = bandValue3;
                bandedGridView1.Columns["Error3"].OwnerBand = bandError3;
                bandedGridView1.Columns["ErrorMax"].OwnerBand = bandErrer;
                #endregion

                #region 设置除最后一列之外的列都不可编辑
                bandedGridView1.Columns["Name"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Value1"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Error1"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Value2"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Error2"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Value3"].OptionsColumn.AllowEdit = false;
                bandedGridView1.Columns["Error3"].OptionsColumn.AllowEdit = false;
                #endregion
                bandedGridView1.EndDataUpdate();//结束数据的编辑
                bandedGridView1.EndUpdate();   //结束视图的编辑

                #region 绑定数据格式
                RepositoryItemSpinEdit riSpin = new RepositoryItemSpinEdit();
                RepositoryItemTextEdit riText = new RepositoryItemTextEdit();
                gridControl1.RepositoryItems.Add(riSpin);
                gridControl1.RepositoryItems.Add(riText);
                bandedGridView1.Columns["Id"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Name"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Value1"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Error1"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Value2"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Error2"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Value3"].ColumnEdit = riSpin;
                bandedGridView1.Columns["Error3"].ColumnEdit = riSpin;
                bandedGridView1.Columns["ErrorMax"].ColumnEdit = riText;

                #endregion

            }
        }
コード例 #50
0
ファイル: frmEventBrw.cs プロジェクト: gregggdavis/schedww2
 /// <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(frmEventBrw));
     this.gcolStatus = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlBody = new System.Windows.Forms.Panel();
     this.pnlBrowse = new System.Windows.Forms.Panel();
     this.grdEvent = new DevExpress.XtraGrid.GridControl();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xpServerCollectionSource1 = new DevExpress.Xpo.XPServerCollectionSource();
     this.session1 = new DevExpress.Xpo.Session();
     this.gvwEvent = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gcolEventID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colCalendarEventID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colStartDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colEndDateTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gColName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolClass = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolProgram = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDescription = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolPhonetic = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolNameRomaji = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolEventType = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolScheduledIns = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolRealIns = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateLastLogin = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDateCreated = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModified = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolLastModifiedByUser = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolIsRecur = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDept = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolClient = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolInstructor = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolExceptionReason = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolCourseId = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gcolDayOfWeek = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDateAndTime = new DevExpress.XtraGrid.Columns.GridColumn();
     this.pnlFilter = new System.Windows.Forms.Panel();
     this.pnlFilterContainer = new System.Windows.Forms.Panel();
     this.cmbClass = new System.Windows.Forms.ComboBox();
     this.lblClass = new System.Windows.Forms.Label();
     this.datePickerEnd = new System.Windows.Forms.DateTimePicker();
     this.cmbProgram = new System.Windows.Forms.ComboBox();
     this.lblYear = new System.Windows.Forms.Label();
     this.lblProgram = new System.Windows.Forms.Label();
     this.datePickerStart = new System.Windows.Forms.DateTimePicker();
     this.cmbInstructor = new System.Windows.Forms.ComboBox();
     this.lblMonth = new System.Windows.Forms.Label();
     this.lblInstructor = new System.Windows.Forms.Label();
     this.btnClear = new System.Windows.Forms.Button();
     this.cmbClient = new System.Windows.Forms.ComboBox();
     this.lblClient = new System.Windows.Forms.Label();
     this.pnl_SpeedSearch = new System.Windows.Forms.Panel();
     this.pnl_SpeedSearch1 = new System.Windows.Forms.Panel();
     this.txt_SpeedSearch = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.pnl_Find = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.txtSearch = new System.Windows.Forms.TextBox();
     this.chk_Anywhere = new System.Windows.Forms.CheckBox();
     this.btn_Clear = new System.Windows.Forms.Button();
     this.btn_Find = new System.Windows.Forms.Button();
     this.lbl_Find = new System.Windows.Forms.Label();
     this.chk_AdvanceSearch = new System.Windows.Forms.CheckBox();
     this.imgContext = new System.Windows.Forms.ImageList(this.components);
     this.persistentRepository1 = new DevExpress.XtraEditors.Repository.PersistentRepository(this.components);
     this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
     this.pnlBody.SuspendLayout();
     this.pnlBrowse.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdEvent)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.session1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwEvent)).BeginInit();
     this.pnlFilter.SuspendLayout();
     this.pnlFilterContainer.SuspendLayout();
     this.pnl_SpeedSearch.SuspendLayout();
     this.pnl_SpeedSearch1.SuspendLayout();
     this.pnl_Find.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
     this.SuspendLayout();
     //
     // gcolStatus
     //
     this.gcolStatus.Caption = "Status";
     this.gcolStatus.FieldName = "EventStatus";
     this.gcolStatus.Name = "gcolStatus";
     this.gcolStatus.Width = 70;
     //
     // pnlBody
     //
     this.pnlBody.Controls.Add(this.pnlBrowse);
     this.pnlBody.Controls.Add(this.pnlFilter);
     this.pnlBody.Controls.Add(this.pnl_SpeedSearch);
     this.pnlBody.Controls.Add(this.pnl_Find);
     this.pnlBody.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBody.Location = new System.Drawing.Point(0, 0);
     this.pnlBody.Name = "pnlBody";
     this.pnlBody.Size = new System.Drawing.Size(868, 481);
     this.pnlBody.TabIndex = 30;
     this.pnlBody.Resize += new System.EventHandler(this.pnlBody_Resize);
     //
     // pnlBrowse
     //
     this.pnlBrowse.Controls.Add(this.grdEvent);
     this.pnlBrowse.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlBrowse.Location = new System.Drawing.Point(0, 188);
     this.pnlBrowse.Name = "pnlBrowse";
     this.pnlBrowse.Size = new System.Drawing.Size(868, 293);
     this.pnlBrowse.TabIndex = 45;
     //
     // grdEvent
     //
     this.grdEvent.ContextMenuStrip = this.contextMenuStrip1;
     this.grdEvent.DataSource = this.xpServerCollectionSource1;
     this.grdEvent.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdEvent.Location = new System.Drawing.Point(0, 0);
     this.grdEvent.MainView = this.gvwEvent;
     this.grdEvent.Name = "grdEvent";
     //this.grdEvent.ServerMode = true;
     this.grdEvent.Size = new System.Drawing.Size(868, 293);
     this.grdEvent.TabIndex = 26;
     this.grdEvent.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gvwEvent});
     this.grdEvent.DoubleClick += new System.EventHandler(this.grdEvent_DoubleClick);
     this.grdEvent.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.grdEvent_KeyPress);
     this.grdEvent.Click += new System.EventHandler(this.grdEvent_Click);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(135, 64);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.Size = new System.Drawing.Size(134, 30);
     this.openToolStripMenuItem.Text = "Open";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(134, 30);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // xpServerCollectionSource1
     //
     this.xpServerCollectionSource1.ObjectType = typeof(Scheduler.BusinessLayer.EventsPO);
     this.xpServerCollectionSource1.Session = this.session1;
     //
     // gvwEvent
     //
     this.gvwEvent.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.gvwEvent.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gcolEventID,
     this.colCalendarEventID,
     this.colStartDateTime,
     this.colEndDateTime,
     this.gColName,
     this.gcolClass,
     this.gcolProgram,
     this.gcolDescription,
     this.gcolPhonetic,
     this.gcolNameRomaji,
     this.gcolEventType,
     this.gcolScheduledIns,
     this.gcolRealIns,
     this.gcolStatus,
     this.gcolDateLastLogin,
     this.gcolDateCreated,
     this.gcolLastModified,
     this.gcolLastModifiedByUser,
     this.gcolIsRecur,
     this.gcolDept,
     this.gcolClient,
     this.gcolInstructor,
     this.gcolExceptionReason,
     this.gcolCourseId,
     this.gcolDayOfWeek,
     this.colDateAndTime});
     this.gvwEvent.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gvwEvent.GridControl = this.grdEvent;
     this.gvwEvent.Name = "gvwEvent";
     this.gvwEvent.OptionsBehavior.Editable = false;
     this.gvwEvent.OptionsBehavior.KeepGroupExpandedOnSorting = false;
     this.gvwEvent.OptionsNavigation.AutoMoveRowFocus = false;
     this.gvwEvent.OptionsView.ShowDetailButtons = false;
     this.gvwEvent.OptionsView.ShowGroupPanel = false;
     this.gvwEvent.OptionsView.ShowHorizontalLines = DevExpress.Utils.DefaultBoolean.False; ;
     this.gvwEvent.OptionsView.ShowIndicator = false;
     this.gvwEvent.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.gcolClass, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gvwEvent.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.gvwEvent_RowCellStyle);
     //
     // gcolEventID
     //
     this.gcolEventID.Caption = "Event ID";
     this.gcolEventID.FieldName = "EventId";
     this.gcolEventID.Name = "gcolEventID";
     //
     // colCalendarEventID
     //
     this.colCalendarEventID.Caption = "CalendarEventID";
     this.colCalendarEventID.FieldName = "CalendarEventId";
     this.colCalendarEventID.Name = "colCalendarEventID";
     //
     // colStartDateTime
     //
     this.colStartDateTime.Caption = "Start Date";
     this.colStartDateTime.DisplayFormat.FormatString = "MM/dd/yyyy HH:mm";
     this.colStartDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colStartDateTime.FieldName = "StartDateTime";
     this.colStartDateTime.MinWidth = 90;
     this.colStartDateTime.Name = "colStartDateTime";
     this.colStartDateTime.Width = 105;
     //
     // colEndDateTime
     //
     this.colEndDateTime.Caption = "End Date";
     this.colEndDateTime.DisplayFormat.FormatString = "MM/dd/yyyy HH:mm";
     this.colEndDateTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colEndDateTime.FieldName = "EndDateTime";
     this.colEndDateTime.MinWidth = 90;
     this.colEndDateTime.Name = "colEndDateTime";
     this.colEndDateTime.Width = 90;
     //
     // gColName
     //
     this.gColName.Caption = "Event Name";
     this.gColName.FieldName = "Name";
     this.gColName.Name = "gColName";
     this.gColName.Visible = true;
     this.gColName.VisibleIndex = 5;
     this.gColName.Width = 216;
     //
     // gcolClass
     //
     this.gcolClass.Caption = "Class";
     this.gcolClass.FieldName = "Class";
     this.gcolClass.Name = "gcolClass";
     this.gcolClass.Width = 98;
     //
     // gcolProgram
     //
     this.gcolProgram.Caption = "Program";
     this.gcolProgram.FieldName = "Program";
     this.gcolProgram.Name = "gcolProgram";
     this.gcolProgram.Visible = true;
     this.gcolProgram.VisibleIndex = 3;
     this.gcolProgram.Width = 189;
     //
     // gcolDescription
     //
     this.gcolDescription.Caption = "Description";
     this.gcolDescription.FieldName = "Description";
     this.gcolDescription.Name = "gcolDescription";
     this.gcolDescription.Width = 114;
     //
     // gcolPhonetic
     //
     this.gcolPhonetic.Caption = "Name Phonetic";
     this.gcolPhonetic.FieldName = "NamePhonetic";
     this.gcolPhonetic.Name = "gcolPhonetic";
     this.gcolPhonetic.Width = 90;
     //
     // gcolNameRomaji
     //
     this.gcolNameRomaji.Caption = "Name Romaji";
     this.gcolNameRomaji.FieldName = "NameRomaji";
     this.gcolNameRomaji.Name = "gcolNameRomaji";
     this.gcolNameRomaji.Width = 90;
     //
     // gcolEventType
     //
     this.gcolEventType.Caption = "Event Type";
     this.gcolEventType.FieldName = "EventType";
     this.gcolEventType.Name = "gcolEventType";
     this.gcolEventType.Width = 61;
     //
     // gcolScheduledIns
     //
     this.gcolScheduledIns.Caption = "Scheduled Instructor";
     this.gcolScheduledIns.FieldName = "ScheduledTeacher";
     this.gcolScheduledIns.Name = "gcolScheduledIns";
     this.gcolScheduledIns.Visible = true;
     this.gcolScheduledIns.VisibleIndex = 6;
     this.gcolScheduledIns.Width = 167;
     //
     // gcolRealIns
     //
     this.gcolRealIns.Caption = "Real Instructor";
     this.gcolRealIns.FieldName = "RealTeacher";
     this.gcolRealIns.Name = "gcolRealIns";
     this.gcolRealIns.Width = 80;
     //
     // gcolDateLastLogin
     //
     this.gcolDateLastLogin.Caption = "Date Last Login";
     this.gcolDateLastLogin.FieldName = "DatelastLogin";
     this.gcolDateLastLogin.Name = "gcolDateLastLogin";
     //
     // gcolDateCreated
     //
     this.gcolDateCreated.Caption = "Date Created";
     this.gcolDateCreated.FieldName = "DateCreated";
     this.gcolDateCreated.Name = "gcolDateCreated";
     //
     // gcolLastModified
     //
     this.gcolLastModified.Caption = "Date Last Modified";
     this.gcolLastModified.FieldName = "DateLastModified";
     this.gcolLastModified.Name = "gcolLastModified";
     //
     // gcolLastModifiedByUser
     //
     this.gcolLastModifiedByUser.Caption = "Last Modified User ID";
     this.gcolLastModifiedByUser.FieldName = "LastModifiedByUserID";
     this.gcolLastModifiedByUser.Name = "gcolLastModifiedByUser";
     //
     // gcolIsRecur
     //
     this.gcolIsRecur.Caption = "IsRecur";
     this.gcolIsRecur.FieldName = "RecurrenceText";
     this.gcolIsRecur.Name = "gcolIsRecur";
     //
     // gcolDept
     //
     this.gcolDept.Caption = "Department";
     this.gcolDept.FieldName = "Department";
     this.gcolDept.Name = "gcolDept";
     this.gcolDept.Visible = true;
     this.gcolDept.VisibleIndex = 4;
     this.gcolDept.Width = 197;
     //
     // gcolClient
     //
     this.gcolClient.Caption = "Client";
     this.gcolClient.FieldName = "Client";
     this.gcolClient.Name = "gcolClient";
     this.gcolClient.Visible = true;
     this.gcolClient.VisibleIndex = 2;
     this.gcolClient.Width = 197;
     //
     // gcolInstructor
     //
     this.gcolInstructor.Caption = "Actual Instructor";
     this.gcolInstructor.FieldName = "Instructor";
     this.gcolInstructor.Name = "gcolInstructor";
     this.gcolInstructor.Visible = true;
     this.gcolInstructor.VisibleIndex = 7;
     this.gcolInstructor.Width = 167;
     //
     // gcolExceptionReason
     //
     this.gcolExceptionReason.Caption = "Exception Reason";
     this.gcolExceptionReason.FieldName = "ExceptionReason";
     this.gcolExceptionReason.Name = "gcolExceptionReason";
     this.gcolExceptionReason.Visible = true;
     this.gcolExceptionReason.VisibleIndex = 8;
     this.gcolExceptionReason.Width = 222;
     //
     // gcolCourseId
     //
     this.gcolCourseId.Caption = "CourseId";
     this.gcolCourseId.FieldName = "CourseId";
     this.gcolCourseId.Name = "gcolCourseId";
     //
     // gcolDayOfWeek
     //
     this.gcolDayOfWeek.Caption = "Day Of Week";
     this.gcolDayOfWeek.FieldName = "DayOfWeek";
     this.gcolDayOfWeek.Name = "gcolDayOfWeek";
     this.gcolDayOfWeek.Visible = true;
     this.gcolDayOfWeek.VisibleIndex = 1;
     this.gcolDayOfWeek.Width = 124;
     //
     // colDateAndTime
     //
     this.colDateAndTime.Caption = "Date and Time";
     this.colDateAndTime.DisplayFormat.FormatString = "G";
     this.colDateAndTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.colDateAndTime.FieldName = "DateAndTime";
     this.colDateAndTime.Name = "colDateAndTime";
     this.colDateAndTime.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
     this.colDateAndTime.Visible = true;
     this.colDateAndTime.VisibleIndex = 0;
     this.colDateAndTime.Width = 268;
     //
     // pnlFilter
     //
     this.pnlFilter.BackColor = System.Drawing.SystemColors.GrayText;
     this.pnlFilter.Controls.Add(this.pnlFilterContainer);
     this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFilter.Location = new System.Drawing.Point(0, 128);
     this.pnlFilter.Name = "pnlFilter";
     this.pnlFilter.Size = new System.Drawing.Size(868, 60);
     this.pnlFilter.TabIndex = 44;
     //
     // pnlFilterContainer
     //
     this.pnlFilterContainer.Controls.Add(this.cmbClass);
     this.pnlFilterContainer.Controls.Add(this.lblClass);
     this.pnlFilterContainer.Controls.Add(this.datePickerEnd);
     this.pnlFilterContainer.Controls.Add(this.cmbProgram);
     this.pnlFilterContainer.Controls.Add(this.lblYear);
     this.pnlFilterContainer.Controls.Add(this.lblProgram);
     this.pnlFilterContainer.Controls.Add(this.datePickerStart);
     this.pnlFilterContainer.Controls.Add(this.cmbInstructor);
     this.pnlFilterContainer.Controls.Add(this.lblMonth);
     this.pnlFilterContainer.Controls.Add(this.lblInstructor);
     this.pnlFilterContainer.Controls.Add(this.btnClear);
     this.pnlFilterContainer.Controls.Add(this.cmbClient);
     this.pnlFilterContainer.Controls.Add(this.lblClient);
     this.pnlFilterContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pnlFilterContainer.Location = new System.Drawing.Point(0, 0);
     this.pnlFilterContainer.Name = "pnlFilterContainer";
     this.pnlFilterContainer.Size = new System.Drawing.Size(868, 60);
     this.pnlFilterContainer.TabIndex = 16;
     //
     // cmbClass
     //
     this.cmbClass.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbClass.DropDownWidth = 173;
     this.cmbClass.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbClass.ItemHeight = 21;
     this.cmbClass.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbClass.Location = new System.Drawing.Point(502, 32);
     this.cmbClass.Name = "cmbClass";
     this.cmbClass.Size = new System.Drawing.Size(137, 29);
     this.cmbClass.TabIndex = 12;
     this.cmbClass.SelectedIndexChanged += new System.EventHandler(this.cmbClass_SelectedIndexChanged);
     //
     // lblClass
     //
     this.lblClass.AutoSize = true;
     this.lblClass.BackColor = System.Drawing.SystemColors.GrayText;
     this.lblClass.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblClass.Location = new System.Drawing.Point(446, 36);
     this.lblClass.Name = "lblClass";
     this.lblClass.Size = new System.Drawing.Size(54, 21);
     this.lblClass.TabIndex = 11;
     this.lblClass.Text = "Class";
     //
     // datePickerEnd
     //
     this.datePickerEnd.Checked = false;
     this.datePickerEnd.CustomFormat = "MM/dd/yyyy";
     this.datePickerEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.datePickerEnd.Location = new System.Drawing.Point(85, 33);
     this.datePickerEnd.Name = "datePickerEnd";
     this.datePickerEnd.Size = new System.Drawing.Size(93, 27);
     this.datePickerEnd.TabIndex = 15;
     this.datePickerEnd.ValueChanged += new System.EventHandler(this.datePickerValueChanged);
     //
     // cmbProgram
     //
     this.cmbProgram.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbProgram.DropDownWidth = 173;
     this.cmbProgram.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbProgram.Location = new System.Drawing.Point(502, 6);
     this.cmbProgram.Name = "cmbProgram";
     this.cmbProgram.Size = new System.Drawing.Size(137, 29);
     this.cmbProgram.TabIndex = 10;
     this.cmbProgram.SelectedIndexChanged += new System.EventHandler(this.cmbProgram_SelectedIndexChanged);
     //
     // lblYear
     //
     this.lblYear.AutoSize = true;
     this.lblYear.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblYear.Location = new System.Drawing.Point(13, 11);
     this.lblYear.Name = "lblYear";
     this.lblYear.Size = new System.Drawing.Size(97, 21);
     this.lblYear.TabIndex = 0;
     this.lblYear.Text = "Start Date";
     //
     // lblProgram
     //
     this.lblProgram.AutoSize = true;
     this.lblProgram.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblProgram.Location = new System.Drawing.Point(446, 11);
     this.lblProgram.Name = "lblProgram";
     this.lblProgram.Size = new System.Drawing.Size(83, 21);
     this.lblProgram.TabIndex = 9;
     this.lblProgram.Text = "Program";
     //
     // datePickerStart
     //
     this.datePickerStart.Checked = false;
     this.datePickerStart.CustomFormat = "MM/dd/yyyy";
     this.datePickerStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.datePickerStart.Location = new System.Drawing.Point(85, 7);
     this.datePickerStart.Name = "datePickerStart";
     this.datePickerStart.Size = new System.Drawing.Size(93, 27);
     this.datePickerStart.TabIndex = 14;
     this.datePickerStart.ValueChanged += new System.EventHandler(this.datePickerValueChanged);
     //
     // cmbInstructor
     //
     this.cmbInstructor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbInstructor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbInstructor.ItemHeight = 21;
     this.cmbInstructor.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbInstructor.Location = new System.Drawing.Point(277, 32);
     this.cmbInstructor.Name = "cmbInstructor";
     this.cmbInstructor.Size = new System.Drawing.Size(137, 29);
     this.cmbInstructor.TabIndex = 8;
     this.cmbInstructor.SelectedIndexChanged += new System.EventHandler(this.cmbInstructor_SelectedIndexChanged);
     //
     // lblMonth
     //
     this.lblMonth.AutoSize = true;
     this.lblMonth.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblMonth.Location = new System.Drawing.Point(13, 36);
     this.lblMonth.Name = "lblMonth";
     this.lblMonth.Size = new System.Drawing.Size(87, 21);
     this.lblMonth.TabIndex = 2;
     this.lblMonth.Text = "End Date";
     //
     // lblInstructor
     //
     this.lblInstructor.AutoSize = true;
     this.lblInstructor.BackColor = System.Drawing.SystemColors.GrayText;
     this.lblInstructor.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblInstructor.Location = new System.Drawing.Point(212, 36);
     this.lblInstructor.Name = "lblInstructor";
     this.lblInstructor.Size = new System.Drawing.Size(97, 21);
     this.lblInstructor.TabIndex = 7;
     this.lblInstructor.Text = "Instructor";
     //
     // btnClear
     //
     this.btnClear.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnClear.ForeColor = System.Drawing.Color.Black;
     this.btnClear.Location = new System.Drawing.Point(13, 4);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(128, 57);
     this.btnClear.TabIndex = 13;
     this.btnClear.Text = "Clear All Filters";
     this.btnClear.Visible = false;
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // cmbClient
     //
     this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbClient.Items.AddRange(new object[] {
     "January",
     "February",
     "March",
     "April",
     "May",
     "June",
     "July",
     "August",
     "September",
     "October",
     "November",
     "December"});
     this.cmbClient.Location = new System.Drawing.Point(277, 6);
     this.cmbClient.Name = "cmbClient";
     this.cmbClient.Size = new System.Drawing.Size(137, 29);
     this.cmbClient.TabIndex = 6;
     this.cmbClient.SelectedIndexChanged += new System.EventHandler(this.cmbClient_SelectedIndexChanged);
     //
     // lblClient
     //
     this.lblClient.AutoSize = true;
     this.lblClient.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblClient.Location = new System.Drawing.Point(212, 11);
     this.lblClient.Name = "lblClient";
     this.lblClient.Size = new System.Drawing.Size(59, 21);
     this.lblClient.TabIndex = 5;
     this.lblClient.Text = "Client";
     //
     // pnl_SpeedSearch
     //
     this.pnl_SpeedSearch.BackColor = System.Drawing.Color.Black;
     this.pnl_SpeedSearch.Controls.Add(this.pnl_SpeedSearch1);
     this.pnl_SpeedSearch.Location = new System.Drawing.Point(103, 412);
     this.pnl_SpeedSearch.Name = "pnl_SpeedSearch";
     this.pnl_SpeedSearch.Size = new System.Drawing.Size(306, 102);
     this.pnl_SpeedSearch.TabIndex = 42;
     this.pnl_SpeedSearch.Visible = false;
     //
     // pnl_SpeedSearch1
     //
     this.pnl_SpeedSearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(143)))), ((int)(((byte)(230)))));
     this.pnl_SpeedSearch1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnl_SpeedSearch1.Controls.Add(this.txt_SpeedSearch);
     this.pnl_SpeedSearch1.Controls.Add(this.label1);
     this.pnl_SpeedSearch1.Location = new System.Drawing.Point(7, 6);
     this.pnl_SpeedSearch1.Name = "pnl_SpeedSearch1";
     this.pnl_SpeedSearch1.Size = new System.Drawing.Size(294, 92);
     this.pnl_SpeedSearch1.TabIndex = 39;
     //
     // txt_SpeedSearch
     //
     this.txt_SpeedSearch.Location = new System.Drawing.Point(17, 41);
     this.txt_SpeedSearch.Name = "txt_SpeedSearch";
     this.txt_SpeedSearch.Size = new System.Drawing.Size(252, 27);
     this.txt_SpeedSearch.TabIndex = 10;
     this.txt_SpeedSearch.TextChanged += new System.EventHandler(this.txt_SpeedSearch_TextChanged);
     this.txt_SpeedSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyDown);
     this.txt_SpeedSearch.Leave += new System.EventHandler(this.txt_SpeedSearch_Leave);
     this.txt_SpeedSearch.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_SpeedSearch_KeyUp);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(89, 6);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(103, 19);
     this.label1.TabIndex = 0;
     this.label1.Text = "Fast Search";
     //
     // pnl_Find
     //
     this.pnl_Find.BackColor = System.Drawing.SystemColors.Window;
     this.pnl_Find.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pnl_Find.Controls.Add(this.panel1);
     this.pnl_Find.Controls.Add(this.txtSearch);
     this.pnl_Find.Controls.Add(this.chk_Anywhere);
     this.pnl_Find.Controls.Add(this.btn_Clear);
     this.pnl_Find.Controls.Add(this.btn_Find);
     this.pnl_Find.Controls.Add(this.lbl_Find);
     this.pnl_Find.Controls.Add(this.chk_AdvanceSearch);
     this.pnl_Find.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnl_Find.Location = new System.Drawing.Point(0, 0);
     this.pnl_Find.Name = "pnl_Find";
     this.pnl_Find.Size = new System.Drawing.Size(868, 128);
     this.pnl_Find.TabIndex = 28;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.Location = new System.Drawing.Point(582, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(282, 124);
     this.panel1.TabIndex = 10;
     //
     // pictureBox1
     //
     this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(282, 124);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // txtSearch
     //
     this.txtSearch.Location = new System.Drawing.Point(103, 25);
     this.txtSearch.Name = "txtSearch";
     this.txtSearch.Size = new System.Drawing.Size(473, 27);
     this.txtSearch.TabIndex = 9;
     this.txtSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearch_KeyDown);
     //
     // chk_Anywhere
     //
     this.chk_Anywhere.BackColor = System.Drawing.SystemColors.Window;
     this.chk_Anywhere.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_Anywhere.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Anywhere.Location = new System.Drawing.Point(336, 62);
     this.chk_Anywhere.Name = "chk_Anywhere";
     this.chk_Anywhere.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_Anywhere.Size = new System.Drawing.Size(247, 36);
     this.chk_Anywhere.TabIndex = 7;
     this.chk_Anywhere.Text = "Search Anywhere in Fields";
     this.chk_Anywhere.UseVisualStyleBackColor = false;
     //
     // btn_Clear
     //
     this.btn_Clear.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Clear.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Clear.Location = new System.Drawing.Point(592, 62);
     this.btn_Clear.Name = "btn_Clear";
     this.btn_Clear.Size = new System.Drawing.Size(120, 33);
     this.btn_Clear.TabIndex = 6;
     this.btn_Clear.Text = "Clear";
     this.btn_Clear.UseVisualStyleBackColor = false;
     this.btn_Clear.Click += new System.EventHandler(this.btn_Clear_Click);
     //
     // btn_Find
     //
     this.btn_Find.BackColor = System.Drawing.SystemColors.Control;
     this.btn_Find.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.btn_Find.Location = new System.Drawing.Point(592, 21);
     this.btn_Find.Name = "btn_Find";
     this.btn_Find.Size = new System.Drawing.Size(120, 33);
     this.btn_Find.TabIndex = 4;
     this.btn_Find.Text = "Find";
     this.btn_Find.UseVisualStyleBackColor = false;
     this.btn_Find.Click += new System.EventHandler(this.btn_Find_Click);
     //
     // lbl_Find
     //
     this.lbl_Find.AutoSize = true;
     this.lbl_Find.Location = new System.Drawing.Point(24, 27);
     this.lbl_Find.Name = "lbl_Find";
     this.lbl_Find.Size = new System.Drawing.Size(46, 21);
     this.lbl_Find.TabIndex = 0;
     this.lbl_Find.Text = " Find";
     //
     // chk_AdvanceSearch
     //
     this.chk_AdvanceSearch.BackColor = System.Drawing.SystemColors.Window;
     this.chk_AdvanceSearch.Checked = true;
     this.chk_AdvanceSearch.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chk_AdvanceSearch.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.chk_AdvanceSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_AdvanceSearch.Location = new System.Drawing.Point(103, 62);
     this.chk_AdvanceSearch.Name = "chk_AdvanceSearch";
     this.chk_AdvanceSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.chk_AdvanceSearch.Size = new System.Drawing.Size(178, 36);
     this.chk_AdvanceSearch.TabIndex = 8;
     this.chk_AdvanceSearch.Text = "Search All Fields";
     this.chk_AdvanceSearch.UseVisualStyleBackColor = false;
     //
     // imgContext
     //
     this.imgContext.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgContext.ImageStream")));
     this.imgContext.TransparentColor = System.Drawing.Color.Fuchsia;
     this.imgContext.Images.SetKeyName(0, "");
     this.imgContext.Images.SetKeyName(1, "");
     //
     // persistentRepository1
     //
     this.persistentRepository1.Items.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTextEdit1});
     //
     // repositoryItemTextEdit1
     //
     this.repositoryItemTextEdit1.AllowFocused = false;
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     //
     // frmEventBrw
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(8, 20);
     this.ClientSize = new System.Drawing.Size(868, 481);
     this.Controls.Add(this.pnlBody);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmEventBrw";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "frmEventBrw";
     this.Load += new System.EventHandler(this.frmEventBrw_Load);
     this.Resize += new System.EventHandler(this.frmEventBrw_Resize);
     this.pnlBody.ResumeLayout(false);
     this.pnlBrowse.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdEvent)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xpServerCollectionSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.session1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gvwEvent)).EndInit();
     this.pnlFilter.ResumeLayout(false);
     this.pnlFilterContainer.ResumeLayout(false);
     this.pnlFilterContainer.PerformLayout();
     this.pnl_SpeedSearch.ResumeLayout(false);
     this.pnl_SpeedSearch1.ResumeLayout(false);
     this.pnl_SpeedSearch1.PerformLayout();
     this.pnl_Find.ResumeLayout(false);
     this.pnl_Find.PerformLayout();
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #51
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();
 }
コード例 #52
0
 private void InitializeComponent()
 {
     this.splitContainerMain = new SplitContainer();
     this.OptionsTree = new GPGTreeView();
     this.splitContainerGridAndLabel = new SplitContainer();
     this.pgcProps = new PropertyGridControl();
     this.riComboBox = new RepositoryItemComboBox();
     this.repositoryItemColorEdit1 = new RepositoryItemColorEdit();
     this.repositoryItemTextEdit1 = new RepositoryItemTextEdit();
     this.repositoryItemLookUpEdit1 = new RepositoryItemLookUpEdit();
     this.repositoryItemComboBox1 = new RepositoryItemComboBox();
     this.repositoryItemTextEdit2 = new RepositoryItemTextEdit();
     this.editor_Color = new RepositoryItemColorEdit();
     this.repositoryItemTextEdit3 = new RepositoryItemTextEdit();
     this.gpgLabelDescription = new GPGLabel();
     this.splitContainerMain.Panel1.SuspendLayout();
     this.splitContainerMain.Panel2.SuspendLayout();
     this.splitContainerMain.SuspendLayout();
     this.splitContainerGridAndLabel.Panel1.SuspendLayout();
     this.splitContainerGridAndLabel.Panel2.SuspendLayout();
     this.splitContainerGridAndLabel.SuspendLayout();
     this.pgcProps.BeginInit();
     this.riComboBox.BeginInit();
     this.repositoryItemColorEdit1.BeginInit();
     this.repositoryItemTextEdit1.BeginInit();
     this.repositoryItemLookUpEdit1.BeginInit();
     this.repositoryItemComboBox1.BeginInit();
     this.repositoryItemTextEdit2.BeginInit();
     this.editor_Color.BeginInit();
     this.repositoryItemTextEdit3.BeginInit();
     base.SuspendLayout();
     this.splitContainerMain.BackColor = Color.FromArgb(0xcc, 0xcc, 0xff);
     this.splitContainerMain.Dock = DockStyle.Fill;
     this.splitContainerMain.Location = new Point(2, 2);
     this.splitContainerMain.Margin = new Padding(0);
     this.splitContainerMain.Name = "splitContainerMain";
     this.splitContainerMain.Panel1.Controls.Add(this.OptionsTree);
     this.splitContainerMain.Panel2.Controls.Add(this.splitContainerGridAndLabel);
     this.splitContainerMain.Size = new Size(0x1cf, 0x12f);
     this.splitContainerMain.SplitterDistance = 0x99;
     this.splitContainerMain.TabIndex = 1;
     this.OptionsTree.BackColor = Color.Black;
     this.OptionsTree.BorderStyle = BorderStyle.None;
     this.OptionsTree.Dock = DockStyle.Fill;
     this.OptionsTree.ForeColor = Color.White;
     this.OptionsTree.HideSelection = false;
     this.OptionsTree.Location = new Point(0, 0);
     this.OptionsTree.Margin = new Padding(0);
     this.OptionsTree.Name = "OptionsTree";
     this.OptionsTree.Size = new Size(0x99, 0x12f);
     this.OptionsTree.TabIndex = 0;
     this.splitContainerGridAndLabel.Dock = DockStyle.Fill;
     this.splitContainerGridAndLabel.Location = new Point(0, 0);
     this.splitContainerGridAndLabel.Name = "splitContainerGridAndLabel";
     this.splitContainerGridAndLabel.Orientation = Orientation.Horizontal;
     this.splitContainerGridAndLabel.Panel1.BackColor = Color.LightSteelBlue;
     this.splitContainerGridAndLabel.Panel1.Controls.Add(this.pgcProps);
     this.splitContainerGridAndLabel.Panel2.Controls.Add(this.gpgLabelDescription);
     this.splitContainerGridAndLabel.Size = new Size(0x132, 0x12f);
     this.splitContainerGridAndLabel.SplitterDistance = 0xe7;
     this.splitContainerGridAndLabel.SplitterWidth = 2;
     this.splitContainerGridAndLabel.TabIndex = 0;
     this.pgcProps.Appearance.Empty.BackColor = Color.LightSteelBlue;
     this.pgcProps.Appearance.Empty.Options.UseBackColor = true;
     this.pgcProps.AutoGenerateRows = true;
     this.pgcProps.BorderStyle = BorderStyles.NoBorder;
     this.pgcProps.DefaultEditors.AddRange(new DevExpress.XtraVerticalGrid.Rows.DefaultEditor[] { new DevExpress.XtraVerticalGrid.Rows.DefaultEditor(null, this.riComboBox), new DevExpress.XtraVerticalGrid.Rows.DefaultEditor(typeof(Color), this.repositoryItemColorEdit1) });
     this.pgcProps.Dock = DockStyle.Fill;
     this.pgcProps.Location = new Point(0, 0);
     this.pgcProps.LookAndFeel.SkinName = "Money Twins";
     this.pgcProps.LookAndFeel.UseDefaultLookAndFeel = false;
     this.pgcProps.Margin = new Padding(0);
     this.pgcProps.Name = "pgcProps";
     this.pgcProps.OptionsBehavior.UseEnterAsTab = true;
     this.pgcProps.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemTextEdit1, this.repositoryItemLookUpEdit1, this.repositoryItemComboBox1, this.riComboBox, this.repositoryItemTextEdit2, this.editor_Color, this.repositoryItemColorEdit1, this.repositoryItemTextEdit3 });
     this.pgcProps.Size = new Size(0x132, 0xe7);
     this.pgcProps.TabIndex = 4;
     this.pgcProps.RowChanging += new RowChangingEventHandler(this.pgcProps_RowChanging);
     this.riComboBox.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.riComboBox.Items.AddRange(new object[] { "None", "True", "False" });
     this.riComboBox.Name = "riComboBox";
     this.repositoryItemColorEdit1.AutoHeight = false;
     this.repositoryItemColorEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemColorEdit1.Name = "repositoryItemColorEdit1";
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     this.repositoryItemTextEdit2.Appearance.Options.UseTextOptions = true;
     this.repositoryItemTextEdit2.Appearance.TextOptions.HAlignment = HorzAlignment.Near;
     this.repositoryItemTextEdit2.AppearanceDisabled.Options.UseTextOptions = true;
     this.repositoryItemTextEdit2.AppearanceDisabled.TextOptions.HAlignment = HorzAlignment.Near;
     this.repositoryItemTextEdit2.AppearanceFocused.Options.UseTextOptions = true;
     this.repositoryItemTextEdit2.AppearanceFocused.TextOptions.HAlignment = HorzAlignment.Near;
     this.repositoryItemTextEdit2.AutoHeight = false;
     this.repositoryItemTextEdit2.DisplayFormat.FormatType = FormatType.Numeric;
     this.repositoryItemTextEdit2.EditFormat.FormatType = FormatType.Numeric;
     this.repositoryItemTextEdit2.HideSelection = false;
     this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
     this.editor_Color.AutoHeight = false;
     this.editor_Color.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.editor_Color.Name = "editor_Color";
     this.repositoryItemTextEdit3.AutoHeight = false;
     this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
     this.gpgLabelDescription.AutoStyle = false;
     this.gpgLabelDescription.BackColor = Color.LightSteelBlue;
     this.gpgLabelDescription.Dock = DockStyle.Fill;
     this.gpgLabelDescription.Font = new Font("Verdana", 8f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.gpgLabelDescription.ForeColor = Color.Black;
     this.gpgLabelDescription.IgnoreMouseWheel = false;
     this.gpgLabelDescription.IsStyled = false;
     this.gpgLabelDescription.Location = new Point(0, 0);
     this.gpgLabelDescription.Name = "gpgLabelDescription";
     this.gpgLabelDescription.Size = new Size(0x132, 70);
     this.gpgLabelDescription.TabIndex = 0;
     this.gpgLabelDescription.TextAlign = ContentAlignment.MiddleCenter;
     this.gpgLabelDescription.TextStyle = TextStyles.Default;
     base.AutoScaleDimensions = new SizeF(6f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     this.BackColor = Color.Black;
     base.Controls.Add(this.splitContainerMain);
     base.Margin = new Padding(0);
     base.Name = "GPGOptionsEditor";
     base.Padding = new Padding(2);
     base.Size = new Size(0x1d3, 0x133);
     this.splitContainerMain.Panel1.ResumeLayout(false);
     this.splitContainerMain.Panel2.ResumeLayout(false);
     this.splitContainerMain.ResumeLayout(false);
     this.splitContainerGridAndLabel.Panel1.ResumeLayout(false);
     this.splitContainerGridAndLabel.Panel2.ResumeLayout(false);
     this.splitContainerGridAndLabel.ResumeLayout(false);
     this.pgcProps.EndInit();
     this.riComboBox.EndInit();
     this.repositoryItemColorEdit1.EndInit();
     this.repositoryItemTextEdit1.EndInit();
     this.repositoryItemLookUpEdit1.EndInit();
     this.repositoryItemComboBox1.EndInit();
     this.repositoryItemTextEdit2.EndInit();
     this.editor_Color.EndInit();
     this.repositoryItemTextEdit3.EndInit();
     base.ResumeLayout(false);
 }
コード例 #53
0
ファイル: XtraGrid.cs プロジェクト: labeuze/source
        public static void SetGridColumnsDefaultEdit_txt(GridView view, GridColumn colGrid)
        {
            RepositoryItemTextEdit edit_txt;

            edit_txt = (RepositoryItemTextEdit)view.GridControl.RepositoryItems["PKT_Grid_DefaultEdit_txt"];
            if (edit_txt == null)
            {
                //if (gbTrace) cTrace.StartNestedLevel("Create_DefaultEdit_Txt");

                edit_txt = new RepositoryItemTextEdit();
                edit_txt.Name = "PKT_Grid_DefaultEdit_txt";
                ((System.ComponentModel.ISupportInitialize)edit_txt).BeginInit();
                view.GridControl.RepositoryItems.AddRange(new RepositoryItem[] { edit_txt });
                //edit_txt.AutoHeight = false;
                edit_txt.ParseEditValue += new ConvertEditValueEventHandler(DefaultTextEdit_ParseEditValue);
                ((System.ComponentModel.ISupportInitialize)edit_txt).EndInit();

                //if (gbTrace) cTrace.StopNestedLevel("Create_DefaultEdit_Txt");
            }

            //if (gbTrace) cTrace.StartNestedLevel("Set_DefaultEdit_Txt");
            colGrid.ColumnEdit = edit_txt;
            //if (gbTrace) cTrace.StopNestedLevel("Set_DefaultEdit_Txt");
        }
コード例 #54
0
ファイル: DlgAdhocSQL.cs プロジェクト: micheljung/gpgnetfix
 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();
 }
コード例 #55
0
        public void AddTextEditColumn(string sColumnNameReplace)
        {
            RepositoryItemTextEdit temp = new RepositoryItemTextEdit();
            temp.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Simple;
            temp.Mask.EditMask = "(000)000-00-00";
            grdPersonal.RepositoryItems.Add(temp);
            (grdPersonal.MainView as GridView).Columns.ColumnByFieldName(sColumnNameReplace).ColumnEdit = temp;

        }
コード例 #56
0
ファイル: ChatPanel.cs プロジェクト: micheljung/gpgnetfix
 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);
 }
コード例 #57
0
 private void InitializeComponent()
 {
     this.gpgDataGridVolunteers = new GPGDataGrid();
     this.gvChannels = new GridView();
     this.gcPlayerName = new GridColumn();
     this.gcEmail = new GridColumn();
     this.gcEffortName = new GridColumn();
     this.gcDays = new GridColumn();
     this.gcTimes = new GridColumn();
     this.gcDate = new GridColumn();
     this.repositoryItemComboBox1 = new RepositoryItemComboBox();
     this.repositoryItemTextEdit1 = new RepositoryItemTextEdit();
     this.gpgLabel1 = new GPGLabel();
     this.skinButtonRefresh = new SkinButton();
     this.gpgContextMenuChat = new GPGContextMenu();
     this.ciExport = new MenuItem();
     this.ciExport_PDF = new MenuItem();
     this.ciExport_HTML = new MenuItem();
     this.ciExport_Text = new MenuItem();
     this.ciExport_XLS = new MenuItem();
     this.ciChat_ViewPlayer = new MenuItem();
     ((ISupportInitialize) base.pbBottom).BeginInit();
     this.gpgDataGridVolunteers.BeginInit();
     this.gvChannels.BeginInit();
     this.repositoryItemComboBox1.BeginInit();
     this.repositoryItemTextEdit1.BeginInit();
     base.SuspendLayout();
     base.pbBottom.Size = new Size(0x20d, 0x39);
     base.ttDefault.SetSuperTip(base.pbBottom, null);
     base.ttDefault.DefaultController.AutoPopDelay = 0x3e8;
     base.ttDefault.DefaultController.ToolTipLocation = ToolTipLocation.RightTop;
     this.gpgDataGridVolunteers.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
     this.gpgDataGridVolunteers.CustomizeStyle = false;
     this.gpgDataGridVolunteers.EmbeddedNavigator.Name = "";
     this.gpgDataGridVolunteers.Location = new Point(12, 0x68);
     this.gpgDataGridVolunteers.LookAndFeel.SkinName = "London Liquid Sky";
     this.gpgDataGridVolunteers.LookAndFeel.UseDefaultLookAndFeel = false;
     this.gpgDataGridVolunteers.MainView = this.gvChannels;
     this.gpgDataGridVolunteers.Name = "gpgDataGridVolunteers";
     this.gpgDataGridVolunteers.RepositoryItems.AddRange(new RepositoryItem[] { this.repositoryItemComboBox1, this.repositoryItemTextEdit1 });
     this.gpgDataGridVolunteers.ShowOnlyPredefinedDetails = true;
     this.gpgDataGridVolunteers.Size = new Size(560, 0x13d);
     this.gpgDataGridVolunteers.TabIndex = 10;
     this.gpgDataGridVolunteers.ViewCollection.AddRange(new BaseView[] { this.gvChannels });
     this.gvChannels.Appearance.Empty.BackColor = Color.Black;
     this.gvChannels.Appearance.Empty.Options.UseBackColor = true;
     this.gvChannels.Appearance.EvenRow.BackColor = Color.Black;
     this.gvChannels.Appearance.EvenRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.FocusedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.FocusedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvChannels.Appearance.FocusedRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.FocusedRow.Options.UseFont = true;
     this.gvChannels.Appearance.HeaderPanel.BackColor = Color.Black;
     this.gvChannels.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.gvChannels.Appearance.HideSelectionRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.OddRow.BackColor = Color.FromArgb(0x40, 0x40, 0x40);
     this.gvChannels.Appearance.OddRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.Preview.BackColor = Color.Black;
     this.gvChannels.Appearance.Preview.Options.UseBackColor = true;
     this.gvChannels.Appearance.Row.BackColor = Color.Black;
     this.gvChannels.Appearance.Row.ForeColor = Color.White;
     this.gvChannels.Appearance.Row.Options.UseBackColor = true;
     this.gvChannels.Appearance.RowSeparator.BackColor = Color.Black;
     this.gvChannels.Appearance.RowSeparator.Options.UseBackColor = true;
     this.gvChannels.Appearance.SelectedRow.BackColor = Color.FromArgb(0xc0, 0xc0, 0xff);
     this.gvChannels.Appearance.SelectedRow.Font = new Font("Tahoma", 8.25f, FontStyle.Bold);
     this.gvChannels.Appearance.SelectedRow.Options.UseBackColor = true;
     this.gvChannels.Appearance.SelectedRow.Options.UseFont = true;
     this.gvChannels.AppearancePrint.Row.ForeColor = Color.White;
     this.gvChannels.AppearancePrint.Row.Options.UseForeColor = true;
     this.gvChannels.BestFitMaxRowCount = 1;
     this.gvChannels.BorderStyle = BorderStyles.NoBorder;
     this.gvChannels.ColumnPanelRowHeight = 30;
     this.gvChannels.Columns.AddRange(new GridColumn[] { this.gcPlayerName, this.gcEmail, this.gcEffortName, this.gcDays, this.gcTimes, this.gcDate });
     this.gvChannels.FocusRectStyle = DrawFocusRectStyle.None;
     this.gvChannels.GridControl = this.gpgDataGridVolunteers;
     this.gvChannels.GroupPanelText = "<LOC>Drag a column header here to group by that column.";
     this.gvChannels.Name = "gvChannels";
     this.gvChannels.OptionsBehavior.Editable = false;
     this.gvChannels.OptionsCustomization.AllowFilter = false;
     this.gvChannels.OptionsCustomization.AllowGroup = false;
     this.gvChannels.OptionsFilter.AllowFilterEditor = false;
     this.gvChannels.OptionsMenu.EnableColumnMenu = false;
     this.gvChannels.OptionsMenu.EnableFooterMenu = false;
     this.gvChannels.OptionsMenu.EnableGroupPanelMenu = false;
     this.gvChannels.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gvChannels.OptionsSelection.EnableAppearanceHideSelection = false;
     this.gvChannels.OptionsSelection.MultiSelect = true;
     this.gvChannels.OptionsView.EnableAppearanceEvenRow = true;
     this.gvChannels.OptionsView.EnableAppearanceOddRow = true;
     this.gvChannels.OptionsView.ShowFilterPanelMode = ShowFilterPanelMode.Never;
     this.gvChannels.OptionsView.ShowGroupPanel = false;
     this.gvChannels.OptionsView.ShowHorzLines = false;
     this.gvChannels.OptionsView.ShowIndicator = false;
     this.gvChannels.OptionsView.ShowVertLines = false;
     this.gvChannels.MouseDown += new MouseEventHandler(this.gvChannels_MouseDown);
     this.gvChannels.MouseUp += new MouseEventHandler(this.gvChannels_MouseUp);
     this.gcPlayerName.Caption = "Name";
     this.gcPlayerName.FieldName = "PlayerName";
     this.gcPlayerName.Name = "gcPlayerName";
     this.gcPlayerName.Visible = true;
     this.gcPlayerName.VisibleIndex = 0;
     this.gcEmail.Caption = "Email";
     this.gcEmail.FieldName = "Email";
     this.gcEmail.Name = "gcEmail";
     this.gcEmail.Visible = true;
     this.gcEmail.VisibleIndex = 1;
     this.gcEffortName.Caption = "Effort Description";
     this.gcEffortName.FieldName = "EffortDescription";
     this.gcEffortName.Name = "gcEffortName";
     this.gcEffortName.Visible = true;
     this.gcEffortName.VisibleIndex = 2;
     this.gcDays.Caption = "Available Days";
     this.gcDays.FieldName = "AvailableDays";
     this.gcDays.Name = "gcDays";
     this.gcDays.Visible = true;
     this.gcDays.VisibleIndex = 3;
     this.gcTimes.Caption = "Available Times";
     this.gcTimes.FieldName = "AvailableTimes";
     this.gcTimes.Name = "gcTimes";
     this.gcTimes.Visible = true;
     this.gcTimes.VisibleIndex = 4;
     this.gcDate.Caption = "Volunteer Date";
     this.gcDate.FieldName = "VolunteerDate";
     this.gcDate.Name = "gcDate";
     this.gcDate.Visible = true;
     this.gcDate.VisibleIndex = 5;
     this.repositoryItemComboBox1.AutoHeight = false;
     this.repositoryItemComboBox1.Buttons.AddRange(new EditorButton[] { new EditorButton(ButtonPredefines.Combo) });
     this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
     this.repositoryItemTextEdit1.AutoHeight = false;
     this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
     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(13, 0x52);
     this.gpgLabel1.Name = "gpgLabel1";
     this.gpgLabel1.Size = new Size(70, 0x10);
     base.ttDefault.SetSuperTip(this.gpgLabel1, null);
     this.gpgLabel1.TabIndex = 11;
     this.gpgLabel1.Text = "Volunteers";
     this.gpgLabel1.TextStyle = TextStyles.Header1;
     this.skinButtonRefresh.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     this.skinButtonRefresh.AutoStyle = true;
     this.skinButtonRefresh.BackColor = Color.Black;
     this.skinButtonRefresh.DialogResult = DialogResult.OK;
     this.skinButtonRefresh.DisabledForecolor = Color.Gray;
     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(0x1bf, 0x1b4);
     this.skinButtonRefresh.Name = "skinButtonRefresh";
     this.skinButtonRefresh.Size = new Size(0x7d, 0x1a);
     this.skinButtonRefresh.SkinBasePath = @"Controls\Button\Round Edge";
     base.ttDefault.SetSuperTip(this.skinButtonRefresh, null);
     this.skinButtonRefresh.TabIndex = 12;
     this.skinButtonRefresh.Text = "Refresh";
     this.skinButtonRefresh.TextAlign = ContentAlignment.MiddleCenter;
     this.skinButtonRefresh.TextPadding = new Padding(0);
     this.skinButtonRefresh.Click += new EventHandler(this.skinButtonRefresh_Click);
     this.gpgContextMenuChat.MenuItems.AddRange(new MenuItem[] { this.ciExport, this.ciChat_ViewPlayer });
     this.ciExport.Index = 0;
     this.ciExport.MenuItems.AddRange(new MenuItem[] { this.ciExport_PDF, this.ciExport_HTML, this.ciExport_Text, this.ciExport_XLS });
     this.ciExport.Text = "<LOC>Export";
     this.ciExport_PDF.Index = 0;
     this.ciExport_PDF.Text = "<LOC>To PDF";
     this.ciExport_PDF.Click += new EventHandler(this.ciExport_PDF_Click);
     this.ciExport_HTML.Index = 1;
     this.ciExport_HTML.Text = "<LOC>To HTML";
     this.ciExport_HTML.Click += new EventHandler(this.ciExport_HTML_Click);
     this.ciExport_Text.Index = 2;
     this.ciExport_Text.Text = "<LOC>To Text";
     this.ciExport_Text.Click += new EventHandler(this.ciExport_Text_Click);
     this.ciExport_XLS.Index = 3;
     this.ciExport_XLS.Text = "<LOC>To XLS";
     this.ciExport_XLS.Click += new EventHandler(this.ciExport_XLS_Click);
     this.ciChat_ViewPlayer.Index = 1;
     this.ciChat_ViewPlayer.Text = "<LOC>View this player's profile";
     this.ciChat_ViewPlayer.Click += new EventHandler(this.ciChat_ViewPlayer_Click);
     base.AutoScaleDimensions = new SizeF(7f, 13f);
     base.AutoScaleMode = AutoScaleMode.Font;
     base.ClientSize = new Size(0x248, 0x20d);
     base.Controls.Add(this.skinButtonRefresh);
     base.Controls.Add(this.gpgLabel1);
     base.Controls.Add(this.gpgDataGridVolunteers);
     this.Font = new Font("Verdana", 8f);
     base.Location = new Point(0, 0);
     base.Name = "DlgViewVolunteers";
     base.ttDefault.SetSuperTip(this, null);
     this.Text = "View Volunteers";
     base.Controls.SetChildIndex(this.gpgDataGridVolunteers, 0);
     base.Controls.SetChildIndex(this.gpgLabel1, 0);
     base.Controls.SetChildIndex(this.skinButtonRefresh, 0);
     ((ISupportInitialize) base.pbBottom).EndInit();
     this.gpgDataGridVolunteers.EndInit();
     this.gvChannels.EndInit();
     this.repositoryItemComboBox1.EndInit();
     this.repositoryItemTextEdit1.EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
コード例 #58
0
ファイル: WfBox.cs プロジェクト: vanloc0301/mychongchong
 protected RepositoryItem GetDefaultColumnEdit()
 {
     if (this.txtrs_edit == null)
     {
         this.txtrs_edit = new RepositoryItemTextEdit();
         this.txtrs_edit.DoubleClick += new EventHandler(this.ViewDoubleClick);
         this.txtrs_edit.KeyDown += new KeyEventHandler(this.EnterKeyDown);
         if (LoggingService.IsInfoEnabled)
         {
             LoggingService.Info("初始化编缉器,它承载双击与键盘事件");
         }
     }
     return this.txtrs_edit;
 }
コード例 #59
0
ファイル: sysMenuView.cs プロジェクト: JodenSoft/JodenSoft
        void grvParams_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e)
        {
            if (e.Column.FieldName != "Value") return;

            var dr = this.grvParams.GetDataRow(e.RowHandle) as DataRow;
            int iControlType = 0;
            int.TryParse(dr["ControlType"].ToStringEx(), out iControlType);
            var controlType = (ViewParameterControlType)iControlType;

            RepositoryItem item = new RepositoryItemTextEdit();
            switch (controlType)
            {
                case ViewParameterControlType.CheckEdit:
                    var temp = new RepositoryItemCheckEdit() { AllowGrayed = false };
                    item = temp;
                    break;
                case ViewParameterControlType.ComboboxEdit:
                    item = new RepositoryItemGridSearchEdit();
                    break;
                case ViewParameterControlType.FloatEdit:
                    item = new RepositoryItemSpinEdit() { IsFloatValue = true };
                    break;
                case ViewParameterControlType.IntEdit:
                    item = new RepositoryItemSpinEdit() { IsFloatValue = false };
                    break;
                case ViewParameterControlType.RichTextEdit:
                    item = new RepositoryItemMemoExEdit() { ShowIcon = false };
                    break;
                case ViewParameterControlType.TextEdit:
                    item = new RepositoryItemTextEdit();
                    break;
                default:
                    item = new RepositoryItemTextEdit();
                    break;
            }
            e.RepositoryItem = item;
        }
コード例 #60
0
        void filterControl1_BeforeShowValueEditor(object sender, DevExpress.XtraEditors.Filtering.ShowValueEditorEventArgs e)
        {
            if (e.CurrentNode.FirstOperand.PropertyName == BIEN_MUC.DOI_TUONG_KHAN_GIA)
            {
                DataTable dt = HelpDB.getDBService().LoadDataSet(
                    string.Format("SELECT * from {0}", DMDoiTuongKG.TABLE_MAP)).Tables[0];

                RepositoryItemCheckedComboBoxEdit checkDoiTuongKhanGia = new RepositoryItemCheckedComboBoxEdit();
                checkDoiTuongKhanGia.DataSource = dt;
                checkDoiTuongKhanGia.DisplayMember = "NAME";
                checkDoiTuongKhanGia.ValueMember = "NAME";
                e.CustomRepositoryItem = checkDoiTuongKhanGia;
            }
            else if (e.CurrentNode.FirstOperand.PropertyName == BIEN_MUC.TU_KHOA)
            {
                RepositoryItemCheckedComboBoxEdit checkTuKhoa = new RepositoryItemCheckedComboBoxEdit();
                checkTuKhoa.DataSource = HelpDB.getDBService().LoadDataSet(
                    string.Format("SELECT * from {0}", DMTuKhoa.TABLE_MAP)).Tables[0];
                checkTuKhoa.DisplayMember = "NAME";
                checkTuKhoa.ValueMember = "NAME";
                e.CustomRepositoryItem = checkTuKhoa;
            }
            else if (e.CurrentNode.FirstOperand.PropertyName == BIEN_MUC.NUOC_SAN_XUAT)
            {
                RepositoryItemCheckedComboBoxEdit checkNuocSanXuat = new RepositoryItemCheckedComboBoxEdit();
                checkNuocSanXuat.DataSource = HelpDB.getDBService().LoadDataSet(
                    string.Format("SELECT * from {0}", DMNuocSanXuat.TABLE_MAP)).Tables[0];
                checkNuocSanXuat.DisplayMember = "NAME";
                checkNuocSanXuat.ValueMember = "NAME";
                e.CustomRepositoryItem = checkNuocSanXuat;
            }
            else if (e.CurrentNode.FirstOperand.PropertyName == BIEN_MUC.NOI_DUNG)
            {
                PLRepositoryTextEditAutocomplete re = new PLRepositoryTextEditAutocomplete();
                re._Init(BIEN_MUC.TABLE_NAME, BIEN_MUC.NOI_DUNG, BIEN_MUC.IS_DELETE + "='N'");
                e.CustomRepositoryItem = re;
            }
            else if (e.CurrentNode.FirstOperand.PropertyName == BIEN_MUC.THOI_LUONG)
            {
                RepositoryItemTextEdit timeCode = new RepositoryItemTextEdit();
                timeCode.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic;
                timeCode.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))";
                timeCode.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx;
                timeCode.Properties.Mask.ShowPlaceHolders = true;

                e.CustomRepositoryItem = timeCode;
            }
        }