/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.panelBottom = new System.Windows.Forms.Panel();
			this.grid = new SourceGrid.Grid();
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.mnWindow = new System.Windows.Forms.MenuItem();
			this.panelBottom.SuspendLayout();
			this.SuspendLayout();
			// 
			// panelBottom
			// 
			this.panelBottom.BackColor = System.Drawing.SystemColors.ControlDark;
			this.panelBottom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panelBottom.Controls.Add(this.grid);
			this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.panelBottom.Location = new System.Drawing.Point(0, 342);
			this.panelBottom.Name = "panelBottom";
			this.panelBottom.Size = new System.Drawing.Size(772, 128);
			this.panelBottom.TabIndex = 1;
			// 
			// grid
			// 
			this.grid.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.grid.AutoStretchColumnsToFitWidth = false;
			this.grid.AutoStretchRowsToFitHeight = false;
			this.grid.BackColor = System.Drawing.SystemColors.Window;
			this.grid.CustomSort = false;
			this.grid.Location = new System.Drawing.Point(0, 4);
			this.grid.Name = "grid";
			this.grid.OverrideCommonCmdKey = true;
			this.grid.Size = new System.Drawing.Size(768, 120);
			this.grid.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
			this.grid.TabIndex = 0;
			// 
			// mainMenu1
			// 
			this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					  this.mnWindow});
			// 
			// mnWindow
			// 
			this.mnWindow.Index = 0;
			this.mnWindow.Text = "Window";
			// 
			// frmSample25
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(772, 470);
			this.Controls.Add(this.panelBottom);
			this.IsMdiContainer = true;
			this.Menu = this.mainMenu1;
			this.Name = "frmSample25";
			this.Text = "frmSample25";
			this.Load += new System.EventHandler(this.frmSample25_Load);
			this.panelBottom.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Example #2
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.grid = new SourceGrid.Grid();
            this.SuspendLayout();
            // 
            // grid
            // 
            this.grid.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.grid.AutoStretchColumnsToFitWidth = false;
            this.grid.AutoStretchRowsToFitHeight = false;
            this.grid.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.grid.CustomSort = false;
            this.grid.Location = new System.Drawing.Point(12, 12);
            this.grid.Name = "grid";
            this.grid.Size = new System.Drawing.Size(516, 368);
            this.grid.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
            this.grid.TabIndex = 0;
            // 
            // frmSample3
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(540, 391);
            this.Controls.Add(this.grid);
            this.Name = "frmSample3";
            this.Text = "Cell Editors, Specials Cells, Formatting and Image";
            this.ResumeLayout(false);

        }
Example #3
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.Location    = new System.Drawing.Point(12, 12);
     this.grid1.Mirrored    = true;
     this.grid1.Name        = "grid1";
     this.grid1.Size        = new System.Drawing.Size(268, 247);
     this.grid1.SpecialKeys = ((SourceGrid.GridSpecialKeys)(((((((SourceGrid.GridSpecialKeys.Arrows | SourceGrid.GridSpecialKeys.Tab)
                                                                 | SourceGrid.GridSpecialKeys.PageDownUp)
                                                                | SourceGrid.GridSpecialKeys.Enter)
                                                               | SourceGrid.GridSpecialKeys.Escape)
                                                              | SourceGrid.GridSpecialKeys.Control)
                                                             | SourceGrid.GridSpecialKeys.Shift)));
     this.grid1.TabIndex = 0;
     //
     // frmSample44
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 271);
     this.Controls.Add(this.grid1);
     this.Name              = "frmSample44";
     this.RightToLeft       = System.Windows.Forms.RightToLeft.Yes;
     this.RightToLeftLayout = true;
     this.Text              = "Basic Grid";
     this.Load             += new System.EventHandler(this.frmSample14_Load);
     this.ResumeLayout(false);
 }
Example #4
0
                public override void OnValueChanged(SourceGrid.CellContext sender, EventArgs e)
                {
                    base.OnValueChanged(sender, e);

                    SHQuest quest = (SHQuest)sender.Grid.Tag;

                    if (quest == null)
                    {
                        return;
                    }

                    int selectedRow = sender.Position.Row;

                    SourceGrid.Grid grid = (sender.Grid as SourceGrid.Grid);

                    SHQuestReward reward = (SHQuestReward)(grid.Rows[selectedRow].Tag);

                    if (sender.Position.Column == 0)
                    {
                        reward.type = (SHQuestRewardType)sender.Value;
                    }
                    else if (sender.Position.Column == 1)
                    {
                        reward.param1 = (string)sender.Value;
                    }
                    else if (sender.Position.Column == 2)
                    {
                        reward.param2 = (string)sender.Value;
                    }

                    m_GridController.RefreshPropertyGrid(selectedRow);

                    Global._VelixianForms.FindForm("QUEST").Touch();
                }
Example #5
0
        public override void GridInsertRow <T>(
            SourceGrid.Grid grid,
            T item,
            Func <T, Color, Base.Grid.GridCellController> newCellController = null,
            int Index = -1)
        {
            int index = Index < 0 ? grid.RowsCount : Index;

            grid.Rows.Insert(index);
            grid.Rows[index].Tag = item;

            Type itemType = item.GetType();

            if (itemType == typeof(PortInfo))
            {
                PortInfo portInfo = item as PortInfo;
                SourceGrid.Cells.Controllers.IController CellController = newCellController(item, Color.LightBlue);
                grid[index, 0] = newCell(portInfo, portInfo.Port, CellController);
                grid[index, 1] = newCell(portInfo, portInfo.ProtocolType, CellController);
                grid[index, 2] = newCell(portInfo, portInfo.isOpen, CellController);
                return;
            }

            {
                SourceGrid.Cells.Controllers.IController CellController = newCellController(item, Color.LightBlue);
                grid[index, 0] = newCell(item, item, CellController);
            }
        }
Example #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid
     //
     this.grid.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.grid.AutoStretchColumnsToFitWidth = false;
     this.grid.AutoStretchRowsToFitHeight   = false;
     this.grid.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.grid.CustomSort  = false;
     this.grid.Location    = new System.Drawing.Point(12, 12);
     this.grid.Name        = "grid";
     this.grid.Size        = new System.Drawing.Size(516, 368);
     this.grid.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid.TabIndex    = 0;
     //
     // frmSample3
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(540, 391);
     this.Controls.Add(this.grid);
     this.Name = "frmSample3";
     this.Text = "Cell Editors, Specials Cells, Formatting and Image";
     this.ResumeLayout(false);
 }
Example #7
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.grid1 = new SourceGrid.Grid();
            this.SuspendLayout();
            //
            // grid1
            //
            this.grid1.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.grid1.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
            this.grid1.Name          = "grid1";
            this.grid1.OptimizeMode  = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size          = new System.Drawing.Size(432, 365);
            this.grid1.TabIndex      = 0;
            this.grid1.TabStop       = true;
            this.grid1.ToolTipText   = "";

            //
            // frmSample17
            //
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize        = new System.Drawing.Size(440, 371);
            this.Controls.Add(this.grid1);
            this.Name  = "frmSample17";
            this.Text  = "Missing middle rows";
            this.Load += new System.EventHandler(this.frmSample17_Load);
            this.ResumeLayout(false);
        }
Example #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSample19));
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.AutoStretchColumnsToFitWidth = false;
     this.grid1.AutoStretchRowsToFitHeight   = false;
     this.grid1.CustomSort = false;
     this.grid1.Location   = new System.Drawing.Point(12, 8);
     this.grid1.Name       = "grid1";
     this.grid1.Size       = new System.Drawing.Size(264, 256);
     this.grid1.TabIndex   = 0;
     //
     // frmSample19
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 271);
     this.Controls.Add(this.grid1);
     this.Name  = "frmSample19";
     this.Text  = "GridBackGround";
     this.Load += new System.EventHandler(this.frmSample19_Load);
     this.ResumeLayout(false);
 }
Example #9
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelBottom = new System.Windows.Forms.Panel();
     this.grid        = new SourceGrid.Grid();
     this.mainMenu1   = new System.Windows.Forms.MainMenu();
     this.mnWindow    = new System.Windows.Forms.MenuItem();
     this.panelBottom.SuspendLayout();
     this.SuspendLayout();
     //
     // panelBottom
     //
     this.panelBottom.BackColor   = System.Drawing.SystemColors.ControlDark;
     this.panelBottom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelBottom.Controls.Add(this.grid);
     this.panelBottom.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelBottom.Location = new System.Drawing.Point(0, 342);
     this.panelBottom.Name     = "panelBottom";
     this.panelBottom.Size     = new System.Drawing.Size(772, 128);
     this.panelBottom.TabIndex = 1;
     //
     // grid
     //
     this.grid.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.grid.AutoStretchColumnsToFitWidth = false;
     this.grid.AutoStretchRowsToFitHeight   = false;
     this.grid.BackColor            = System.Drawing.SystemColors.Window;
     this.grid.CustomSort           = false;
     this.grid.Location             = new System.Drawing.Point(0, 4);
     this.grid.Name                 = "grid";
     this.grid.OverrideCommonCmdKey = true;
     this.grid.Size                 = new System.Drawing.Size(768, 120);
     this.grid.SpecialKeys          = SourceGrid.GridSpecialKeys.Default;
     this.grid.TabIndex             = 0;
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnWindow
     });
     //
     // mnWindow
     //
     this.mnWindow.Index = 0;
     this.mnWindow.Text  = "Window";
     //
     // frmSample25
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(772, 470);
     this.Controls.Add(this.panelBottom);
     this.IsMdiContainer = true;
     this.Menu           = this.mainMenu1;
     this.Name           = "frmSample25";
     this.Text           = "frmSample25";
     this.Load          += new System.EventHandler(this.frmSample25_Load);
     this.panelBottom.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #10
0
        private void AddOneRow(SourceGrid.Grid grid, int r, string c1, string c2, bool isHead)
        {
            try
            {
                //int rowCount = grid.RowsCount;
                //grid.Redim(rowCount + 1, 2);

                grid[r, 0]      = new SourceGrid.Cells.Cell(c1, typeof(string));
                grid[r, 0].View = isHead ? headerView : cellView;
                if (isHead)
                {
                    grid[r, 1]      = new SourceGrid.Cells.Cell(c2, typeof(string));
                    grid[r, 1].View = headerView;
                }
                else
                {
                    bool isCheck = c2 == "on" ? true : false;
                    grid[r, 1]      = new SourceGrid.Cells.CheckBox(null, isCheck);
                    grid[r, 1].View = checkView;
                }
                //grid.Refresh();
            }
            catch (System.Exception ex)
            {
                Program.log.Error(ex, ex);
            }
        }
        private void onSelChangeGrid(object sender, SourceGrid.RangeRegionChangedEventArgs e)
        {
            try
            {
                SourceGrid.Selection.RowSelection select = sender as SourceGrid.Selection.RowSelection;
                SourceGrid.Grid g = select.Grid as SourceGrid.Grid;

                SourceGrid.RangeRegion region = g.Selection.GetSelectionRegion();
                int[] indexes = region.GetRowsIndex();
                if (indexes.Length < 1 || indexes[0] < 1)
                {
                    _selectedAnalysis = null;
                }
                else
                {
                    _selectedAnalysis = _analyses[indexes[0] - 1];
                    // analysis name/description
                    if (null != _selectedAnalysis)
                    {
                        BoxProperties  box  = SelectedBox;
                        PackProperties pack = _selectedAnalysis.Content as PackProperties;
                        UpdateStatus(string.Empty);
                    }
                }

                graphCtrlPack.Invalidate();
                graphCtrlSolution.Invalidate();
            }
            catch (Exception ex)
            {
                _log.Error(ex.Message);
            }
        }
Example #12
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSample19));
			this.grid1 = new SourceGrid.Grid();
			this.SuspendLayout();
			// 
			// grid1
			// 
			this.grid1.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.grid1.AutoStretchColumnsToFitWidth = false;
			this.grid1.AutoStretchRowsToFitHeight = false;
			this.grid1.CustomSort = false;
			this.grid1.Location = new System.Drawing.Point(12, 8);
			this.grid1.Name = "grid1";
			this.grid1.Size = new System.Drawing.Size(264, 256);
			this.grid1.TabIndex = 0;
			// 
			// frmSample19
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 271);
			this.Controls.Add(this.grid1);
			this.Name = "frmSample19";
			this.Text = "GridBackGround";
			this.Load += new System.EventHandler(this.frmSample19_Load);
			this.ResumeLayout(false);

		}
Example #13
0
        public void GridBindData(SourceGrid.Grid urlGrid)
        {
            urlGrid.Rows.Clear();
            urlGrid.Rows.Insert(0);

            urlGrid[0, 0] = new SourceGrid.Cells.ColumnHeader("URL");
            urlGrid[0, 1] = new SourceGrid.Cells.ColumnHeader("Sync\nPosition");
            urlGrid[0, 2] = new SourceGrid.Cells.ColumnHeader("Sync\nScreenshots");

            int r = 1;

            foreach (SyncURL syncURL in _settings.syncURLs)
            {
                urlGrid.Rows.Insert(r);
                urlGrid[r, 0]        = new SourceGrid.Cells.Cell(syncURL.URL, typeof(string));
                urlGrid[r, 0].Editor = null;
                urlGrid[r, 1]        = new SourceGrid.Cells.CheckBox(null, syncURL.syncPosition);
                urlGrid[r, 1].Editor = null;
                urlGrid[r, 2]        = new SourceGrid.Cells.CheckBox(null, syncURL.syncScreenshot);
                urlGrid[r, 2].Editor = null;
                urlGrid[r, 3]        = new SourceGrid.Cells.Button("Edit");
                urlGrid[r, 3].Editor = null;
                urlGrid[r, 3].AddController(gridEditEvent);
                urlGrid[r, 4]        = new SourceGrid.Cells.Button("Delete");
                urlGrid[r, 4].Editor = null;
                urlGrid[r, 4].AddController(gridDeleteEvent);

                urlGrid[r, 5] = new SourceGrid.Cells.Cell(syncURL.id, typeof(string));

                r++;
            }

            urlGrid.AutoSizeCells();
        }
Example #14
0
 public QuestRewardController(SourceGrid.Grid grid, PropertyGrid propertyGrid, TextBox tbDialog, TextBox tbRewarder)
 {
     m_Grid         = grid;
     m_PropertyGrid = propertyGrid;
     m_tbDialog     = tbDialog;
     m_tbRewarder   = tbRewarder;
 }
Example #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.GridToolTipActive = true;
     this.grid1.Location          = new System.Drawing.Point(8, 8);
     this.grid1.Name        = "grid1";
     this.grid1.Size        = new System.Drawing.Size(548, 159);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.StyleGrid   = null;
     this.grid1.TabIndex    = 0;
     //
     // frmSample40
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(564, 174);
     this.Controls.Add(this.grid1);
     this.Name = "frmSample40";
     this.Text = "SubGrid and scrolling features";
     this.ResumeLayout(false);
 }
Example #16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.GridToolTipActive = true;
     this.grid1.Location          = new System.Drawing.Point(8, 16);
     this.grid1.Name        = "grid1";
     this.grid1.Size        = new System.Drawing.Size(280, 240);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.StyleGrid   = null;
     this.grid1.TabIndex    = 0;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 266);
     this.Controls.Add(this.grid1);
     this.Name  = "Form1";
     this.Text  = "Form1";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ResumeLayout(false);
 }
Example #17
0
        void updateGrid(SourceGrid.Grid grid)
        {
            foreach (SourceGrid.GridRow row in grid.Rows)
            {
                var node = row.Tag as NodeTable;
                if (node != null)
                {
                    GenTable tb = node.Item;

                    if (tb.TableName.ToUpper().StartsWith("VW"))
                    {
                        ToString();
                    }

                    int r = row.Index;
                    tb.CheckEnum();
                    grid[r, Col.SchemaName].Value        = tb.SchemaName;
                    grid[r, Col.TableName].Value         = tb.TableName;
                    grid[r, Col.DataClassName].Value     = tb.DataClassName;
                    grid[r, Col.BusinessClassName].Value = tb.BusinessClassName;
                    grid[r, Col.EnumColumnName].Value    = tb.EnumColumnName;
                    grid[r, Col.EnumColumnId].Value      = tb.EnumColumnId;
                    grid[r, Col.EnumName].Value          = tb.EnumName;
                    grid[r, Col.EnumAttributes].Value    = tb.EnumAttributes;
                    grid[r, Col.SequenceColumn].Value    = tb.SequenceColumn;
                    grid[r, Col.SequenceName].Value      = tb.SequenceName;
                    grid[r, Col.Attributes].Value        = tb.Attributes;
                    //grid[r, 5].Value = tb.SubDirectory;
                }
            }
            grid.AutoSizeCells();
        }
Example #18
0
        void updateGrid(SourceGrid.Grid grid)
        {
            foreach (SourceGrid.GridRow row in grid.Rows)
            {
                var node = row.Tag as NodeTable;
                if (node != null)
                {
                    GenTable tb = node.Item;

                    if (tb.TableName.ToUpper().StartsWith("VW"))
                    {
                        ToString();
                    }

                    int r = row.Index;
                    if (tb.TableName == "AddressType")
                    {
                        ToString();
                    }
                    tb.CheckEnum();
                    grid[r, 0].Value = tb.SchemaName;
                    grid[r, 1].Value = tb.TableName;
                    grid[r, 2].Value = tb.DataClassName;
                    grid[r, 3].Value = tb.BusinessClassName;
                    grid[r, 4].Value = tb.EnumColumnName;
                    grid[r, 5].Value = tb.EnumColumnId;
                    grid[r, 6].Value = tb.EnumName;
                    grid[r, 7].Value = tb.SequenceColumn;
                    grid[r, 8].Value = tb.SequenceName;
                    grid[r, 9].Value = tb.DataAnnotation;
                    //grid[r, 5].Value = tb.SubDirectory;
                }
            }
            grid.AutoSizeCells();
        }
        /// <summary>
        /// 刪除一個儲存格的點字。
        /// </summary>
        private void DeleteCell(SourceGrid.Grid grid, int row, int col)
        {
            // 防錯:如果不是有效的儲存格位置就直接返回。
            if (!CheckCellPosition(row, col))
            {
                return;
            }

            row = GetBrailleRowIndex(row);
            int         lineIdx = GetBrailleLineIndex(row);
            int         wordIdx = GetBrailleWordIndex(row, col);
            BrailleLine brLine  = m_BrDoc.Lines[lineIdx];

            if (brLine.Words.Count == 1)    // 如果要刪除該列的最後一個字,就整列刪除。
            {
                DeleteLine(grid, row, col, false);
                return;
            }

            brLine.Words.RemoveAt(wordIdx);
            IsDirty = true;

            // Update UI
            ReformatRow(row);
            grid.Selection.ResetSelection(false); // 修正選取的儲存格範圍。
            SourceGrid.Position pos = new SourceGrid.Position(row, col);
            grid.Selection.Focus(pos, true);
        }
        /// <summary>
        /// 在指定的列之前插入一列。
        /// </summary>
        private void InsertLine(SourceGrid.Grid grid, int row, int col)
        {
            // 防錯:如果不是有效的儲存格位置就直接返回。
            if (!CheckCellPosition(row, col))
            {
                return;
            }

            // 建立一列新的點字列,其中預設包含一個空方。
            BrailleLine brLine = new BrailleLine();

            brLine.Words.Add(BrailleWord.NewBlank());

            row = GetBrailleRowIndex(row);
            int lineIdx = GetBrailleLineIndex(row);

            m_BrDoc.Lines.Insert(lineIdx, brLine);
            IsDirty = true;

            // 更新 UI。
            GridInsertRowAt(row);
            RefreshRowNumbers();
            FillRow(brLine, row, true);

            // 將焦點移至新插入的那一列的第一個儲存格。
            GridFocusCell(new SourceGrid.Position(row, brGrid.FixedColumns), true);
        }
Example #21
0
        string parseString(SourceGrid.Grid grid, int r, int c)
        {
            object value = ((SourceGrid.Cells.Cell)grid.GetCell(r, c)).Value;
            string val   = Conv.Trim(value);

            return(string.IsNullOrEmpty(val) ? null : val);
        }
Example #22
0
        private void OnSelChangeGrid(object sender, EventArgs e)
        {
            try
            {
                SourceGrid.Selection.RowSelection select = sender as SourceGrid.Selection.RowSelection;
                SourceGrid.Grid g = select.Grid as SourceGrid.Grid;

                SourceGrid.RangeRegion region = g.Selection.GetSelectionRegion();
                int[] indexes = region.GetRowsIndex();
                if (indexes.Length < 1 || indexes[0] < 1)
                {
                    _selectedItem = null;
                }
                else
                {
                    int iSel = indexes[0] - 1;
                    if (g == gridPallets)
                    {
                        _selectedItem = _pallets[iSel];
                    }
                }
                graphCtrl.Invalidate();
            }
            catch (Exception ex)
            {
                _log.Error(ex.Message);
            }
        }
Example #23
0
        public virtual System.Int32 Compare(System.Object x, System.Object y)
        {
            int ret = m_defaultComparer.Compare(x, y);

            if (ret == 0)
            {
                SourceGrid.Grid grid = ((SourceGrid.Cells.ICell)x).Grid;
                int             rowX = ((SourceGrid.Cells.ICell)x).Range.Start.Row;
                int             rowY = ((SourceGrid.Cells.ICell)y).Range.Start.Row;


                int indexOrder = 0;
                while (indexOrder < m_SecondarySortColumns.Length)
                {
                    SourceGrid.Cells.ICellVirtual otherX = grid.GetCell(rowX, m_SecondarySortColumns[indexOrder]);
                    SourceGrid.Cells.ICellVirtual otherY = grid.GetCell(rowY, m_SecondarySortColumns[indexOrder]);

                    int subRet = m_defaultComparer.Compare(otherX, otherY);
                    if (subRet != 0)
                    {
                        return(subRet);
                    }

                    indexOrder++;
                }

                return(0);
            }
            else
            {
                return(ret);
            }
        }
Example #24
0
        public static void RecordStep(SourceGrid.Grid grid, string step)
        {
            int rows = grid.RowsCount;

            grid.Rows.Insert(rows);
            grid[rows, 0] = new SourceGrid.Cells.Cell(step);
        }
Example #25
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.grid1 = new SourceGrid.Grid();
			this.SuspendLayout();
			// 
			// grid1
			// 
			this.grid1.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.grid1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.grid1.Name = "grid1";
			this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
			this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
			this.grid1.Size = new System.Drawing.Size(432, 365);
			this.grid1.TabIndex = 0;
			this.grid1.TabStop = true;
			this.grid1.ToolTipText = "";

			// 
			// frmSample17
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(440, 371);
			this.Controls.Add(this.grid1);
			this.Name = "frmSample17";
			this.Text = "Missing middle rows";
			this.Load += new System.EventHandler(this.frmSample17_Load);
			this.ResumeLayout(false);
	
		}
Example #26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.GridToolTipActive = true;
     this.grid1.Location          = new System.Drawing.Point(8, 8);
     this.grid1.Name        = "grid1";
     this.grid1.Size        = new System.Drawing.Size(612, 423);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.StyleGrid   = null;
     this.grid1.TabIndex    = 0;
     //
     // frmSample21
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(628, 438);
     this.Controls.Add(this.grid1);
     this.Name  = "frmSample21";
     this.Text  = "ColumnSpan and RowSpan";
     this.Load += new System.EventHandler(this.frmSample14_Load);
     this.ResumeLayout(false);
 }
Example #27
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.grid1 = new SourceGrid.Grid();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.Location = new System.Drawing.Point(12, 12);
            this.grid1.Mirrored = true;
            this.grid1.Name = "grid1";
            this.grid1.Size = new System.Drawing.Size(268, 247);
            this.grid1.SpecialKeys = ((SourceGrid.GridSpecialKeys)(((((((SourceGrid.GridSpecialKeys.Arrows | SourceGrid.GridSpecialKeys.Tab)
                        | SourceGrid.GridSpecialKeys.PageDownUp)
                        | SourceGrid.GridSpecialKeys.Enter)
                        | SourceGrid.GridSpecialKeys.Escape)
                        | SourceGrid.GridSpecialKeys.Control)
                        | SourceGrid.GridSpecialKeys.Shift)));
            this.grid1.TabIndex = 0;
            // 
            // frmSample44
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(292, 271);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample44";
            this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.RightToLeftLayout = true;
            this.Text = "Basic Grid";
            this.Load += new System.EventHandler(this.frmSample14_Load);
            this.ResumeLayout(false);

		}
Example #28
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.grid1 = new SourceGrid.Grid();
			this.SuspendLayout();
			// 
			// grid1
			// 
			this.grid1.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.grid1.Location = new System.Drawing.Point(8, 8);
			this.grid1.Name = "grid1";
			this.grid1.Size = new System.Drawing.Size(276, 256);
			this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
			this.grid1.TabIndex = 0;
			// 
			// frmSample14
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 271);
			this.Controls.Add(this.grid1);
			this.Name = "frmSample14";
			this.Text = "Basic Grid";
			this.Load += new System.EventHandler(this.frmSample14_Load);
			this.ResumeLayout(false);

		}
        private void ImportAllChannelsSettingsFormHandler()
        {
            if (importAllChannelsSettingsFormHandlerProcessing)
            {
                return;
            }
            importAllChannelsSettingsFormHandlerProcessing = true;

            AnyControlTester gridTester = new AnyControlTester("grid", "SettingsForm");

            SourceGrid.Grid grid = (SourceGrid.Grid)gridTester.Control;

            ButtonTester addButton    = new ButtonTester("addButton", "SettingsForm");
            ButtonTester removeButton = new ButtonTester("removeButton", "SettingsForm");
            ButtonTester okButton     = new ButtonTester("okButton", "SettingsForm");

            Assert.AreEqual(1, grid.RowsCount);             //Header row only
            int row_count = grid.RowsCount;

            ExpectModal("ImportOPCForm", "ImportAllChannelsImportFormHandler");

            addButton.Click();

            Assert.Greater(grid.RowsCount, row_count);
            row_count = grid.RowsCount;

            removeButton.Click();

            Assert.AreEqual(row_count - 1, grid.RowsCount);           //Remove one row

            okButton.Click();

            importAllChannelsSettingsFormHandlerProcessing = false;
        }
Example #30
0
        public void GridFill <T>(
            SourceGrid.Grid grid,
            List <T> List,
            Func <T, Color, GridCellController> newCellController = null,
            List <KeyValuePair <string, IComparer> > Fields       = null)
        {
            grid.Columns.Clear();
            grid.Rows.Clear();

            List <KeyValuePair <string, IComparer> > fields = Fields ?? new List <KeyValuePair <String, IComparer> >()
            {
                new KeyValuePair <string, IComparer>("Undefined", null)
            };

            //Columns filling
            grid.ColumnsCount = fields.Count;
            grid.FixedRows    = 1;
            grid.Rows.Insert(0);
            for (int i = 0; i < (fields.Count); i++)
            {
                SourceGrid.Cells.ColumnHeader ColumnHeader = new SourceGrid.Cells.ColumnHeader(fields[i].Key)
                {
                    SortComparer = fields[i].Value
                };
                grid[0, i] = ColumnHeader;
            }

            //Data filling
            GridUpdateOrInsertRows(grid, List, newCellController);
        }
        /// <summary>
        /// 新增點字。
        /// </summary>
        /// <param name="grid">來源 grid。</param>
        /// <param name="row">儲存格的列索引。</param>
        /// <param name="col">儲存格的行索引。</param>
        private void InsertCell(SourceGrid.Grid grid, int row, int col)
        {
            if (!CheckCellPosition(row, col))
            {
                return;
            }

            EditCellForm form = new EditCellForm();

            form.Mode = EditCellMode.Insert;
            if (form.ShowDialog() == DialogResult.OK)
            {
                int         wordIdx = GetBrailleWordIndex(row, col);
                int         lineIdx = GetBrailleLineIndex(row);
                BrailleLine brLine  = m_BrDoc.Lines[lineIdx];

                // 在第 wordIdx 個字之前插入新點字。
                brLine.Words.Insert(wordIdx, form.BrailleWord);
                IsDirty = true;

                // Update UI
                ReformatRow(row);
                SourceGrid.Position pos = new SourceGrid.Position(row, col + 1);
                grid.Selection.Focus(pos, true);    // 修正選取的儲存格範圍。
            }
        }
Example #32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // grid1
     //
     this.grid1.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.grid1.Location    = new System.Drawing.Point(8, 8);
     this.grid1.Name        = "grid1";
     this.grid1.Size        = new System.Drawing.Size(276, 256);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.TabIndex    = 0;
     //
     // frmSample14
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 271);
     this.Controls.Add(this.grid1);
     this.Name  = "frmSample14";
     this.Text  = "Basic Grid";
     this.Load += new System.EventHandler(this.frmSample14_Load);
     this.ResumeLayout(false);
 }
Example #33
0
 void addHeader(SourceGrid.Grid grid, int col, string text, int minWidth)
 {
     SourceGrid.Cells.ColumnHeader header;
     grid[0, col] = header = new SourceGrid.Cells.ColumnHeader(text);
     header.Column.MinimalWidth = minWidth;
     header.Column.Width        = minWidth;
     header.View = headerView;
 }
Example #34
0
 void TabControl1SelectedIndexChanged(object sender, EventArgs e)
 {
     if (tabControl1.SelectedIndex != -1)
     {
         textEditorControl1 = (TextEditorControl)tabControl1.SelectedTab.Controls[0];
         grid1 = (SourceGrid.Grid)tabControl1.SelectedTab.Controls[2];
     }
 }
        /// <summary>
        /// 修改儲存格。
        /// </summary>
        /// <param name="grid">來源 grid。</param>
        /// <param name="row">儲存格的列索引。</param>
        /// <param name="col">儲存格的行索引。</param>
        void EditCell(SourceGrid.Grid grid, int row, int col)
        {
            /* NOTE
             * 每當儲存格內容有變動時,需考慮以下情況:
             *
             * 1. 修改了明眼字。此情況的變化比較大,例如:把原本的英數字 "123"
             *    中間的 "2" 改成中文字。碰到這種情況,相鄰的 "3" 的點字也會受
             *    到影響,必須重新產生才行。但重新產生整份文件的點字又會造成其
             *    他已經修改過的部份得再修改一次,因此,碰到這種英數字改成中文
             *    字的情況,程式還是不自動修正相鄰的點字,而由使用者自行以修改
             *    點字(接著的第 3 種情況)的功能來修正此問題。
             * 2. 只修改點字的注音碼。此種情況可能使新的點字方數增加或減少,
             *    因此必須重新斷行,並將點字重新添入 Grid。若方數不變,或沒有
             *    超過每列最大方數,就不要重新斷行,以節省處理時間。
             * 3. 修改點字。這種情況只需比對新舊點字的方數,若有差異,則要重新
             *    斷行。
             *
             * 第 1 種情況可能會包含後面兩種情況,第 2 種可能包含第 3 種情況,
             * 但是不會包含第 1 種情況。同理,第 3 種情況也不會包含第 1 或第 2
             * 種情況。
             */

            if (row < 0 || col < 0) // 防錯:如果不是有效的儲存格位置就直接返回。
            {
                return;
            }

            BrailleWord brWord = (BrailleWord)grid[row, col].Tag;

            EditCellForm form = new EditCellForm();

            form.Mode        = EditCellMode.Edit;
            form.BrailleWord = brWord;
            if (form.ShowDialog() == DialogResult.OK)
            {
                // 判斷新的跟原本的點字,以得知是屬於哪一種修改情況。
                CellChangedType cellChgType = CellChangedType.None;
                if (!brWord.Text.Equals(form.BrailleWord.Text))
                {
                    cellChgType = CellChangedType.Text;
                }
                else if (!brWord.PhoneticCode.Equals(form.BrailleWord.PhoneticCode))
                {
                    cellChgType = CellChangedType.Phonetic;
                }
                else if (!brWord.CellList.Equals(form.BrailleWord.CellList))
                {
                    cellChgType = CellChangedType.Braille;
                }

                if (cellChgType != CellChangedType.None)
                {
                    brWord.Copy(form.BrailleWord);
                    GridCellChanged(row, col, brWord, cellChgType);
                    IsDirty = true;
                }
            }
        }
Example #36
0
        public virtual void GridUpdateRow(SourceGrid.Grid grid, object item, int Index)
        {
            grid.Rows[Index].Tag = item;
            Type itemType = item.GetType();

            {
                grid[Index, 0].Value = item;
            }
        }
Example #37
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.grid1 = new SourceGrid.Grid();
            this.label1 = new System.Windows.Forms.Label();
            this.lblKeyDown = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.Location = new System.Drawing.Point(12, 31);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(364, 210);
            this.grid1.TabIndex = 0;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(56, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "KeyDown:";
            // 
            // lblKeyDown
            // 
            this.lblKeyDown.AutoSize = true;
            this.lblKeyDown.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblKeyDown.Location = new System.Drawing.Point(71, 9);
            this.lblKeyDown.Name = "lblKeyDown";
            this.lblKeyDown.Size = new System.Drawing.Size(11, 13);
            this.lblKeyDown.TabIndex = 2;
            this.lblKeyDown.Text = ".";
            // 
            // frmSample26
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(388, 253);
            this.Controls.Add(this.lblKeyDown);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample26";
            this.Text = "Controllers (ContextMenu, ToolTip, ...)";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

		}
Example #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.grid1 = new SourceGrid.Grid();
            this.propertyGrid1 = new System.Windows.Forms.PropertyGrid();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.Location = new System.Drawing.Point(270, 12);
            this.grid1.Name = "grid1";
            this.grid1.Size = new System.Drawing.Size(328, 275);
            this.grid1.SpecialKeys = ((SourceGrid.GridSpecialKeys)(((((((SourceGrid.GridSpecialKeys.Arrows | SourceGrid.GridSpecialKeys.Tab)
                        | SourceGrid.GridSpecialKeys.PageDownUp)
                        | SourceGrid.GridSpecialKeys.Enter)
                        | SourceGrid.GridSpecialKeys.Escape)
                        | SourceGrid.GridSpecialKeys.Control)
                        | SourceGrid.GridSpecialKeys.Shift)));
            this.grid1.TabIndex = 0;
            // 
            // propertyGrid1
            // 
            this.propertyGrid1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.propertyGrid1.Location = new System.Drawing.Point(12, 8);
            this.propertyGrid1.Name = "propertyGrid1";
            this.propertyGrid1.SelectedObject = this.grid1;
            this.propertyGrid1.Size = new System.Drawing.Size(252, 279);
            this.propertyGrid1.TabIndex = 1;
            // 
            // frmSample14
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(610, 299);
            this.Controls.Add(this.propertyGrid1);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample46";
            this.Text = "Basic Grid";
            this.Load += new System.EventHandler(this.frmSample46_Load);
            this.ResumeLayout(false);

		}
        public ColumnSelection(Object obj, ColumnInfo[] columnInfos,string p)
        {
            InitializeComponent();
            // TODO: Complete member initialization
            this.p = p;
            this.obj = obj;
            this.columnInfos = columnInfos;

            if (p.Equals("alert"))
            {
                this.grid = ((Alerts)this.obj).alertGrid;
                this.columnMap = ApplicationConfig.Instance().AlertColumnSetting;
            }
            if (p.Equals("device")){
                 this.grid = ((Device)this.obj).deviceGrid;
                 this.columnMap = ApplicationConfig.Instance().DeviceColumnSetting;

            }
        }
Example #40
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.grid = new SourceGrid.Grid();
			this.button1 = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// grid
			// 
			this.grid.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.grid.Location = new System.Drawing.Point(8, 40);
			this.grid.Name = "grid";
			this.grid.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
			this.grid.SelectionMode = SourceGrid.GridSelectionMode.Cell;
			this.grid.Size = new System.Drawing.Size(276, 224);
			this.grid.TabIndex = 0;
			this.grid.TabStop = true;
			this.grid.ToolTipText = "";
			// 
			// button1
			// 
			this.button1.Location = new System.Drawing.Point(8, 7);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(99, 27);
			this.button1.TabIndex = 1;
			this.button1.Text = "Print";
			this.button1.UseVisualStyleBackColor = true;
			this.button1.Click += new System.EventHandler(this.PrintButtonClick);
			// 
			// frmSample52
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 271);
			this.Controls.Add(this.button1);
			this.Controls.Add(this.grid);
			this.Name = "frmSample52";
			this.Text = "Printing Grid";
			this.Load += new System.EventHandler(this.frmSample14_Load);
			this.ResumeLayout(false);
		}
Example #41
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.grid1 = new SourceGrid.Grid();
			this.label1 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// grid1
			// 
			this.grid1.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.grid1.Location = new System.Drawing.Point(8, 40);
			this.grid1.Name = "grid1";
			this.grid1.Size = new System.Drawing.Size(276, 224);
			this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
			this.grid1.TabIndex = 0;
			// 
			// label1
			// 
			this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.label1.Location = new System.Drawing.Point(8, 4);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(276, 32);
			this.label1.TabIndex = 1;
			this.label1.Text = "Left click on the headers to sort, right click to edit.";
			// 
			// frmSample42
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(292, 271);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.grid1);
			this.Name = "frmSample42";
			this.Text = "Editable headers";
			this.ResumeLayout(false);

		}
Example #42
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.brAddRow = new System.Windows.Forms.Button();
            this.btRemoveRow = new System.Windows.Forms.Button();
            this.grid1 = new SourceGrid.Grid();
            this.btMoveColumn = new System.Windows.Forms.Button();
            this.btMoveRow = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.btExportHTML = new System.Windows.Forms.Button();
            this.chkReadOnly = new System.Windows.Forms.CheckBox();
            this.chkEditOnDoubleClick = new System.Windows.Forms.CheckBox();
            this.btExportCsv = new System.Windows.Forms.Button();
            this.btExportImage = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // brAddRow
            // 
            this.brAddRow.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.brAddRow.Location = new System.Drawing.Point(8, 8);
            this.brAddRow.Name = "brAddRow";
            this.brAddRow.Size = new System.Drawing.Size(84, 23);
            this.brAddRow.TabIndex = 1;
            this.brAddRow.Text = "AddRow";
            this.brAddRow.Click += new System.EventHandler(this.brAddRow_Click);
            // 
            // btRemoveRow
            // 
            this.btRemoveRow.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btRemoveRow.Location = new System.Drawing.Point(96, 8);
            this.btRemoveRow.Name = "btRemoveRow";
            this.btRemoveRow.Size = new System.Drawing.Size(84, 23);
            this.btRemoveRow.TabIndex = 2;
            this.btRemoveRow.Text = "RemoveRow";
            this.btRemoveRow.Click += new System.EventHandler(this.btRemoveRow_Click);
            // 
            // grid1
            // 
            this.grid1.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.grid1.BackColor = System.Drawing.Color.White;
            this.grid1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.grid1.Location = new System.Drawing.Point(8, 37);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(751, 312);
            this.grid1.TabIndex = 1;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // btMoveColumn
            // 
            this.btMoveColumn.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btMoveColumn.Location = new System.Drawing.Point(300, 8);
            this.btMoveColumn.Name = "btMoveColumn";
            this.btMoveColumn.Size = new System.Drawing.Size(84, 23);
            this.btMoveColumn.TabIndex = 4;
            this.btMoveColumn.Text = "Move Column";
            this.btMoveColumn.Click += new System.EventHandler(this.btMoveColumn_Click);
            // 
            // btMoveRow
            // 
            this.btMoveRow.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btMoveRow.Location = new System.Drawing.Point(208, 8);
            this.btMoveRow.Name = "btMoveRow";
            this.btMoveRow.Size = new System.Drawing.Size(84, 23);
            this.btMoveRow.TabIndex = 5;
            this.btMoveRow.Text = "Move Row";
            this.btMoveRow.Click += new System.EventHandler(this.btMoveRow_Click);
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label1.Location = new System.Drawing.Point(8, 368);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(192, 23);
            this.label1.TabIndex = 6;
            this.label1.Text = "Click column header to sort the grid";
            // 
            // btExportHTML
            // 
            this.btExportHTML.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btExportHTML.Location = new System.Drawing.Point(416, 8);
            this.btExportHTML.Name = "btExportHTML";
            this.btExportHTML.Size = new System.Drawing.Size(84, 23);
            this.btExportHTML.TabIndex = 7;
            this.btExportHTML.Text = "&Export HTML";
            this.btExportHTML.Click += new System.EventHandler(this.btExportHTML_Click);
            // 
            // chkReadOnly
            // 
            this.chkReadOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.chkReadOnly.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.chkReadOnly.Location = new System.Drawing.Point(624, 355);
            this.chkReadOnly.Name = "chkReadOnly";
            this.chkReadOnly.Size = new System.Drawing.Size(128, 20);
            this.chkReadOnly.TabIndex = 8;
            this.chkReadOnly.Text = "Read Only Cells";
            this.chkReadOnly.CheckedChanged += new System.EventHandler(this.chkReadOnly_CheckedChanged);
            // 
            // chkEditOnDoubleClick
            // 
            this.chkEditOnDoubleClick.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.chkEditOnDoubleClick.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.chkEditOnDoubleClick.Location = new System.Drawing.Point(624, 371);
            this.chkEditOnDoubleClick.Name = "chkEditOnDoubleClick";
            this.chkEditOnDoubleClick.Size = new System.Drawing.Size(128, 20);
            this.chkEditOnDoubleClick.TabIndex = 9;
            this.chkEditOnDoubleClick.Text = "Edit On Double Click";
            this.chkEditOnDoubleClick.CheckedChanged += new System.EventHandler(this.chkEditOnDoubleClick_CheckedChanged);
            // 
            // btExportCsv
            // 
            this.btExportCsv.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btExportCsv.Location = new System.Drawing.Point(506, 8);
            this.btExportCsv.Name = "btExportCsv";
            this.btExportCsv.Size = new System.Drawing.Size(84, 23);
            this.btExportCsv.TabIndex = 13;
            this.btExportCsv.Text = "Export CSV";
            this.btExportCsv.Click += new System.EventHandler(this.btExportCsv_Click);
            // 
            // btExportImage
            // 
            this.btExportImage.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btExportImage.Location = new System.Drawing.Point(596, 8);
            this.btExportImage.Name = "btExportImage";
            this.btExportImage.Size = new System.Drawing.Size(84, 23);
            this.btExportImage.TabIndex = 14;
            this.btExportImage.Text = "Export Image";
            this.btExportImage.Click += new System.EventHandler(this.btExportImage_Click);
            // 
            // frmSample1
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(764, 395);
            this.Controls.Add(this.grid1);
            this.Controls.Add(this.btExportImage);
            this.Controls.Add(this.chkEditOnDoubleClick);
            this.Controls.Add(this.chkReadOnly);
            this.Controls.Add(this.btExportCsv);
            this.Controls.Add(this.btExportHTML);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.btMoveRow);
            this.Controls.Add(this.btMoveColumn);
            this.Controls.Add(this.btRemoveRow);
            this.Controls.Add(this.brAddRow);
            this.Name = "frmSample1";
            this.Text = "Sample Grid 1";
            this.Load += new System.EventHandler(this.frmSampleGrid1_Load);
            this.ResumeLayout(false);

		}
Example #43
0
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSample55));
            this.grid1 = new SourceGrid.Grid();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripButtonBold = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonItalic = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonUnderline = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonSuperScript = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonNormalScript = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonSubScript = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonLeft = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonCenter = new System.Windows.Forms.ToolStripButton();
            this.toolStripButtonRight = new System.Windows.Forms.ToolStripButton();
            this.toolStripSplitButtonForegroundColor = new System.Windows.Forms.ToolStripSplitButton();
            this.toolStripSplitButtonBackgroundColor = new System.Windows.Forms.ToolStripSplitButton();
            this.colorDialogForegroundColor = new System.Windows.Forms.ColorDialog();
            this.colorDialogBackgroundColor = new System.Windows.Forms.ColorDialog();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.EnableSort = true;
            this.grid1.Location = new System.Drawing.Point(14, 29);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(574, 289);
            this.grid1.TabIndex = 0;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripButtonBold,
            this.toolStripButtonItalic,
            this.toolStripButtonUnderline,
            this.toolStripButtonSuperScript,
            this.toolStripButtonNormalScript,
            this.toolStripButtonSubScript,
            this.toolStripButtonLeft,
            this.toolStripButtonCenter,
            this.toolStripButtonRight,
            this.toolStripSplitButtonForegroundColor,
            this.toolStripSplitButtonBackgroundColor});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(598, 25);
            this.toolStrip1.TabIndex = 1;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolStripButtonBold
            // 
            this.toolStripButtonBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonBold.Image = global::WindowsFormsSample.Properties.Resources.text_bold;
            this.toolStripButtonBold.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonBold.Name = "toolStripButtonBold";
            this.toolStripButtonBold.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonBold.Text = "Bold";
            this.toolStripButtonBold.Click += new System.EventHandler(this.toolStripButtonBold_Click);
            // 
            // toolStripButtonItalic
            // 
            this.toolStripButtonItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonItalic.Image = global::WindowsFormsSample.Properties.Resources.text_italic;
            this.toolStripButtonItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonItalic.Name = "toolStripButtonItalic";
            this.toolStripButtonItalic.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonItalic.Text = "Italic";
            this.toolStripButtonItalic.Click += new System.EventHandler(this.toolStripButtonItalic_Click);
            // 
            // toolStripButtonUnderline
            // 
            this.toolStripButtonUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonUnderline.Image = global::WindowsFormsSample.Properties.Resources.text_underline;
            this.toolStripButtonUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonUnderline.Name = "toolStripButtonUnderline";
            this.toolStripButtonUnderline.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonUnderline.Text = "Underline";
            this.toolStripButtonUnderline.Click += new System.EventHandler(this.toolStripButtonUnderline_Click);
            // 
            // toolStripButtonSuperScript
            // 
            this.toolStripButtonSuperScript.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonSuperScript.Image = global::WindowsFormsSample.Properties.Resources.text_superscript;
            this.toolStripButtonSuperScript.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonSuperScript.Name = "toolStripButtonSuperScript";
            this.toolStripButtonSuperScript.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonSuperScript.Text = "SuperScript";
            this.toolStripButtonSuperScript.Click += new System.EventHandler(this.toolStripButtonSuperScript_Click);
            // 
            // toolStripButtonNormalScript
            // 
            this.toolStripButtonNormalScript.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonNormalScript.Image = global::WindowsFormsSample.Properties.Resources.text_normalscript;
            this.toolStripButtonNormalScript.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonNormalScript.Name = "toolStripButtonNormalScript";
            this.toolStripButtonNormalScript.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonNormalScript.Text = "NormalScript";
            this.toolStripButtonNormalScript.Click += new System.EventHandler(this.toolStripButtonNormalScript_Click);
            // 
            // toolStripButtonSubScript
            // 
            this.toolStripButtonSubScript.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonSubScript.Image = global::WindowsFormsSample.Properties.Resources.text_subscript;
            this.toolStripButtonSubScript.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonSubScript.Name = "toolStripButtonSubScript";
            this.toolStripButtonSubScript.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonSubScript.Text = "SubScript";
            this.toolStripButtonSubScript.Click += new System.EventHandler(this.toolStripButtonSubScript_Click);
            // 
            // toolStripButtonLeft
            // 
            this.toolStripButtonLeft.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonLeft.Image = global::WindowsFormsSample.Properties.Resources.text_align_left;
            this.toolStripButtonLeft.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonLeft.Name = "toolStripButtonLeft";
            this.toolStripButtonLeft.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonLeft.Text = "Left";
            this.toolStripButtonLeft.Click += new System.EventHandler(this.toolStripButtonLeft_Click);
            // 
            // toolStripButtonCenter
            // 
            this.toolStripButtonCenter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonCenter.Image = global::WindowsFormsSample.Properties.Resources.text_align_center;
            this.toolStripButtonCenter.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonCenter.Name = "toolStripButtonCenter";
            this.toolStripButtonCenter.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonCenter.Text = "Center";
            this.toolStripButtonCenter.Click += new System.EventHandler(this.toolStripButtonCenter_Click);
            // 
            // toolStripButtonRight
            // 
            this.toolStripButtonRight.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButtonRight.Image = global::WindowsFormsSample.Properties.Resources.text_align_right;
            this.toolStripButtonRight.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButtonRight.Name = "toolStripButtonRight";
            this.toolStripButtonRight.Size = new System.Drawing.Size(23, 22);
            this.toolStripButtonRight.Text = "Right";
            this.toolStripButtonRight.Click += new System.EventHandler(this.toolStripButtonRight_Click);
            // 
            // toolStripButtonForegroundColor
            // 
            this.toolStripSplitButtonForegroundColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButtonForegroundColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButtonForegroundColor.Image = CreateForegroundImgPicture();
            this.toolStripSplitButtonForegroundColor.Name = "toolStripButtonForegroundColor";
            this.toolStripSplitButtonForegroundColor.Size = new System.Drawing.Size(23, 22);
            this.toolStripSplitButtonForegroundColor.Text = "ForegroundColor";
            this.toolStripSplitButtonForegroundColor.Click += new System.EventHandler(this.toolStripButtonForegroundColor_Click);
            this.toolStripSplitButtonForegroundColor.DropDownOpening += toolStripSplitButtonForegroundColorPicker_Show;
            // 
            // toolStripButtonBackgroundColor
            // 
            this.toolStripSplitButtonBackgroundColor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButtonBackgroundColor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButtonBackgroundColor.Image = CreateBackgroundImgPicture();
            this.toolStripSplitButtonBackgroundColor.Name = "toolStripButtonBackgroundColor";
            this.toolStripSplitButtonBackgroundColor.Size = new System.Drawing.Size(23, 22);
            this.toolStripSplitButtonBackgroundColor.Text = "BackgroundColor";
            this.toolStripSplitButtonBackgroundColor.Click += new System.EventHandler(this.toolStripButtonBackgroundColor_Click);
            this.toolStripSplitButtonBackgroundColor.DropDownOpening += toolStripSplitButtonBackgroundColorPicker_Show;
            // 
            // frmSample55
            // 
            this.ClientSize = new System.Drawing.Size(300, 300);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.grid1);
            this.Text = "RichText support";
            this.Name = "frmSample55";
            this.Load += new System.EventHandler(this.InitializeGrid);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.lstMailingSchool = new System.Windows.Forms.ListView();
            this.numEcole = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.mailEcole = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.libelleEcole = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.villeEcole = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.btnSendMail = new System.Windows.Forms.Button();
            this.chkSelectAll = new System.Windows.Forms.CheckBox();
            this.rchTextMail = new System.Windows.Forms.RichTextBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.openFile = new System.Windows.Forms.OpenFileDialog();
            this.txtObjet = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.txtResult = new System.Windows.Forms.TextBox();
            this.cmbNbDest = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.cmbFilter = new System.Windows.Forms.ComboBox();
            this.label3 = new System.Windows.Forms.Label();
            this.lblNbSchools = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.lbl1 = new System.Windows.Forms.Label();
            this.cmbListDoc = new System.Windows.Forms.ComboBox();
            this.lblErreur = new System.Windows.Forms.Label();
            lstDocuments = new SourceGrid.Grid();
            this.groupBox6.SuspendLayout();
            this.SuspendLayout();
            // 
            // lstMailingSchool
            // 
            this.lstMailingSchool.CheckBoxes = true;
            this.lstMailingSchool.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.numEcole,
            this.mailEcole,
            this.libelleEcole,
            this.villeEcole});
            this.lstMailingSchool.FullRowSelect = true;
            this.lstMailingSchool.GridLines = true;
            this.lstMailingSchool.Location = new System.Drawing.Point(13, 30);
            this.lstMailingSchool.Name = "lstMailingSchool";
            this.lstMailingSchool.Size = new System.Drawing.Size(697, 280);
            this.lstMailingSchool.TabIndex = 2;
            this.lstMailingSchool.UseCompatibleStateImageBehavior = false;
            this.lstMailingSchool.View = System.Windows.Forms.View.Details;
            this.lstMailingSchool.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lstMailingSchool_ColumnClick);
            // 
            // numEcole
            // 
            this.numEcole.Tag = "numEcole";
            this.numEcole.Text = "N°";
            // 
            // mailEcole
            // 
            this.mailEcole.Tag = "mailEcole";
            this.mailEcole.Text = "Mail";
            this.mailEcole.Width = 203;
            // 
            // libelleEcole
            // 
            this.libelleEcole.Tag = "libelleEcole";
            this.libelleEcole.Text = "Nom Ecole";
            this.libelleEcole.Width = 290;
            // 
            // villeEcole
            // 
            this.villeEcole.Tag = "villeEcole";
            this.villeEcole.Text = "Ville";
            this.villeEcole.Width = 196;
            // 
            // btnSendMail
            // 
            this.btnSendMail.Location = new System.Drawing.Point(316, 557);
            this.btnSendMail.Name = "btnSendMail";
            this.btnSendMail.Size = new System.Drawing.Size(114, 23);
            this.btnSendMail.TabIndex = 8;
            this.btnSendMail.Text = "Envoyer...";
            this.btnSendMail.UseVisualStyleBackColor = true;
            this.btnSendMail.Click += new System.EventHandler(this.btnSendMail_Click);
            // 
            // chkSelectAll
            // 
            this.chkSelectAll.Appearance = System.Windows.Forms.Appearance.Button;
            this.chkSelectAll.AutoSize = true;
            this.chkSelectAll.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.chkSelectAll.Location = new System.Drawing.Point(13, 343);
            this.chkSelectAll.Name = "chkSelectAll";
            this.chkSelectAll.Size = new System.Drawing.Size(101, 23);
            this.chkSelectAll.TabIndex = 4;
            this.chkSelectAll.Text = "Tout Sélectionner";
            this.chkSelectAll.UseVisualStyleBackColor = true;
            this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
            // 
            // rchTextMail
            // 
            this.rchTextMail.AcceptsTab = true;
            this.rchTextMail.Location = new System.Drawing.Point(13, 373);
            this.rchTextMail.Name = "rchTextMail";
            this.rchTextMail.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
            this.rchTextMail.Size = new System.Drawing.Size(697, 171);
            this.rchTextMail.TabIndex = 6;
            this.rchTextMail.Text = "";
            // 
            // groupBox6
            // 
            this.groupBox6.Controls.Add(lstDocuments);
            this.groupBox6.Location = new System.Drawing.Point(727, 13);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(296, 161);
            this.groupBox6.TabIndex = 5;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Pièces jointes";
            // 
            // lstDocuments
            // 
            lstDocuments.EnableSort = false;
            lstDocuments.Location = new System.Drawing.Point(21, 17);
            lstDocuments.Name = "lstDocuments";
            lstDocuments.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            lstDocuments.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            lstDocuments.Size = new System.Drawing.Size(266, 120);
            lstDocuments.TabIndex = 3;
            lstDocuments.TabStop = true;
            lstDocuments.ToolTipText = "";
            lstDocuments.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lstDocuments_MouseClick);
            // 
            // txtObjet
            // 
            this.txtObjet.Location = new System.Drawing.Point(222, 345);
            this.txtObjet.Name = "txtObjet";
            this.txtObjet.Size = new System.Drawing.Size(488, 20);
            this.txtObjet.TabIndex = 5;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(184, 348);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(32, 13);
            this.label1.TabIndex = 7;
            this.label1.Text = "Objet";
            // 
            // txtResult
            // 
            this.txtResult.Location = new System.Drawing.Point(727, 204);
            this.txtResult.Multiline = true;
            this.txtResult.Name = "txtResult";
            this.txtResult.ReadOnly = true;
            this.txtResult.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.txtResult.Size = new System.Drawing.Size(296, 340);
            this.txtResult.TabIndex = 8;
            // 
            // cmbNbDest
            // 
            this.cmbNbDest.FormattingEnabled = true;
            this.cmbNbDest.Items.AddRange(new object[] {
            "1",
            "2",
            "5",
            "10",
            "20",
            "30",
            "50",
            "70",
            "100"});
            this.cmbNbDest.Location = new System.Drawing.Point(512, 559);
            this.cmbNbDest.Name = "cmbNbDest";
            this.cmbNbDest.Size = new System.Drawing.Size(121, 21);
            this.cmbNbDest.TabIndex = 7;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(433, 562);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(73, 13);
            this.label2.TabIndex = 10;
            this.label2.Text = "par paquet de";
            // 
            // cmbFilter
            // 
            this.cmbFilter.FormattingEnabled = true;
            this.cmbFilter.Location = new System.Drawing.Point(61, 3);
            this.cmbFilter.Name = "cmbFilter";
            this.cmbFilter.Size = new System.Drawing.Size(175, 21);
            this.cmbFilter.TabIndex = 1;
            this.cmbFilter.SelectedIndexChanged += new System.EventHandler(this.cmbFilter_SelectedIndexChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(12, 6);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(43, 13);
            this.label3.TabIndex = 12;
            this.label3.Text = "Afficher";
            // 
            // lblNbSchools
            // 
            this.lblNbSchools.AutoSize = true;
            this.lblNbSchools.Location = new System.Drawing.Point(665, 13);
            this.lblNbSchools.Name = "lblNbSchools";
            this.lblNbSchools.Size = new System.Drawing.Size(30, 13);
            this.lblNbSchools.TabIndex = 13;
            this.lblNbSchools.Text = "Nb...";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(509, 13);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(150, 13);
            this.label4.TabIndex = 14;
            this.label4.Text = "Nombre d\'écoles dans la liste :";
            // 
            // lbl1
            // 
            this.lbl1.AutoSize = true;
            this.lbl1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbl1.Location = new System.Drawing.Point(135, 319);
            this.lbl1.Name = "lbl1";
            this.lbl1.Size = new System.Drawing.Size(81, 15);
            this.lbl1.TabIndex = 16;
            this.lbl1.Text = "Message Type";
            // 
            // cmbListDoc
            // 
            this.cmbListDoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbListDoc.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmbListDoc.FormattingEnabled = true;
            this.cmbListDoc.Location = new System.Drawing.Point(222, 316);
            this.cmbListDoc.Name = "cmbListDoc";
            this.cmbListDoc.Size = new System.Drawing.Size(336, 23);
            this.cmbListDoc.TabIndex = 15;
            this.cmbListDoc.SelectedIndexChanged += new System.EventHandler(this.cmbListDoc_SelectedIndexChanged);
            // 
            // lblErreur
            // 
            this.lblErreur.AutoSize = true;
            this.lblErreur.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblErreur.ForeColor = System.Drawing.Color.Red;
            this.lblErreur.Location = new System.Drawing.Point(15, 557);
            this.lblErreur.Name = "lblErreur";
            this.lblErreur.Size = new System.Drawing.Size(45, 13);
            this.lblErreur.TabIndex = 17;
            this.lblErreur.Text = "lblError";
            this.lblErreur.Visible = false;
            // 
            // frmMailing
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1035, 592);
            this.Controls.Add(this.lblErreur);
            this.Controls.Add(this.lbl1);
            this.Controls.Add(this.cmbListDoc);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.lblNbSchools);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.cmbFilter);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.cmbNbDest);
            this.Controls.Add(this.txtResult);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.txtObjet);
            this.Controls.Add(this.groupBox6);
            this.Controls.Add(this.rchTextMail);
            this.Controls.Add(this.chkSelectAll);
            this.Controls.Add(this.btnSendMail);
            this.Controls.Add(this.lstMailingSchool);
            this.Name = "frmMailing";
            this.Text = "Mailing";
            this.Load += new System.EventHandler(this.frmMailing_Load);
            this.groupBox6.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.mainMenu1 = new System.Windows.Forms.MainMenu();
     this.mnFile = new System.Windows.Forms.MenuItem();
     this.mnExit = new System.Windows.Forms.MenuItem();
     this.mnHelp = new System.Windows.Forms.MenuItem();
     this.mnAbout = new System.Windows.Forms.MenuItem();
     this.grid1 = new SourceGrid.Grid();
     this.SuspendLayout();
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                               this.mnFile,
                                                                               this.mnHelp});
     //
     // mnFile
     //
     this.mnFile.Index = 0;
     this.mnFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                            this.mnExit});
     this.mnFile.Text = "File";
     //
     // mnExit
     //
     this.mnExit.Index = 0;
     this.mnExit.Text = "Exit";
     this.mnExit.Click += new System.EventHandler(this.mnExit_Click);
     //
     // mnHelp
     //
     this.mnHelp.Index = 1;
     this.mnHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                            this.mnAbout});
     this.mnHelp.Text = "Help";
     //
     // mnAbout
     //
     this.mnAbout.Index = 0;
     this.mnAbout.Text = "About";
     //
     // grid1
     //
     this.grid1.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.grid1.AutoStretchColumnsToFitWidth = false;
     this.grid1.AutoStretchRowsToFitHeight = false;
     this.grid1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.grid1.CustomSort = false;
     this.grid1.Location = new System.Drawing.Point(4, 4);
     this.grid1.Name = "grid1";
     this.grid1.OverrideCommonCmdKey = true;
     this.grid1.Size = new System.Drawing.Size(616, 296);
     this.grid1.SpecialKeys = SourceGrid.GridSpecialKeys.Default;
     this.grid1.TabIndex = 0;
     //
     // StartForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor = System.Drawing.SystemColors.Window;
     this.ClientSize = new System.Drawing.Size(624, 305);
     this.Controls.Add(this.grid1);
     this.Menu = this.mainMenu1;
     this.Name = "StartForm";
     this.Text = "Examples Explorer";
     this.ResumeLayout(false);
 }
Example #46
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.grid = new SourceGrid.Grid();
            this.btLoad = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.txtCols = new System.Windows.Forms.TextBox();
            this.txtRows = new System.Windows.Forms.TextBox();
            this.chkAddHeaders = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            // 
            // grid
            // 
            this.grid.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.grid.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.grid.Location = new System.Drawing.Point(4, 32);
            this.grid.Name = "grid";
            this.grid.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid.Size = new System.Drawing.Size(508, 404);
            this.grid.TabIndex = 3;
            this.grid.TabStop = true;
            this.grid.ToolTipText = "";
            // 
            // btLoad
            // 
            this.btLoad.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btLoad.Location = new System.Drawing.Point(292, 4);
            this.btLoad.Name = "btLoad";
            this.btLoad.Size = new System.Drawing.Size(75, 23);
            this.btLoad.TabIndex = 2;
            this.btLoad.Text = "Load - F3";
            this.btLoad.Click += new System.EventHandler(this.btLoad_Click);
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(4, 0);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(56, 23);
            this.label2.TabIndex = 12;
            this.label2.Text = "Rows:";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(152, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(56, 23);
            this.label1.TabIndex = 11;
            this.label1.Text = "Columns:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // txtCols
            // 
            this.txtCols.Location = new System.Drawing.Point(216, 4);
            this.txtCols.Name = "txtCols";
            this.txtCols.Size = new System.Drawing.Size(72, 20);
            this.txtCols.TabIndex = 1;
            this.txtCols.Text = "200";
            // 
            // txtRows
            // 
            this.txtRows.Location = new System.Drawing.Point(64, 4);
            this.txtRows.Name = "txtRows";
            this.txtRows.Size = new System.Drawing.Size(72, 20);
            this.txtRows.TabIndex = 0;
            this.txtRows.Text = "200";
            // 
            // chkAddHeaders
            // 
            this.chkAddHeaders.AutoSize = true;
            this.chkAddHeaders.Location = new System.Drawing.Point(396, 9);
            this.chkAddHeaders.Name = "chkAddHeaders";
            this.chkAddHeaders.Size = new System.Drawing.Size(86, 17);
            this.chkAddHeaders.TabIndex = 13;
            this.chkAddHeaders.Text = "Add headers";
            this.chkAddHeaders.UseVisualStyleBackColor = true;
            // 
            // frmSample4
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(516, 439);
            this.Controls.Add(this.chkAddHeaders);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.txtCols);
            this.Controls.Add(this.txtRows);
            this.Controls.Add(this.btLoad);
            this.Controls.Add(this.grid);
            this.KeyPreview = true;
            this.Name = "frmSample4";
            this.Text = "Grid Performance";
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmSample4_KeyDown);
            this.ResumeLayout(false);
            this.PerformLayout();

		}
Example #47
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.grid1 = new SourceGrid.Grid();
            this.grid2 = new SourceGrid.Grid();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)));
            this.grid1.Location = new System.Drawing.Point(12, 37);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(256, 295);
            this.grid1.TabIndex = 0;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // grid2
            // 
            this.grid2.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.grid2.Location = new System.Drawing.Point(274, 37);
            this.grid2.Name = "grid2";
            this.grid2.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid2.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid2.Size = new System.Drawing.Size(266, 295);
            this.grid2.TabIndex = 1;
            this.grid2.TabStop = true;
            this.grid2.ToolTipText = "";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(12, 21);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(117, 13);
            this.label1.TabIndex = 2;
            this.label1.Text = "Grid with double editors";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(271, 21);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(110, 13);
            this.label2.TabIndex = 3;
            this.label2.Text = "Grid with string editors";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(15, 5);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(356, 13);
            this.label3.TabIndex = 4;
            this.label3.Text = "In the grids below I have used the clipboard features (Grid.ClipboardMode)";
            // 
            // frmSample24
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(552, 344);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.grid2);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample24";
            this.Text = "Clipboard";
            this.ResumeLayout(false);
            this.PerformLayout();

		}
Example #48
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.grid1 = new SourceGrid.Grid();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.rdSelectionModeColumn = new System.Windows.Forms.RadioButton();
            this.rdSelectionModeRow = new System.Windows.Forms.RadioButton();
            this.rdSelectionModeCell = new System.Windows.Forms.RadioButton();
            this.chkEnableMultiSelection = new System.Windows.Forms.CheckBox();
            this.cPickSelBackColor = new DevAge.Windows.Forms.ColorPicker();
            this.label1 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.cPckBorderColor = new DevAge.Windows.Forms.ColorPicker();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.label2 = new System.Windows.Forms.Label();
            this.trackSelectionAlpha = new System.Windows.Forms.TrackBar();
            this.tabPage4 = new System.Windows.Forms.TabPage();
            this.chkTabStop = new System.Windows.Forms.CheckBox();
            this.label6 = new System.Windows.Forms.Label();
            this.trackFocusBackColorTrans = new System.Windows.Forms.TrackBar();
            this.cPickFocusBackColor = new DevAge.Windows.Forms.ColorPicker();
            this.label5 = new System.Windows.Forms.Label();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.label7 = new System.Windows.Forms.Label();
            this.cbDashStyle = new DevAge.Windows.Forms.DevAgeComboBox();
            this.trackBorderWidth = new System.Windows.Forms.TrackBar();
            this.label4 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).BeginInit();
            this.tabPage4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).BeginInit();
            this.tabPage3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).BeginInit();
            this.SuspendLayout();
            // 
            // grid1
            // 
            this.grid1.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.grid1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.grid1.Location = new System.Drawing.Point(4, 184);
            this.grid1.Name = "grid1";
            this.grid1.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid1.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid1.Size = new System.Drawing.Size(432, 180);
            this.grid1.TabIndex = 0;
            this.grid1.TabStop = true;
            this.grid1.ToolTipText = "";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.rdSelectionModeColumn);
            this.groupBox1.Controls.Add(this.rdSelectionModeRow);
            this.groupBox1.Controls.Add(this.rdSelectionModeCell);
            this.groupBox1.Location = new System.Drawing.Point(20, 8);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(200, 92);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Grid.Selection.SelectionMode";
            // 
            // rdSelectionModeColumn
            // 
            this.rdSelectionModeColumn.Location = new System.Drawing.Point(8, 68);
            this.rdSelectionModeColumn.Name = "rdSelectionModeColumn";
            this.rdSelectionModeColumn.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeColumn.TabIndex = 2;
            this.rdSelectionModeColumn.Text = "Column";
            this.rdSelectionModeColumn.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // rdSelectionModeRow
            // 
            this.rdSelectionModeRow.Location = new System.Drawing.Point(8, 44);
            this.rdSelectionModeRow.Name = "rdSelectionModeRow";
            this.rdSelectionModeRow.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeRow.TabIndex = 1;
            this.rdSelectionModeRow.Text = "Row";
            this.rdSelectionModeRow.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // rdSelectionModeCell
            // 
            this.rdSelectionModeCell.Checked = true;
            this.rdSelectionModeCell.Location = new System.Drawing.Point(8, 20);
            this.rdSelectionModeCell.Name = "rdSelectionModeCell";
            this.rdSelectionModeCell.Size = new System.Drawing.Size(188, 20);
            this.rdSelectionModeCell.TabIndex = 0;
            this.rdSelectionModeCell.TabStop = true;
            this.rdSelectionModeCell.Text = "Cell";
            this.rdSelectionModeCell.CheckedChanged += new System.EventHandler(this.Check_Change);
            // 
            // chkEnableMultiSelection
            // 
            this.chkEnableMultiSelection.Checked = true;
            this.chkEnableMultiSelection.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkEnableMultiSelection.Location = new System.Drawing.Point(24, 112);
            this.chkEnableMultiSelection.Name = "chkEnableMultiSelection";
            this.chkEnableMultiSelection.Size = new System.Drawing.Size(216, 24);
            this.chkEnableMultiSelection.TabIndex = 2;
            this.chkEnableMultiSelection.Text = "Grid.Selection.EnableMultiSelection";
            this.chkEnableMultiSelection.CheckedChanged += new System.EventHandler(this.chkEnableMultiSelection_CheckedChanged);
            // 
            // cPickSelBackColor
            // 
            this.cPickSelBackColor.Location = new System.Drawing.Point(152, 4);
            this.cPickSelBackColor.Name = "cPickSelBackColor";
            this.cPickSelBackColor.SelectedColor = System.Drawing.Color.Black;
            this.cPickSelBackColor.Size = new System.Drawing.Size(176, 24);
            this.cPickSelBackColor.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(4, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(108, 20);
            this.label1.TabIndex = 4;
            this.label1.Text = "Selection BackColor";
            // 
            // label3
            // 
            this.label3.Location = new System.Drawing.Point(13, 9);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(68, 20);
            this.label3.TabIndex = 8;
            this.label3.Text = "Border Color";
            // 
            // cPckBorderColor
            // 
            this.cPckBorderColor.Location = new System.Drawing.Point(85, 5);
            this.cPckBorderColor.Name = "cPckBorderColor";
            this.cPckBorderColor.SelectedColor = System.Drawing.Color.Black;
            this.cPckBorderColor.Size = new System.Drawing.Size(164, 24);
            this.cPckBorderColor.TabIndex = 7;
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Controls.Add(this.tabPage4);
            this.tabControl1.Controls.Add(this.tabPage3);
            this.tabControl1.Location = new System.Drawing.Point(4, 8);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(432, 172);
            this.tabControl1.TabIndex = 9;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.groupBox1);
            this.tabPage1.Controls.Add(this.chkEnableMultiSelection);
            this.tabPage1.Location = new System.Drawing.Point(4, 22);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Size = new System.Drawing.Size(424, 146);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "SelectionMode";
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.label2);
            this.tabPage2.Controls.Add(this.trackSelectionAlpha);
            this.tabPage2.Controls.Add(this.cPickSelBackColor);
            this.tabPage2.Controls.Add(this.label1);
            this.tabPage2.Location = new System.Drawing.Point(4, 22);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Size = new System.Drawing.Size(424, 146);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Selection Visual Style";
            // 
            // label2
            // 
            this.label2.Location = new System.Drawing.Point(4, 40);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(128, 20);
            this.label2.TabIndex = 10;
            this.label2.Text = "Selection Trasparency:";
            // 
            // trackSelectionAlpha
            // 
            this.trackSelectionAlpha.Location = new System.Drawing.Point(152, 32);
            this.trackSelectionAlpha.Maximum = 255;
            this.trackSelectionAlpha.Name = "trackSelectionAlpha";
            this.trackSelectionAlpha.Size = new System.Drawing.Size(176, 45);
            this.trackSelectionAlpha.TabIndex = 9;
            this.trackSelectionAlpha.TickFrequency = 10;
            this.trackSelectionAlpha.TickStyle = System.Windows.Forms.TickStyle.Both;
            // 
            // tabPage4
            // 
            this.tabPage4.Controls.Add(this.chkTabStop);
            this.tabPage4.Controls.Add(this.label6);
            this.tabPage4.Controls.Add(this.trackFocusBackColorTrans);
            this.tabPage4.Controls.Add(this.cPickFocusBackColor);
            this.tabPage4.Controls.Add(this.label5);
            this.tabPage4.Location = new System.Drawing.Point(4, 22);
            this.tabPage4.Name = "tabPage4";
            this.tabPage4.Size = new System.Drawing.Size(424, 146);
            this.tabPage4.TabIndex = 3;
            this.tabPage4.Text = "Focus Visual Style";
            // 
            // chkTabStop
            // 
            this.chkTabStop.Checked = true;
            this.chkTabStop.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkTabStop.Location = new System.Drawing.Point(8, 88);
            this.chkTabStop.Name = "chkTabStop";
            this.chkTabStop.Size = new System.Drawing.Size(104, 24);
            this.chkTabStop.TabIndex = 15;
            this.chkTabStop.Text = "Grid.TabStop";
            this.chkTabStop.CheckedChanged += new System.EventHandler(this.chkTabStop_CheckedChanged);
            // 
            // label6
            // 
            this.label6.Location = new System.Drawing.Point(4, 12);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(108, 20);
            this.label6.TabIndex = 12;
            this.label6.Text = "Focus BackColor";
            // 
            // trackFocusBackColorTrans
            // 
            this.trackFocusBackColorTrans.Location = new System.Drawing.Point(152, 32);
            this.trackFocusBackColorTrans.Maximum = 255;
            this.trackFocusBackColorTrans.Name = "trackFocusBackColorTrans";
            this.trackFocusBackColorTrans.Size = new System.Drawing.Size(176, 45);
            this.trackFocusBackColorTrans.TabIndex = 13;
            this.trackFocusBackColorTrans.TickFrequency = 10;
            this.trackFocusBackColorTrans.TickStyle = System.Windows.Forms.TickStyle.Both;
            // 
            // cPickFocusBackColor
            // 
            this.cPickFocusBackColor.Location = new System.Drawing.Point(152, 8);
            this.cPickFocusBackColor.Name = "cPickFocusBackColor";
            this.cPickFocusBackColor.SelectedColor = System.Drawing.Color.Black;
            this.cPickFocusBackColor.Size = new System.Drawing.Size(176, 24);
            this.cPickFocusBackColor.TabIndex = 11;
            // 
            // label5
            // 
            this.label5.Location = new System.Drawing.Point(4, 44);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(128, 20);
            this.label5.TabIndex = 14;
            this.label5.Text = "Focus Trasparency:";
            // 
            // tabPage3
            // 
            this.tabPage3.Controls.Add(this.label7);
            this.tabPage3.Controls.Add(this.cbDashStyle);
            this.tabPage3.Controls.Add(this.cPckBorderColor);
            this.tabPage3.Controls.Add(this.label3);
            this.tabPage3.Controls.Add(this.trackBorderWidth);
            this.tabPage3.Controls.Add(this.label4);
            this.tabPage3.Location = new System.Drawing.Point(4, 22);
            this.tabPage3.Name = "tabPage3";
            this.tabPage3.Size = new System.Drawing.Size(424, 146);
            this.tabPage3.TabIndex = 2;
            this.tabPage3.Text = "Selection Border";
            // 
            // label7
            // 
            this.label7.Location = new System.Drawing.Point(9, 89);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(76, 20);
            this.label7.TabIndex = 15;
            this.label7.Text = "Dash Style";
            // 
            // cbDashStyle
            // 
            this.cbDashStyle.Location = new System.Drawing.Point(89, 89);
            this.cbDashStyle.Name = "cbDashStyle";
            this.cbDashStyle.Size = new System.Drawing.Size(164, 21);
            this.cbDashStyle.TabIndex = 14;
            this.cbDashStyle.TextChanged += new System.EventHandler(this.cbDashStyle_ValueChanged);
            // 
            // trackBorderWidth
            // 
            this.trackBorderWidth.Location = new System.Drawing.Point(89, 41);
            this.trackBorderWidth.Maximum = 20;
            this.trackBorderWidth.Name = "trackBorderWidth";
            this.trackBorderWidth.Size = new System.Drawing.Size(96, 45);
            this.trackBorderWidth.TabIndex = 11;
            // 
            // label4
            // 
            this.label4.Location = new System.Drawing.Point(9, 49);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(76, 20);
            this.label4.TabIndex = 12;
            this.label4.Text = "Border Width:";
            // 
            // frmSample17
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(440, 371);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.grid1);
            this.Name = "frmSample17";
            this.Text = "Selection Style";
            this.Load += new System.EventHandler(this.frmSample17_Load);
            this.groupBox1.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.tabPage2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackSelectionAlpha)).EndInit();
            this.tabPage4.ResumeLayout(false);
            this.tabPage4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackFocusBackColorTrans)).EndInit();
            this.tabPage3.ResumeLayout(false);
            this.tabPage3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.trackBorderWidth)).EndInit();
            this.ResumeLayout(false);

		}
        /// <summary>
        /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
        /// le contenu de cette méthode avec l'éditeur de code.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmParam));
            this.label1 = new System.Windows.Forms.Label();
            this.openFile = new System.Windows.Forms.OpenFileDialog();
            this.btnOk = new System.Windows.Forms.Button();
            this.btnAnnuler = new System.Windows.Forms.Button();
            this.tabParam3 = new System.Windows.Forms.TabPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.lblTrial = new System.Windows.Forms.Label();
            this.chkGoogleActivate = new System.Windows.Forms.CheckBox();
            this.btnSearchFile = new System.Windows.Forms.Button();
            this.label6 = new System.Windows.Forms.Label();
            this.txtPrivateKey = new System.Windows.Forms.TextBox();
            this.rchTxtBox = new System.Windows.Forms.RichTextBox();
            this.btnTestConnect = new System.Windows.Forms.Button();
            this.label5 = new System.Windows.Forms.Label();
            this.txtGoogleAccount = new System.Windows.Forms.TextBox();
            this.tabParam1 = new System.Windows.Forms.TabPage();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.cTxtVille = new LabCommonLog.CTextBox();
            this.cTxtCodePostal = new LabCommonLog.CTextBox();
            this.cTxtAdress = new LabCommonLog.CTextBox();
            this.cTxtMailPhoto = new LabCommonLog.CTextBox();
            this.lblErreurMail = new System.Windows.Forms.Label();
            this.lblErreurNom = new System.Windows.Forms.Label();
            this.lblErreurId = new System.Windows.Forms.Label();
            this.btnAction = new System.Windows.Forms.Button();
            this.colorPicker = new DevAge.Windows.Forms.ColorPicker();
            this.txtGoogleCal = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.txtName = new System.Windows.Forms.TextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.mskIdPhoto = new System.Windows.Forms.MaskedTextBox();
            this.gridPhoto = new SourceGrid.Grid();
            this.tabParam = new System.Windows.Forms.TabControl();
            this.tabParam0 = new System.Windows.Forms.TabPage();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.txtMailUserName = new LabCommonLog.CTextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.groupBox8 = new System.Windows.Forms.GroupBox();
            this.cTxtVilleLabo = new LabCommonLog.CTextBox();
            this.cTxtCodePostalLabo = new LabCommonLog.CTextBox();
            this.cTxtAdresseLabo = new LabCommonLog.CTextBox();
            this.label20 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.groupBox7 = new System.Windows.Forms.GroupBox();
            this.label18 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.lblDevise = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.lblPchette1 = new System.Windows.Forms.Label();
            this.lblFullPochette = new System.Windows.Forms.Label();
            this.lblTicket = new System.Windows.Forms.Label();
            this.txtOnlyGroupe = new System.Windows.Forms.TextBox();
            this.txtWOGroupe = new System.Windows.Forms.TextBox();
            this.txtFullPochette = new System.Windows.Forms.TextBox();
            this.txtTicketMoyen = new System.Windows.Forms.TextBox();
            this.tabParam2 = new System.Windows.Forms.TabPage();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.btnDeletePeriode = new System.Windows.Forms.Button();
            this.btnActPeriode = new System.Windows.Forms.Button();
            this.label12 = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.txtDateFin = new System.Windows.Forms.MaskedTextBox();
            this.txtDateDebut = new System.Windows.Forms.MaskedTextBox();
            this.grid2 = new SourceGrid.Grid();
            this.tabParam4 = new System.Windows.Forms.TabPage();
            this.grpInfos = new System.Windows.Forms.GroupBox();
            this.cmbTypeMail = new System.Windows.Forms.ComboBox();
            this.txtTitle = new LabCommonLog.CTextBox();
            this.txtFileName = new LabCommonLog.CTextBox();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.rchBodyContent = new System.Windows.Forms.RichTextBox();
            this.lbl4 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.lbl3 = new System.Windows.Forms.Label();
            this.lbl2 = new System.Windows.Forms.Label();
            this.grpMessage = new System.Windows.Forms.GroupBox();
            this.lbl1 = new System.Windows.Forms.Label();
            this.cmbListDoc = new System.Windows.Forms.ComboBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.lblMainError = new System.Windows.Forms.Label();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.rchHelp1 = new System.Windows.Forms.RichTextBox();
            this.label21 = new System.Windows.Forms.Label();
            this.cTxtNomLabo = new LabCommonLog.CTextBox();
            this.cTxtZoneLabo = new LabCommonLog.CTextBox();
            this.label22 = new System.Windows.Forms.Label();
            lstDocuments = new SourceGrid.Grid();
            this.tabParam3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.tabParam1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabParam.SuspendLayout();
            this.tabParam0.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox8.SuspendLayout();
            this.groupBox7.SuspendLayout();
            this.tabParam2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.tabParam4.SuspendLayout();
            this.grpInfos.SuspendLayout();
            this.grpMessage.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 13);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(0, 13);
            this.label1.TabIndex = 0;
            // 
            // openFile
            // 
            this.openFile.DefaultExt = "*.ics";
            this.openFile.Filter = "Fichier iCal|*.ics";
            // 
            // btnOk
            // 
            this.btnOk.Location = new System.Drawing.Point(201, 489);
            this.btnOk.Name = "btnOk";
            this.btnOk.Size = new System.Drawing.Size(119, 38);
            this.btnOk.TabIndex = 20;
            this.btnOk.Text = "Ok";
            this.btnOk.UseVisualStyleBackColor = true;
            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // btnAnnuler
            // 
            this.btnAnnuler.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnAnnuler.Location = new System.Drawing.Point(340, 489);
            this.btnAnnuler.Name = "btnAnnuler";
            this.btnAnnuler.Size = new System.Drawing.Size(131, 38);
            this.btnAnnuler.TabIndex = 21;
            this.btnAnnuler.Text = "Annuler";
            this.btnAnnuler.UseVisualStyleBackColor = true;
            this.btnAnnuler.Click += new System.EventHandler(this.btnAnnuler_Click);
            // 
            // tabParam3
            // 
            this.tabParam3.Controls.Add(this.groupBox2);
            this.tabParam3.Location = new System.Drawing.Point(4, 22);
            this.tabParam3.Name = "tabParam3";
            this.tabParam3.Size = new System.Drawing.Size(458, 429);
            this.tabParam3.TabIndex = 2;
            this.tabParam3.Text = "Service Google";
            this.tabParam3.UseVisualStyleBackColor = true;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.lblTrial);
            this.groupBox2.Controls.Add(this.chkGoogleActivate);
            this.groupBox2.Controls.Add(this.btnSearchFile);
            this.groupBox2.Controls.Add(this.label6);
            this.groupBox2.Controls.Add(this.txtPrivateKey);
            this.groupBox2.Controls.Add(this.rchTxtBox);
            this.groupBox2.Controls.Add(this.btnTestConnect);
            this.groupBox2.Controls.Add(this.label5);
            this.groupBox2.Controls.Add(this.txtGoogleAccount);
            this.groupBox2.Location = new System.Drawing.Point(3, 15);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(424, 390);
            this.groupBox2.TabIndex = 0;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Informations d\'authentification";
            // 
            // lblTrial
            // 
            this.lblTrial.AutoSize = true;
            this.lblTrial.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblTrial.Location = new System.Drawing.Point(26, 313);
            this.lblTrial.Name = "lblTrial";
            this.lblTrial.Size = new System.Drawing.Size(46, 17);
            this.lblTrial.TabIndex = 6;
            this.lblTrial.Text = "lblTrial";
            // 
            // chkGoogleActivate
            // 
            this.chkGoogleActivate.AutoSize = true;
            this.chkGoogleActivate.Location = new System.Drawing.Point(113, 28);
            this.chkGoogleActivate.Name = "chkGoogleActivate";
            this.chkGoogleActivate.Size = new System.Drawing.Size(207, 17);
            this.chkGoogleActivate.TabIndex = 0;
            this.chkGoogleActivate.Text = "Activer le service Google Calendar ?";
            this.chkGoogleActivate.UseVisualStyleBackColor = true;
            this.chkGoogleActivate.CheckedChanged += new System.EventHandler(this.chkGoogleActivate_CheckedChanged);
            // 
            // btnSearchFile
            // 
            this.btnSearchFile.Location = new System.Drawing.Point(324, 76);
            this.btnSearchFile.Name = "btnSearchFile";
            this.btnSearchFile.Size = new System.Drawing.Size(75, 23);
            this.btnSearchFile.TabIndex = 3;
            this.btnSearchFile.Text = "Parcourir...";
            this.btnSearchFile.UseVisualStyleBackColor = true;
            this.btnSearchFile.Click += new System.EventHandler(this.btnSearchFile_Click);
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(11, 80);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(57, 13);
            this.label6.TabIndex = 5;
            this.label6.Text = "Clé privée";
            // 
            // txtPrivateKey
            // 
            this.txtPrivateKey.Location = new System.Drawing.Point(105, 77);
            this.txtPrivateKey.Name = "txtPrivateKey";
            this.txtPrivateKey.Size = new System.Drawing.Size(159, 22);
            this.txtPrivateKey.TabIndex = 2;
            // 
            // rchTxtBox
            // 
            this.rchTxtBox.Location = new System.Drawing.Point(26, 152);
            this.rchTxtBox.Name = "rchTxtBox";
            this.rchTxtBox.Size = new System.Drawing.Size(373, 154);
            this.rchTxtBox.TabIndex = 5;
            this.rchTxtBox.Text = "";
            // 
            // btnTestConnect
            // 
            this.btnTestConnect.Location = new System.Drawing.Point(125, 114);
            this.btnTestConnect.Name = "btnTestConnect";
            this.btnTestConnect.Size = new System.Drawing.Size(159, 29);
            this.btnTestConnect.TabIndex = 4;
            this.btnTestConnect.Text = "Tester la connexion";
            this.btnTestConnect.UseVisualStyleBackColor = true;
            this.btnTestConnect.Click += new System.EventHandler(this.btnTestConnect_Click);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(11, 54);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(90, 13);
            this.label5.TabIndex = 1;
            this.label5.Text = "Google Account";
            // 
            // txtGoogleAccount
            // 
            this.txtGoogleAccount.Location = new System.Drawing.Point(105, 51);
            this.txtGoogleAccount.Name = "txtGoogleAccount";
            this.txtGoogleAccount.Size = new System.Drawing.Size(294, 22);
            this.txtGoogleAccount.TabIndex = 1;
            // 
            // tabParam1
            // 
            this.tabParam1.Controls.Add(this.groupBox1);
            this.tabParam1.Controls.Add(this.gridPhoto);
            this.tabParam1.Location = new System.Drawing.Point(4, 22);
            this.tabParam1.Name = "tabParam1";
            this.tabParam1.Padding = new System.Windows.Forms.Padding(3);
            this.tabParam1.Size = new System.Drawing.Size(458, 429);
            this.tabParam1.TabIndex = 0;
            this.tabParam1.Text = "Photographes";
            this.tabParam1.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.cTxtVille);
            this.groupBox1.Controls.Add(this.cTxtCodePostal);
            this.groupBox1.Controls.Add(this.cTxtAdress);
            this.groupBox1.Controls.Add(this.cTxtMailPhoto);
            this.groupBox1.Controls.Add(this.lblErreurMail);
            this.groupBox1.Controls.Add(this.lblErreurNom);
            this.groupBox1.Controls.Add(this.lblErreurId);
            this.groupBox1.Controls.Add(this.btnAction);
            this.groupBox1.Controls.Add(this.colorPicker);
            this.groupBox1.Controls.Add(this.txtGoogleCal);
            this.groupBox1.Controls.Add(this.label11);
            this.groupBox1.Controls.Add(this.label10);
            this.groupBox1.Controls.Add(this.txtName);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.mskIdPhoto);
            this.groupBox1.Location = new System.Drawing.Point(17, 209);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(402, 214);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Détail";
            // 
            // cTxtVille
            // 
            this.cTxtVille.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtVille.Location = new System.Drawing.Point(146, 183);
            this.cTxtVille.Name = "cTxtVille";
            this.cTxtVille.Size = new System.Drawing.Size(127, 22);
            this.cTxtVille.TabIndex = 8;
            this.cTxtVille.WaterMark = "Ville";
            this.cTxtVille.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtVille.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtVille.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtCodePostal
            // 
            this.cTxtCodePostal.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtCodePostal.Location = new System.Drawing.Point(62, 183);
            this.cTxtCodePostal.Name = "cTxtCodePostal";
            this.cTxtCodePostal.Size = new System.Drawing.Size(78, 22);
            this.cTxtCodePostal.TabIndex = 7;
            this.cTxtCodePostal.WaterMark = "Code Postal";
            this.cTxtCodePostal.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtCodePostal.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtCodePostal.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtAdress
            // 
            this.cTxtAdress.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtAdress.Location = new System.Drawing.Point(62, 155);
            this.cTxtAdress.Name = "cTxtAdress";
            this.cTxtAdress.Size = new System.Drawing.Size(211, 22);
            this.cTxtAdress.TabIndex = 6;
            this.cTxtAdress.WaterMark = "Adresse postale";
            this.cTxtAdress.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtAdress.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtAdress.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtMailPhoto
            // 
            this.cTxtMailPhoto.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtMailPhoto.Location = new System.Drawing.Point(107, 127);
            this.cTxtMailPhoto.Name = "cTxtMailPhoto";
            this.cTxtMailPhoto.Size = new System.Drawing.Size(211, 22);
            this.cTxtMailPhoto.TabIndex = 5;
            this.cTxtMailPhoto.WaterMark = "*****@*****.**";
            this.cTxtMailPhoto.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtMailPhoto.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtMailPhoto.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // lblErreurMail
            // 
            this.lblErreurMail.AutoSize = true;
            this.lblErreurMail.ForeColor = System.Drawing.Color.Red;
            this.lblErreurMail.Location = new System.Drawing.Point(324, 130);
            this.lblErreurMail.Name = "lblErreurMail";
            this.lblErreurMail.Size = new System.Drawing.Size(72, 13);
            this.lblErreurMail.TabIndex = 5;
            this.lblErreurMail.Text = "Mail invalide";
            this.lblErreurMail.Visible = false;
            // 
            // lblErreurNom
            // 
            this.lblErreurNom.AutoSize = true;
            this.lblErreurNom.ForeColor = System.Drawing.Color.Red;
            this.lblErreurNom.Location = new System.Drawing.Point(258, 50);
            this.lblErreurNom.Name = "lblErreurNom";
            this.lblErreurNom.Size = new System.Drawing.Size(79, 13);
            this.lblErreurNom.TabIndex = 5;
            this.lblErreurNom.Text = "Nom incorrect";
            this.lblErreurNom.Visible = false;
            // 
            // lblErreurId
            // 
            this.lblErreurId.AutoSize = true;
            this.lblErreurId.ForeColor = System.Drawing.Color.Red;
            this.lblErreurId.Location = new System.Drawing.Point(258, 23);
            this.lblErreurId.Name = "lblErreurId";
            this.lblErreurId.Size = new System.Drawing.Size(109, 13);
            this.lblErreurId.TabIndex = 5;
            this.lblErreurId.Text = "Identifiant incorrect";
            this.lblErreurId.Visible = false;
            // 
            // btnAction
            // 
            this.btnAction.Location = new System.Drawing.Point(283, 183);
            this.btnAction.Name = "btnAction";
            this.btnAction.Size = new System.Drawing.Size(113, 23);
            this.btnAction.TabIndex = 9;
            this.btnAction.Text = "Ajouter";
            this.btnAction.UseVisualStyleBackColor = true;
            this.btnAction.Click += new System.EventHandler(this.btnAction_Click);
            // 
            // colorPicker
            // 
            this.colorPicker.Location = new System.Drawing.Point(107, 73);
            this.colorPicker.Name = "colorPicker";
            this.colorPicker.SelectedColor = System.Drawing.Color.Black;
            this.colorPicker.Size = new System.Drawing.Size(136, 20);
            this.colorPicker.TabIndex = 3;
            // 
            // txtGoogleCal
            // 
            this.txtGoogleCal.Location = new System.Drawing.Point(107, 99);
            this.txtGoogleCal.Name = "txtGoogleCal";
            this.txtGoogleCal.Size = new System.Drawing.Size(274, 22);
            this.txtGoogleCal.TabIndex = 4;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(9, 158);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(47, 13);
            this.label11.TabIndex = 1;
            this.label11.Text = "Adresse";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(9, 128);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(72, 13);
            this.label10.TabIndex = 1;
            this.label10.Text = "Adresse Mail";
            // 
            // txtName
            // 
            this.txtName.Location = new System.Drawing.Point(107, 47);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(136, 22);
            this.txtName.TabIndex = 2;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(9, 102);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(94, 13);
            this.label7.TabIndex = 1;
            this.label7.Text = "Google Calendar";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(9, 77);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(48, 13);
            this.label4.TabIndex = 1;
            this.label4.Text = "Couleur";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(9, 50);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(31, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Nom";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(9, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(61, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Identifiant";
            // 
            // mskIdPhoto
            // 
            this.mskIdPhoto.Location = new System.Drawing.Point(107, 19);
            this.mskIdPhoto.Mask = "9999";
            this.mskIdPhoto.Name = "mskIdPhoto";
            this.mskIdPhoto.Size = new System.Drawing.Size(33, 22);
            this.mskIdPhoto.TabIndex = 1;
            // 
            // gridPhoto
            // 
            this.gridPhoto.EnableSort = false;
            this.gridPhoto.Location = new System.Drawing.Point(6, 6);
            this.gridPhoto.Name = "gridPhoto";
            this.gridPhoto.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.gridPhoto.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.gridPhoto.Size = new System.Drawing.Size(446, 197);
            this.gridPhoto.TabIndex = 0;
            this.gridPhoto.TabStop = true;
            this.gridPhoto.ToolTipText = "";
            this.gridPhoto.MouseClick += new System.Windows.Forms.MouseEventHandler(this.grid1_MouseClick);
            // 
            // tabParam
            // 
            this.tabParam.Controls.Add(this.tabParam0);
            this.tabParam.Controls.Add(this.tabParam1);
            this.tabParam.Controls.Add(this.tabParam2);
            this.tabParam.Controls.Add(this.tabParam3);
            this.tabParam.Controls.Add(this.tabParam4);
            this.tabParam.Location = new System.Drawing.Point(13, 13);
            this.tabParam.Name = "tabParam";
            this.tabParam.SelectedIndex = 0;
            this.tabParam.Size = new System.Drawing.Size(466, 455);
            this.tabParam.TabIndex = 0;
            this.tabParam.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabParam_Selecting);
            this.tabParam.Deselecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabParam_Deselected);
            // 
            // tabParam0
            // 
            this.tabParam0.Controls.Add(this.groupBox4);
            this.tabParam0.Controls.Add(this.groupBox8);
            this.tabParam0.Controls.Add(this.groupBox7);
            this.tabParam0.Location = new System.Drawing.Point(4, 22);
            this.tabParam0.Name = "tabParam0";
            this.tabParam0.Padding = new System.Windows.Forms.Padding(3);
            this.tabParam0.Size = new System.Drawing.Size(458, 429);
            this.tabParam0.TabIndex = 5;
            this.tabParam0.Text = "Général";
            this.tabParam0.UseVisualStyleBackColor = true;
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.txtMailUserName);
            this.groupBox4.Controls.Add(this.label8);
            this.groupBox4.Location = new System.Drawing.Point(17, 6);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(411, 63);
            this.groupBox4.TabIndex = 2;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Informations générales";
            // 
            // txtMailUserName
            // 
            this.txtMailUserName.Location = new System.Drawing.Point(104, 26);
            this.txtMailUserName.Name = "txtMailUserName";
            this.txtMailUserName.Size = new System.Drawing.Size(267, 22);
            this.txtMailUserName.TabIndex = 1;
            this.txtMailUserName.WaterMark = "*****@*****.**";
            this.txtMailUserName.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.txtMailUserName.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMailUserName.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(31, 29);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(72, 13);
            this.label8.TabIndex = 1;
            this.label8.Text = "Adresse Mail";
            // 
            // groupBox8
            // 
            this.groupBox8.Controls.Add(this.cTxtVilleLabo);
            this.groupBox8.Controls.Add(this.cTxtCodePostalLabo);
            this.groupBox8.Controls.Add(this.cTxtZoneLabo);
            this.groupBox8.Controls.Add(this.cTxtNomLabo);
            this.groupBox8.Controls.Add(this.cTxtAdresseLabo);
            this.groupBox8.Controls.Add(this.label22);
            this.groupBox8.Controls.Add(this.label20);
            this.groupBox8.Controls.Add(this.label21);
            this.groupBox8.Controls.Add(this.label19);
            this.groupBox8.Controls.Add(this.label14);
            this.groupBox8.Location = new System.Drawing.Point(17, 221);
            this.groupBox8.Name = "groupBox8";
            this.groupBox8.Size = new System.Drawing.Size(416, 169);
            this.groupBox8.TabIndex = 0;
            this.groupBox8.TabStop = false;
            this.groupBox8.Text = "Adresse du Labo";
            // 
            // cTxtVilleLabo
            // 
            this.cTxtVilleLabo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtVilleLabo.Location = new System.Drawing.Point(104, 133);
            this.cTxtVilleLabo.Name = "cTxtVilleLabo";
            this.cTxtVilleLabo.Size = new System.Drawing.Size(211, 22);
            this.cTxtVilleLabo.TabIndex = 10;
            this.cTxtVilleLabo.WaterMark = "Ville";
            this.cTxtVilleLabo.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtVilleLabo.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtVilleLabo.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtCodePostalLabo
            // 
            this.cTxtCodePostalLabo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtCodePostalLabo.Location = new System.Drawing.Point(104, 105);
            this.cTxtCodePostalLabo.Name = "cTxtCodePostalLabo";
            this.cTxtCodePostalLabo.Size = new System.Drawing.Size(78, 22);
            this.cTxtCodePostalLabo.TabIndex = 9;
            this.cTxtCodePostalLabo.WaterMark = "Code Postal";
            this.cTxtCodePostalLabo.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtCodePostalLabo.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtCodePostalLabo.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtAdresseLabo
            // 
            this.cTxtAdresseLabo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtAdresseLabo.Location = new System.Drawing.Point(104, 77);
            this.cTxtAdresseLabo.Name = "cTxtAdresseLabo";
            this.cTxtAdresseLabo.Size = new System.Drawing.Size(211, 22);
            this.cTxtAdresseLabo.TabIndex = 8;
            this.cTxtAdresseLabo.WaterMark = "Adresse postale";
            this.cTxtAdresseLabo.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtAdresseLabo.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtAdresseLabo.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // label20
            // 
            this.label20.AutoSize = true;
            this.label20.Location = new System.Drawing.Point(62, 136);
            this.label20.Name = "label20";
            this.label20.Size = new System.Drawing.Size(29, 13);
            this.label20.TabIndex = 9;
            this.label20.Text = "Ville";
            // 
            // label19
            // 
            this.label19.AutoSize = true;
            this.label19.Location = new System.Drawing.Point(23, 108);
            this.label19.Name = "label19";
            this.label19.Size = new System.Drawing.Size(68, 13);
            this.label19.TabIndex = 9;
            this.label19.Text = "Code Postal";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(44, 80);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(47, 13);
            this.label14.TabIndex = 9;
            this.label14.Text = "Adresse";
            // 
            // groupBox7
            // 
            this.groupBox7.Controls.Add(this.label18);
            this.groupBox7.Controls.Add(this.label17);
            this.groupBox7.Controls.Add(this.label16);
            this.groupBox7.Controls.Add(this.lblDevise);
            this.groupBox7.Controls.Add(this.label15);
            this.groupBox7.Controls.Add(this.lblPchette1);
            this.groupBox7.Controls.Add(this.lblFullPochette);
            this.groupBox7.Controls.Add(this.lblTicket);
            this.groupBox7.Controls.Add(this.txtOnlyGroupe);
            this.groupBox7.Controls.Add(this.txtWOGroupe);
            this.groupBox7.Controls.Add(this.txtFullPochette);
            this.groupBox7.Controls.Add(this.txtTicketMoyen);
            this.groupBox7.Location = new System.Drawing.Point(17, 75);
            this.groupBox7.Name = "groupBox7";
            this.groupBox7.Size = new System.Drawing.Size(416, 140);
            this.groupBox7.TabIndex = 0;
            this.groupBox7.TabStop = false;
            this.groupBox7.Text = "Informations Commerciales";
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(281, 105);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(13, 13);
            this.label18.TabIndex = 2;
            this.label18.Text = "€";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.Location = new System.Drawing.Point(281, 79);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(13, 13);
            this.label17.TabIndex = 2;
            this.label17.Text = "€";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(281, 53);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(13, 13);
            this.label16.TabIndex = 2;
            this.label16.Text = "€";
            // 
            // lblDevise
            // 
            this.lblDevise.AutoSize = true;
            this.lblDevise.Location = new System.Drawing.Point(281, 27);
            this.lblDevise.Name = "lblDevise";
            this.lblDevise.Size = new System.Drawing.Size(13, 13);
            this.lblDevise.TabIndex = 2;
            this.lblDevise.Text = "€";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(22, 105);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(140, 13);
            this.label15.TabIndex = 1;
            this.label15.Text = "Prix Pochette Groupe Seul";
            // 
            // lblPchette1
            // 
            this.lblPchette1.AutoSize = true;
            this.lblPchette1.Location = new System.Drawing.Point(22, 79);
            this.lblPchette1.Name = "lblPchette1";
            this.lblPchette1.Size = new System.Drawing.Size(142, 13);
            this.lblPchette1.TabIndex = 1;
            this.lblPchette1.Text = "Prix Pochette Sans Groupe";
            // 
            // lblFullPochette
            // 
            this.lblFullPochette.AutoSize = true;
            this.lblFullPochette.Location = new System.Drawing.Point(44, 53);
            this.lblFullPochette.Name = "lblFullPochette";
            this.lblFullPochette.Size = new System.Drawing.Size(125, 13);
            this.lblFullPochette.TabIndex = 1;
            this.lblFullPochette.Text = "Prix Pochette Complète";
            // 
            // lblTicket
            // 
            this.lblTicket.AutoSize = true;
            this.lblTicket.Location = new System.Drawing.Point(85, 27);
            this.lblTicket.Name = "lblTicket";
            this.lblTicket.Size = new System.Drawing.Size(74, 13);
            this.lblTicket.TabIndex = 1;
            this.lblTicket.Text = "Ticket Moyen";
            // 
            // txtOnlyGroupe
            // 
            this.txtOnlyGroupe.Location = new System.Drawing.Point(175, 102);
            this.txtOnlyGroupe.Name = "txtOnlyGroupe";
            this.txtOnlyGroupe.Size = new System.Drawing.Size(100, 22);
            this.txtOnlyGroupe.TabIndex = 5;
            // 
            // txtWOGroupe
            // 
            this.txtWOGroupe.Location = new System.Drawing.Point(175, 76);
            this.txtWOGroupe.Name = "txtWOGroupe";
            this.txtWOGroupe.Size = new System.Drawing.Size(100, 22);
            this.txtWOGroupe.TabIndex = 4;
            // 
            // txtFullPochette
            // 
            this.txtFullPochette.Location = new System.Drawing.Point(175, 50);
            this.txtFullPochette.Name = "txtFullPochette";
            this.txtFullPochette.Size = new System.Drawing.Size(100, 22);
            this.txtFullPochette.TabIndex = 3;
            // 
            // txtTicketMoyen
            // 
            this.txtTicketMoyen.Location = new System.Drawing.Point(175, 24);
            this.txtTicketMoyen.Name = "txtTicketMoyen";
            this.txtTicketMoyen.Size = new System.Drawing.Size(100, 22);
            this.txtTicketMoyen.TabIndex = 2;
            // 
            // tabParam2
            // 
            this.tabParam2.Controls.Add(this.groupBox3);
            this.tabParam2.Controls.Add(this.grid2);
            this.tabParam2.Location = new System.Drawing.Point(4, 22);
            this.tabParam2.Name = "tabParam2";
            this.tabParam2.Size = new System.Drawing.Size(458, 429);
            this.tabParam2.TabIndex = 3;
            this.tabParam2.Text = "Périodes scolaires";
            this.tabParam2.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.btnDeletePeriode);
            this.groupBox3.Controls.Add(this.btnActPeriode);
            this.groupBox3.Controls.Add(this.label12);
            this.groupBox3.Controls.Add(this.label13);
            this.groupBox3.Controls.Add(this.txtDateFin);
            this.groupBox3.Controls.Add(this.txtDateDebut);
            this.groupBox3.Location = new System.Drawing.Point(26, 222);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(402, 106);
            this.groupBox3.TabIndex = 2;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Détail";
            // 
            // btnDeletePeriode
            // 
            this.btnDeletePeriode.Location = new System.Drawing.Point(265, 72);
            this.btnDeletePeriode.Name = "btnDeletePeriode";
            this.btnDeletePeriode.Size = new System.Drawing.Size(113, 23);
            this.btnDeletePeriode.TabIndex = 4;
            this.btnDeletePeriode.Text = "Supprimer";
            this.btnDeletePeriode.UseVisualStyleBackColor = true;
            this.btnDeletePeriode.Visible = false;
            this.btnDeletePeriode.Click += new System.EventHandler(this.btnDeletePeriode_Click);
            // 
            // btnActPeriode
            // 
            this.btnActPeriode.Location = new System.Drawing.Point(146, 72);
            this.btnActPeriode.Name = "btnActPeriode";
            this.btnActPeriode.Size = new System.Drawing.Size(113, 23);
            this.btnActPeriode.TabIndex = 3;
            this.btnActPeriode.Text = "Ajouter";
            this.btnActPeriode.UseVisualStyleBackColor = true;
            this.btnActPeriode.Click += new System.EventHandler(this.btnActPeriode_Click);
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(24, 50);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(66, 13);
            this.label12.TabIndex = 1;
            this.label12.Text = "Date de Fin";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.Location = new System.Drawing.Point(24, 23);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(82, 13);
            this.label13.TabIndex = 1;
            this.label13.Text = "Date de Début";
            // 
            // txtDateFin
            // 
            this.txtDateFin.Location = new System.Drawing.Point(112, 46);
            this.txtDateFin.Mask = "00/00/0000";
            this.txtDateFin.Name = "txtDateFin";
            this.txtDateFin.Size = new System.Drawing.Size(67, 22);
            this.txtDateFin.TabIndex = 2;
            this.txtDateFin.ValidatingType = typeof(System.DateTime);
            // 
            // txtDateDebut
            // 
            this.txtDateDebut.Location = new System.Drawing.Point(112, 20);
            this.txtDateDebut.Mask = "00/00/0000";
            this.txtDateDebut.Name = "txtDateDebut";
            this.txtDateDebut.Size = new System.Drawing.Size(67, 22);
            this.txtDateDebut.TabIndex = 1;
            this.txtDateDebut.ValidatingType = typeof(System.DateTime);
            // 
            // grid2
            // 
            this.grid2.EnableSort = false;
            this.grid2.Location = new System.Drawing.Point(26, 34);
            this.grid2.Name = "grid2";
            this.grid2.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            this.grid2.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            this.grid2.Size = new System.Drawing.Size(402, 182);
            this.grid2.TabIndex = 0;
            this.grid2.TabStop = true;
            this.grid2.ToolTipText = "";
            this.grid2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.grid2_MouseClick);
            // 
            // tabParam4
            // 
            this.tabParam4.Controls.Add(this.grpInfos);
            this.tabParam4.Controls.Add(this.grpMessage);
            this.tabParam4.Location = new System.Drawing.Point(4, 22);
            this.tabParam4.Name = "tabParam4";
            this.tabParam4.Padding = new System.Windows.Forms.Padding(3);
            this.tabParam4.Size = new System.Drawing.Size(458, 429);
            this.tabParam4.TabIndex = 6;
            this.tabParam4.Text = "Messagerie";
            this.tabParam4.UseVisualStyleBackColor = true;
            // 
            // grpInfos
            // 
            this.grpInfos.Controls.Add(this.cmbTypeMail);
            this.grpInfos.Controls.Add(this.txtTitle);
            this.grpInfos.Controls.Add(this.txtFileName);
            this.grpInfos.Controls.Add(this.btnDelete);
            this.grpInfos.Controls.Add(this.btnSave);
            this.grpInfos.Controls.Add(this.rchBodyContent);
            this.grpInfos.Controls.Add(this.lbl4);
            this.grpInfos.Controls.Add(this.label9);
            this.grpInfos.Controls.Add(this.lbl3);
            this.grpInfos.Controls.Add(this.lbl2);
            this.grpInfos.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpInfos.Location = new System.Drawing.Point(6, 76);
            this.grpInfos.Name = "grpInfos";
            this.grpInfos.Size = new System.Drawing.Size(442, 326);
            this.grpInfos.TabIndex = 3;
            this.grpInfos.TabStop = false;
            this.grpInfos.Text = "Caractéristiques";
            // 
            // cmbTypeMail
            // 
            this.cmbTypeMail.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbTypeMail.FormattingEnabled = true;
            this.cmbTypeMail.Items.AddRange(new object[] {
            "Confirmation",
            "Mise à jour",
            "Suppression",
            "Autre"});
            this.cmbTypeMail.Location = new System.Drawing.Point(124, 59);
            this.cmbTypeMail.Name = "cmbTypeMail";
            this.cmbTypeMail.Size = new System.Drawing.Size(153, 23);
            this.cmbTypeMail.TabIndex = 2;
            // 
            // txtTitle
            // 
            this.txtTitle.Location = new System.Drawing.Point(124, 88);
            this.txtTitle.Multiline = true;
            this.txtTitle.Name = "txtTitle";
            this.txtTitle.Size = new System.Drawing.Size(299, 46);
            this.txtTitle.TabIndex = 3;
            this.txtTitle.WaterMark = "Exemple : Confirmation...";
            this.txtTitle.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.txtTitle.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTitle.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // txtFileName
            // 
            this.txtFileName.Location = new System.Drawing.Point(124, 22);
            this.txtFileName.Name = "txtFileName";
            this.txtFileName.Size = new System.Drawing.Size(299, 23);
            this.txtFileName.TabIndex = 1;
            this.txtFileName.WaterMark = "Ex : Nom du fichier physique";
            this.txtFileName.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.txtFileName.WaterMarkFont = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtFileName.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // btnDelete
            // 
            this.btnDelete.Enabled = false;
            this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnDelete.Location = new System.Drawing.Point(305, 278);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(118, 42);
            this.btnDelete.TabIndex = 6;
            this.btnDelete.Text = "Supprimer";
            this.btnDelete.UseVisualStyleBackColor = true;
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            // 
            // btnSave
            // 
            this.btnSave.Enabled = false;
            this.btnSave.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnSave.Location = new System.Drawing.Point(87, 278);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(131, 42);
            this.btnSave.TabIndex = 5;
            this.btnSave.Text = "Sauvegarder";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // rchBodyContent
            // 
            this.rchBodyContent.Location = new System.Drawing.Point(87, 140);
            this.rchBodyContent.Name = "rchBodyContent";
            this.rchBodyContent.Size = new System.Drawing.Size(336, 132);
            this.rchBodyContent.TabIndex = 4;
            this.rchBodyContent.Text = "";
            // 
            // lbl4
            // 
            this.lbl4.AutoSize = true;
            this.lbl4.Location = new System.Drawing.Point(16, 140);
            this.lbl4.Name = "lbl4";
            this.lbl4.Size = new System.Drawing.Size(53, 15);
            this.lbl4.TabIndex = 7;
            this.lbl4.Text = "Contenu";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(16, 62);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(97, 15);
            this.label9.TabIndex = 3;
            this.label9.Text = "Type de message";
            // 
            // lbl3
            // 
            this.lbl3.AutoSize = true;
            this.lbl3.Location = new System.Drawing.Point(16, 88);
            this.lbl3.Name = "lbl3";
            this.lbl3.Size = new System.Drawing.Size(102, 15);
            this.lbl3.TabIndex = 3;
            this.lbl3.Text = "Objet du message";
            // 
            // lbl2
            // 
            this.lbl2.AutoSize = true;
            this.lbl2.Location = new System.Drawing.Point(16, 25);
            this.lbl2.Name = "lbl2";
            this.lbl2.Size = new System.Drawing.Size(42, 15);
            this.lbl2.TabIndex = 4;
            this.lbl2.Text = "Fichier";
            // 
            // grpMessage
            // 
            this.grpMessage.Controls.Add(this.lbl1);
            this.grpMessage.Controls.Add(this.cmbListDoc);
            this.grpMessage.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.grpMessage.Location = new System.Drawing.Point(6, 6);
            this.grpMessage.Name = "grpMessage";
            this.grpMessage.Size = new System.Drawing.Size(442, 64);
            this.grpMessage.TabIndex = 2;
            this.grpMessage.TabStop = false;
            this.grpMessage.Text = "Messages";
            // 
            // lbl1
            // 
            this.lbl1.AutoSize = true;
            this.lbl1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lbl1.Location = new System.Drawing.Point(22, 33);
            this.lbl1.Name = "lbl1";
            this.lbl1.Size = new System.Drawing.Size(53, 15);
            this.lbl1.TabIndex = 1;
            this.lbl1.Text = "Message";
            // 
            // cmbListDoc
            // 
            this.cmbListDoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbListDoc.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cmbListDoc.FormattingEnabled = true;
            this.cmbListDoc.Location = new System.Drawing.Point(87, 30);
            this.cmbListDoc.Name = "cmbListDoc";
            this.cmbListDoc.Size = new System.Drawing.Size(336, 23);
            this.cmbListDoc.TabIndex = 0;
            this.cmbListDoc.SelectedIndexChanged += new System.EventHandler(this.cmbListDoc_SelectedIndexChanged);
            // 
            // groupBox6
            // 
            this.groupBox6.BackColor = System.Drawing.Color.White;
            this.groupBox6.Controls.Add(lstDocuments);
            this.groupBox6.Location = new System.Drawing.Point(6, 173);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(263, 229);
            this.groupBox6.TabIndex = 4;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "Pièces jointes";
            // 
            // lstDocuments
            // 
            lstDocuments.EnableSort = false;
            lstDocuments.Location = new System.Drawing.Point(6, 17);
            lstDocuments.Name = "lstDocuments";
            lstDocuments.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
            lstDocuments.SelectionMode = SourceGrid.GridSelectionMode.Cell;
            lstDocuments.Size = new System.Drawing.Size(251, 200);
            lstDocuments.TabIndex = 7;
            lstDocuments.TabStop = true;
            lstDocuments.ToolTipText = "";
            lstDocuments.MouseClick += new System.Windows.Forms.MouseEventHandler(this.lstDocuments_MouseClick);
            // 
            // lblMainError
            // 
            this.lblMainError.AutoSize = true;
            this.lblMainError.Location = new System.Drawing.Point(12, 471);
            this.lblMainError.Name = "lblMainError";
            this.lblMainError.Size = new System.Drawing.Size(38, 13);
            this.lblMainError.TabIndex = 6;
            this.lblMainError.Text = "label9";
            // 
            // groupBox5
            // 
            this.groupBox5.BackColor = System.Drawing.Color.White;
            this.groupBox5.Controls.Add(this.groupBox6);
            this.groupBox5.Controls.Add(this.rchHelp1);
            this.groupBox5.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox5.Location = new System.Drawing.Point(486, 35);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(276, 408);
            this.groupBox5.TabIndex = 22;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Aide à la Saisie";
            // 
            // rchHelp1
            // 
            this.rchHelp1.BackColor = System.Drawing.Color.White;
            this.rchHelp1.Location = new System.Drawing.Point(7, 21);
            this.rchHelp1.Name = "rchHelp1";
            this.rchHelp1.ReadOnly = true;
            this.rchHelp1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
            this.rchHelp1.Size = new System.Drawing.Size(263, 137);
            this.rchHelp1.TabIndex = 0;
            this.rchHelp1.Text = resources.GetString("rchHelp1.Text");
            this.rchHelp1.WordWrap = false;
            // 
            // label21
            // 
            this.label21.AutoSize = true;
            this.label21.Location = new System.Drawing.Point(44, 24);
            this.label21.Name = "label21";
            this.label21.Size = new System.Drawing.Size(31, 13);
            this.label21.TabIndex = 9;
            this.label21.Text = "Nom";
            // 
            // cTxtNomLabo
            // 
            this.cTxtNomLabo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtNomLabo.Location = new System.Drawing.Point(104, 21);
            this.cTxtNomLabo.Name = "cTxtNomLabo";
            this.cTxtNomLabo.Size = new System.Drawing.Size(211, 22);
            this.cTxtNomLabo.TabIndex = 6;
            this.cTxtNomLabo.WaterMark = "Nom du Labo";
            this.cTxtNomLabo.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtNomLabo.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtNomLabo.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // cTxtZoneLabo
            // 
            this.cTxtZoneLabo.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtZoneLabo.Location = new System.Drawing.Point(104, 49);
            this.cTxtZoneLabo.Name = "cTxtZoneLabo";
            this.cTxtZoneLabo.Size = new System.Drawing.Size(118, 22);
            this.cTxtZoneLabo.TabIndex = 7;
            this.cTxtZoneLabo.WaterMark = "Zone géographique";
            this.cTxtZoneLabo.WaterMarkActiveForeColor = System.Drawing.Color.Gray;
            this.cTxtZoneLabo.WaterMarkFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.cTxtZoneLabo.WaterMarkForeColor = System.Drawing.Color.LightGray;
            // 
            // label22
            // 
            this.label22.AutoSize = true;
            this.label22.Location = new System.Drawing.Point(44, 52);
            this.label22.Name = "label22";
            this.label22.Size = new System.Drawing.Size(33, 13);
            this.label22.TabIndex = 9;
            this.label22.Text = "Zone";
            // 
            // frmParam
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnAnnuler;
            this.ClientSize = new System.Drawing.Size(787, 539);
            this.Controls.Add(this.groupBox5);
            this.Controls.Add(this.lblMainError);
            this.Controls.Add(this.tabParam);
            this.Controls.Add(this.btnAnnuler);
            this.Controls.Add(this.btnOk);
            this.Controls.Add(this.label1);
            this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "frmParam";
            this.Text = "Paramétrage";
            this.Load += new System.EventHandler(this.frmParam_Load);
            this.tabParam3.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.tabParam1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabParam.ResumeLayout(false);
            this.tabParam0.ResumeLayout(false);
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox8.ResumeLayout(false);
            this.groupBox8.PerformLayout();
            this.groupBox7.ResumeLayout(false);
            this.groupBox7.PerformLayout();
            this.tabParam2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.tabParam4.ResumeLayout(false);
            this.grpInfos.ResumeLayout(false);
            this.grpInfos.PerformLayout();
            this.grpMessage.ResumeLayout(false);
            this.grpMessage.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }