//------------------------------------------------------------------- public void AddColonne(string strEnTete, string strField, int nWidth) { ListViewAutoFilledColumn colonne = new ListViewAutoFilledColumn(); colonne.Text = strEnTete; colonne.Field = strField; colonne.Width = nWidth; this.Columns.Add(colonne); }
//------------------------------------------------------------------- private void OnSelectionnerLesChamps(object sender, EventArgs args) { ArrayList lst = new ArrayList(); Hashtable tableAvant = new Hashtable(); foreach (ListViewAutoFilledColumn col in Colonnes) { lst.Add(col.Field); tableAvant[col.Field] = col; } CInfoChampDynamique [] lstDecoches = null; CInfoChampDynamique[] champs = CFormSelectChampParentPourStructure.SelectProprietes(m_structureObjets, (string[])lst.ToArray(typeof(string)), ref lstDecoches); if (champs == null || champs.Length == 0) { return; } foreach (CInfoChampDynamique infoChamp in champs) { string strChamp = infoChamp.NomPropriete; if (tableAvant[strChamp] == null) { ListViewAutoFilledColumn col = new ListViewAutoFilledColumn(); col.Field = strChamp; col.Visible = true; col.Text = infoChamp.NomChamp; if (typeof(double).IsAssignableFrom(infoChamp.TypeDonnee)) { col.TextAlign = HorizontalAlignment.Right; } Colonnes.Add(col); FillColonne(col); } tableAvant.Remove(strChamp); } if (lstDecoches != null) { foreach (CInfoChampDynamique champ in lstDecoches) { foreach (ListViewAutoFilledColumn oldCol in tableAvant.Values) { if (oldCol.Field == champ.NomChamp) { RemoveColonne(oldCol); break; } } } } }
//------------------------------------------------------------------- private void FillColonne(ListViewAutoFilledColumn col) { int nNum = col.Index; foreach (ListViewItem item in Items) { while (item.SubItems.Count <= nNum) { item.SubItems.Add(""); } //string strText = CInterpreteurTextePropriete.GetStringValue(item.Tag, col.Field, "" ).ToString(); string strText = CInfoStructureDynamique.GetDonneeDynamiqueString(item.Tag, col.Field, ""); strText = strText.Replace("\r", " ,"); strText = strText.Replace("\n", " "); item.SubItems[nNum].Text = strText; } }
//------------------------------------------------------------------- public void ReadFromStream(MemoryStream stream) { BinaryFormatter bf = new BinaryFormatter(); int nNbVersion = (int)bf.Deserialize(stream); int nCount = (int)bf.Deserialize(stream); this.Clear(); for (int i = 0; i < nCount; i++) { ListViewAutoFilledColumn col = new ListViewAutoFilledColumn(); col.Read(stream); if (col.Width > 0) { this.Add(col); } } }
//------------------------------------------------------------------- public new ListViewAutoFilledColumn this[int nIndex] { get { ListViewAutoFilledColumn colonne = new ListViewAutoFilledColumn(); try { colonne = (ListViewAutoFilledColumn) base[nIndex]; } catch { System.Diagnostics.Debug.WriteLine("Column at index " + nIndex + " does not exist."); } return(colonne); } /*set * { * base[nIndex] = value; * //m_listeColonnes[nIndex] = value; * }*/ }
/*//------------------------------------------------------------------- * private void MenuItemClick(object sender, EventArgs e) * { * if(sender is MenuItem) * { * MenuItem menuItem = ((MenuItemWithTag) sender); * bool bCheck = !menuItem.Checked; * menuItem.Checked = bCheck; * if ( bCheck ) * { * if ( menuItem.Tag is ListViewAutoFilledColumn ) * ((ListViewAutoFilledColumn)menuItem.Tag).Visible = true; * else * { * if ( menuItem.Tag is CInfoChampMenu ) * { * CInfoChampDynamique info = (CInfoChampMenu)menuItem.Tag; * string strChamp = info.NomPropriete; * ListViewAutoFilledColumn col = new ListViewAutoFilledColumn(); * col.Field = strChamp; * col.Visible = true; * col.Text = info.NomChamp; * if ( typeof(double).IsAssignableFrom ( info.TypeDonnee ) ) * col.TextAlign = HorizontalAlignment.Right; * Colonnes.Add ( col ); * FillColonne(col); * } * } * } * else * { * if ( menuItem.Tag is ListViewAutoFilledColumn ) * { * RemoveColonne ( (ColumnHeader)menuItem.Tag ); * } * } * } * }*/ //------------------------------------------------------------------- private void MenuItemClick(object sender, EventArgs e) { if (sender is MenuItem) { MenuItem menuItem = ((MenuItem)sender); bool bCheck = !menuItem.Checked; menuItem.Checked = bCheck; if (bCheck) { CInfoChampMenu infoChamp = (CInfoChampMenu)menuItem.Tag; string strChamp = infoChamp.Propriete; ListViewAutoFilledColumn col = new ListViewAutoFilledColumn(); col.Field = strChamp; col.Text = infoChamp.Nom; if (typeof(double).IsAssignableFrom(infoChamp.TypeChamp)) { col.TextAlign = HorizontalAlignment.Right; } Colonnes.Add(col); FillColonne(col); } else { if (menuItem.Tag is CInfoChampMenu) { string strChamp = ((CInfoChampMenu)menuItem.Tag).Propriete; foreach (ListViewAutoFilledColumn col in Colonnes) { if (col.Field == strChamp) { RemoveColonne(col); break; } } } } } }
/// <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() { this.m_lnkFormulaire = new System.Windows.Forms.LinkLabel(); this.m_panelListeFormulaires = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewAutoFilledColumn4 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_lnkNewChampCustom = new System.Windows.Forms.LinkLabel(); this.m_panelListeChampsCustom = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewAutoFilledColumn3 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.label1 = new System.Windows.Forms.Label(); this.m_numUpDownOrdre = new sc2i.win32.common.C2iNumericUpDown(); this.m_splitContainer = new System.Windows.Forms.SplitContainer(); this.m_panelConteneurGererFormulaires = new System.Windows.Forms.Panel(); this.m_panelConteneurGererChamps = new System.Windows.Forms.Panel(); ((System.ComponentModel.ISupportInitialize)(this.m_numUpDownOrdre)).BeginInit(); this.m_splitContainer.Panel1.SuspendLayout(); this.m_splitContainer.Panel2.SuspendLayout(); this.m_splitContainer.SuspendLayout(); this.m_panelConteneurGererFormulaires.SuspendLayout(); this.m_panelConteneurGererChamps.SuspendLayout(); this.SuspendLayout(); // // m_lnkFormulaire // this.m_lnkFormulaire.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.m_lnkFormulaire.AutoSize = true; this.m_lnkFormulaire.Location = new System.Drawing.Point(181, 11); this.m_lnkFormulaire.Name = "m_lnkFormulaire"; this.m_lnkFormulaire.Size = new System.Drawing.Size(126, 13); this.m_lnkFormulaire.TabIndex = 7; this.m_lnkFormulaire.TabStop = true; this.m_lnkFormulaire.Text = "Form management|30104"; this.m_lnkFormulaire.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkFormulaire_LinkClicked); // // m_panelListeFormulaires // this.m_panelListeFormulaires.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.m_panelListeFormulaires.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewAutoFilledColumn4 }); this.m_panelListeFormulaires.EnableCustomisation = true; this.m_panelListeFormulaires.ExclusionParException = false; this.m_panelListeFormulaires.Location = new System.Drawing.Point(17, 27); this.m_panelListeFormulaires.LockEdition = true; this.m_panelListeFormulaires.Name = "m_panelListeFormulaires"; this.m_panelListeFormulaires.Size = new System.Drawing.Size(299, 232); this.m_panelListeFormulaires.TabIndex = 6; // // listViewAutoFilledColumn4 // this.listViewAutoFilledColumn4.Field = "Libelle"; this.listViewAutoFilledColumn4.PrecisionWidth = 0; this.listViewAutoFilledColumn4.ProportionnalSize = false; this.listViewAutoFilledColumn4.Text = "Label|50"; this.listViewAutoFilledColumn4.Visible = true; this.listViewAutoFilledColumn4.Width = 120; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Label|50"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 177; // // m_lnkNewChampCustom // this.m_lnkNewChampCustom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.m_lnkNewChampCustom.AutoSize = true; this.m_lnkNewChampCustom.Location = new System.Drawing.Point(176, 11); this.m_lnkNewChampCustom.Name = "m_lnkNewChampCustom"; this.m_lnkNewChampCustom.Size = new System.Drawing.Size(125, 13); this.m_lnkNewChampCustom.TabIndex = 4; this.m_lnkNewChampCustom.TabStop = true; this.m_lnkNewChampCustom.Text = "Field management|30105"; this.m_lnkNewChampCustom.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkNewChampCustom_LinkClicked); // // m_panelListeChampsCustom // this.m_panelListeChampsCustom.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.m_panelListeChampsCustom.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewAutoFilledColumn3 }); this.m_panelListeChampsCustom.EnableCustomisation = true; this.m_panelListeChampsCustom.ExclusionParException = false; this.m_panelListeChampsCustom.Location = new System.Drawing.Point(17, 27); this.m_panelListeChampsCustom.LockEdition = true; this.m_panelListeChampsCustom.Name = "m_panelListeChampsCustom"; this.m_panelListeChampsCustom.Size = new System.Drawing.Size(295, 196); this.m_panelListeChampsCustom.TabIndex = 5; this.m_panelListeChampsCustom.OnValideRelation += new sc2i.win32.data.navigation.AssocieDataEventHandler(this.m_panelListeChampsCustom_OnValideRelation); this.m_panelListeChampsCustom.OnSelectionChanged += new sc2i.win32.data.navigation.ObjetSelecionneeChangedEventHandler(this.m_panelListeChampsCustom_OnSelectionChanged); this.m_panelListeChampsCustom.OnAssocieData += new sc2i.win32.data.navigation.AssocieDataEventHandler(this.m_panelListeChampsCustom_OnAssocieData); // // listViewAutoFilledColumn3 // this.listViewAutoFilledColumn3.Field = "Nom"; this.listViewAutoFilledColumn3.PrecisionWidth = 0; this.listViewAutoFilledColumn3.ProportionnalSize = false; this.listViewAutoFilledColumn3.Text = "Name|64"; this.listViewAutoFilledColumn3.Visible = true; this.listViewAutoFilledColumn3.Width = 200; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Nom"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 225; // // 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(26, 226); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 16); this.label1.TabIndex = 8; this.label1.Text = "Order|30106"; // // m_numUpDownOrdre // this.m_numUpDownOrdre.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.m_numUpDownOrdre.DoubleValue = 0; this.m_numUpDownOrdre.IntValue = 0; this.m_numUpDownOrdre.Location = new System.Drawing.Point(96, 224); this.m_numUpDownOrdre.LockEdition = false; this.m_numUpDownOrdre.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); this.m_numUpDownOrdre.Name = "m_numUpDownOrdre"; this.m_numUpDownOrdre.Size = new System.Drawing.Size(82, 20); this.m_numUpDownOrdre.TabIndex = 9; this.m_numUpDownOrdre.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.m_numUpDownOrdre.ThousandsSeparator = true; this.m_numUpDownOrdre.ValueChanged += new System.EventHandler(this.c2iNumericUpDown1_ValueChanged); // // m_splitContainer // this.m_splitContainer.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.m_splitContainer.Location = new System.Drawing.Point(0, 3); this.m_splitContainer.Name = "m_splitContainer"; // // m_splitContainer.Panel1 // this.m_splitContainer.Panel1.Controls.Add(this.m_panelConteneurGererFormulaires); // // m_splitContainer.Panel2 // this.m_splitContainer.Panel2.Controls.Add(this.m_panelConteneurGererChamps); this.m_splitContainer.Size = new System.Drawing.Size(663, 262); this.m_splitContainer.SplitterDistance = 332; this.m_splitContainer.TabIndex = 10; // // m_panelConteneurGererFormulaires // this.m_panelConteneurGererFormulaires.Controls.Add(this.m_panelListeFormulaires); this.m_panelConteneurGererFormulaires.Controls.Add(this.m_lnkFormulaire); this.m_panelConteneurGererFormulaires.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelConteneurGererFormulaires.Location = new System.Drawing.Point(0, 0); this.m_panelConteneurGererFormulaires.Name = "m_panelConteneurGererFormulaires"; this.m_panelConteneurGererFormulaires.Size = new System.Drawing.Size(332, 262); this.m_panelConteneurGererFormulaires.TabIndex = 10; // // m_panelConteneurGererChamps // this.m_panelConteneurGererChamps.Controls.Add(this.m_lnkNewChampCustom); this.m_panelConteneurGererChamps.Controls.Add(this.m_numUpDownOrdre); this.m_panelConteneurGererChamps.Controls.Add(this.label1); this.m_panelConteneurGererChamps.Controls.Add(this.m_panelListeChampsCustom); this.m_panelConteneurGererChamps.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelConteneurGererChamps.Location = new System.Drawing.Point(0, 0); this.m_panelConteneurGererChamps.Name = "m_panelConteneurGererChamps"; this.m_panelConteneurGererChamps.Size = new System.Drawing.Size(327, 262); this.m_panelConteneurGererChamps.TabIndex = 10; // // CPanelEditDefinisseurChampsCustom // this.Controls.Add(this.m_splitContainer); this.Name = "CPanelEditDefinisseurChampsCustom"; this.Size = new System.Drawing.Size(666, 268); this.Load += new System.EventHandler(this.CPanelEditDefinisseurChampsCustom_Load); ((System.ComponentModel.ISupportInitialize)(this.m_numUpDownOrdre)).EndInit(); this.m_splitContainer.Panel1.ResumeLayout(false); this.m_splitContainer.Panel2.ResumeLayout(false); this.m_splitContainer.ResumeLayout(false); this.m_panelConteneurGererFormulaires.ResumeLayout(false); this.m_panelConteneurGererFormulaires.PerformLayout(); this.m_panelConteneurGererChamps.ResumeLayout(false); this.m_panelConteneurGererChamps.PerformLayout(); 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(CFormSelectUnObjetDonnee)); sc2i.win32.common.GLColumn glColumn1 = new sc2i.win32.common.GLColumn(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_btnCancel = new System.Windows.Forms.Button(); this.m_btnOK = new System.Windows.Forms.Button(); this.m_wndListeElements = new sc2i.win32.common.GlacialList(); this.m_panelRecherche = new System.Windows.Forms.Panel(); this.m_txtRecherche = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.m_btnFiltrer = new System.Windows.Forms.Button(); this.m_arbre = new sc2i.win32.data.CArbreObjetsDonneesHierarchiques(); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.m_lblInstructions = new System.Windows.Forms.Label(); this.m_imageType = new System.Windows.Forms.PictureBox(); this.cExtStyle1 = new sc2i.win32.common.CExtStyle(); this.m_panelRecherche.SuspendLayout(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_imageType)).BeginInit(); this.SuspendLayout(); // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "DescriptionElement"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Description"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 396; // // m_btnCancel // this.m_btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.m_btnCancel.Location = new System.Drawing.Point(239, 8); this.m_btnCancel.Name = "m_btnCancel"; this.m_btnCancel.Size = new System.Drawing.Size(75, 23); this.cExtStyle1.SetStyleBackColor(this.m_btnCancel, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_btnCancel, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnCancel.TabIndex = 7; this.m_btnCancel.Text = "Cancel|11"; // // m_btnOK // this.m_btnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.m_btnOK.Location = new System.Drawing.Point(134, 8); this.m_btnOK.Name = "m_btnOK"; this.m_btnOK.Size = new System.Drawing.Size(75, 23); this.cExtStyle1.SetStyleBackColor(this.m_btnOK, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_btnOK, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnOK.TabIndex = 6; this.m_btnOK.Text = "Ok|10"; this.m_btnOK.Click += new System.EventHandler(this.m_btnOK_Click); // // m_wndListeElements // this.m_wndListeElements.AllowColumnResize = true; this.m_wndListeElements.AllowMultiselect = false; this.m_wndListeElements.AlternateBackground = System.Drawing.Color.DarkGreen; this.m_wndListeElements.AlternatingColors = false; this.m_wndListeElements.AutoHeight = true; this.m_wndListeElements.AutoSort = true; this.m_wndListeElements.BackColor = System.Drawing.SystemColors.ControlLightLight; this.m_wndListeElements.CanChangeActivationCheckBoxes = false; this.m_wndListeElements.CheckBoxes = false; this.m_wndListeElements.CheckedItems = ((System.Collections.ArrayList)(resources.GetObject("m_wndListeElements.CheckedItems"))); glColumn1.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn1.ActiveControlItems"))); glColumn1.BackColor = System.Drawing.Color.Transparent; glColumn1.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn1.ForColor = System.Drawing.Color.Black; glColumn1.ImageIndex = -1; glColumn1.IsCheckColumn = false; glColumn1.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn1.Name = "Column1"; glColumn1.Propriete = "DescriptionElement"; glColumn1.Text = "Description|250"; glColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn1.Width = 420; this.m_wndListeElements.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn1 }); this.m_wndListeElements.ContexteUtilisation = ""; this.m_wndListeElements.Dock = System.Windows.Forms.DockStyle.Top; this.m_wndListeElements.EnableCustomisation = true; this.m_wndListeElements.FocusedItem = null; this.m_wndListeElements.FullRowSelect = true; this.m_wndListeElements.GLGridLines = sc2i.win32.common.GLGridStyles.gridSolid; this.m_wndListeElements.GridColor = System.Drawing.Color.Gray; this.m_wndListeElements.HasImages = false; this.m_wndListeElements.HeaderHeight = 22; this.m_wndListeElements.HeaderStyle = sc2i.win32.common.GLHeaderStyles.Normal; this.m_wndListeElements.HeaderTextColor = System.Drawing.Color.Black; this.m_wndListeElements.HeaderTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8F); this.m_wndListeElements.HeaderVisible = true; this.m_wndListeElements.HeaderWordWrap = false; this.m_wndListeElements.HotColumnIndex = -1; this.m_wndListeElements.HotItemIndex = -1; this.m_wndListeElements.HotTracking = false; this.m_wndListeElements.HotTrackingColor = System.Drawing.Color.LightGray; this.m_wndListeElements.ImageList = null; this.m_wndListeElements.ItemHeight = 17; this.m_wndListeElements.ItemWordWrap = false; this.m_wndListeElements.ListeSource = null; this.m_wndListeElements.Location = new System.Drawing.Point(0, 66); this.m_wndListeElements.MaxHeight = 17; this.m_wndListeElements.Name = "m_wndListeElements"; this.m_wndListeElements.SelectedTextColor = System.Drawing.Color.White; this.m_wndListeElements.SelectionColor = System.Drawing.Color.DarkBlue; this.m_wndListeElements.ShowBorder = true; this.m_wndListeElements.ShowFocusRect = false; this.m_wndListeElements.Size = new System.Drawing.Size(440, 151); this.m_wndListeElements.SortIndex = 0; this.cExtStyle1.SetStyleBackColor(this.m_wndListeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_wndListeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeElements.SuperFlatHeaderColor = System.Drawing.Color.White; this.m_wndListeElements.TabIndex = 8; this.m_wndListeElements.Text = "glacialList1"; this.m_wndListeElements.TrierAuClicSurEnteteColonne = true; // // m_panelRecherche // this.m_panelRecherche.BackColor = System.Drawing.Color.White; this.m_panelRecherche.Controls.Add(this.m_txtRecherche); this.m_panelRecherche.Controls.Add(this.label1); this.m_panelRecherche.Controls.Add(this.m_btnFiltrer); this.m_panelRecherche.Dock = System.Windows.Forms.DockStyle.Top; this.m_panelRecherche.Location = new System.Drawing.Point(0, 0); this.m_panelRecherche.Name = "m_panelRecherche"; this.m_panelRecherche.Size = new System.Drawing.Size(440, 24); this.cExtStyle1.SetStyleBackColor(this.m_panelRecherche, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_panelRecherche, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelRecherche.TabIndex = 9; // // m_txtRecherche // this.m_txtRecherche.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtRecherche.Location = new System.Drawing.Point(81, 0); this.m_txtRecherche.Name = "m_txtRecherche"; this.m_txtRecherche.Size = new System.Drawing.Size(335, 20); this.cExtStyle1.SetStyleBackColor(this.m_txtRecherche, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_txtRecherche, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtRecherche.TabIndex = 2; this.m_txtRecherche.Leave += new System.EventHandler(this.m_txtRecherche_Leave); this.m_txtRecherche.Enter += new System.EventHandler(this.m_txtRecherche_Enter); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Left; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(81, 24); this.cExtStyle1.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 1; this.label1.Text = "Search|171"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // m_btnFiltrer // this.m_btnFiltrer.Dock = System.Windows.Forms.DockStyle.Right; this.m_btnFiltrer.Image = ((System.Drawing.Image)(resources.GetObject("m_btnFiltrer.Image"))); this.m_btnFiltrer.Location = new System.Drawing.Point(416, 0); this.m_btnFiltrer.Name = "m_btnFiltrer"; this.m_btnFiltrer.Size = new System.Drawing.Size(24, 24); this.cExtStyle1.SetStyleBackColor(this.m_btnFiltrer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_btnFiltrer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnFiltrer.TabIndex = 0; this.m_btnFiltrer.Click += new System.EventHandler(this.m_btnFiltrer_Click); // // m_arbre // this.m_arbre.AddRootForAll = false; this.m_arbre.AutoriserFilsDesAutorises = true; this.m_arbre.Dock = System.Windows.Forms.DockStyle.Fill; this.m_arbre.ElementSelectionne = null; this.m_arbre.ElementsSelectionnes = new sc2i.data.CObjetDonnee[0]; this.m_arbre.ForeColorNonSelectionnable = System.Drawing.Color.DarkGray; this.m_arbre.Location = new System.Drawing.Point(0, 217); this.m_arbre.Name = "m_arbre"; this.m_arbre.RootLabel = "Root"; this.m_arbre.Size = new System.Drawing.Size(440, 143); this.cExtStyle1.SetStyleBackColor(this.m_arbre, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_arbre, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_arbre.TabIndex = 10; // // panel1 // this.panel1.Controls.Add(this.m_btnOK); this.panel1.Controls.Add(this.m_btnCancel); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel1.Location = new System.Drawing.Point(0, 360); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(440, 34); this.cExtStyle1.SetStyleBackColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.panel1.TabIndex = 11; // // panel2 // this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.panel2.Controls.Add(this.m_lblInstructions); this.panel2.Controls.Add(this.m_imageType); this.panel2.Dock = System.Windows.Forms.DockStyle.Top; this.panel2.ForeColor = System.Drawing.Color.Black; this.panel2.Location = new System.Drawing.Point(0, 24); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(440, 42); this.cExtStyle1.SetStyleBackColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.cExtStyle1.SetStyleForeColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.panel2.TabIndex = 12; // // m_lblInstructions // this.m_lblInstructions.Dock = System.Windows.Forms.DockStyle.Fill; this.m_lblInstructions.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_lblInstructions.Location = new System.Drawing.Point(42, 0); this.m_lblInstructions.Name = "m_lblInstructions"; this.m_lblInstructions.Size = new System.Drawing.Size(398, 42); this.cExtStyle1.SetStyleBackColor(this.m_lblInstructions, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_lblInstructions, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblInstructions.TabIndex = 4; this.m_lblInstructions.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // m_imageType // this.m_imageType.Dock = System.Windows.Forms.DockStyle.Left; this.m_imageType.Location = new System.Drawing.Point(0, 0); this.m_imageType.Name = "m_imageType"; this.m_imageType.Size = new System.Drawing.Size(42, 42); this.cExtStyle1.SetStyleBackColor(this.m_imageType, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.cExtStyle1.SetStyleForeColor(this.m_imageType, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_imageType.TabIndex = 3; this.m_imageType.TabStop = false; // // CFormSelectUnObjetDonnee // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(440, 394); this.Controls.Add(this.m_arbre); this.Controls.Add(this.m_wndListeElements); this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Controls.Add(this.m_panelRecherche); this.ForeColor = System.Drawing.Color.Black; this.Name = "CFormSelectUnObjetDonnee"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.cExtStyle1.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondFenetre); this.cExtStyle1.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTexteFenetre); this.Text = "Object selection|170"; this.Load += new System.EventHandler(this.CFormSelectUnObjetDonnee_Load); this.m_panelRecherche.ResumeLayout(false); this.m_panelRecherche.PerformLayout(); this.panel1.ResumeLayout(false); this.panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.m_imageType)).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() { this.components = new System.ComponentModel.Container(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.tabPage1 = new Crownwood.Magic.Controls.TabPage(); this.m_splitterFormulesOnglet1 = new System.Windows.Forms.SplitContainer(); this.m_txtFormuleListeDocuments = new sc2i.win32.expression.CControleEditeFormule(); this.label1 = new System.Windows.Forms.Label(); this.m_txtFormuleNomFichier = new sc2i.win32.expression.CControleEditeFormule(); this.label2 = new System.Windows.Forms.Label(); this.tabPage2 = new Crownwood.Magic.Controls.TabPage(); this.label3 = new System.Windows.Forms.Label(); this.m_wndListeCategories = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.tabPage3 = new Crownwood.Magic.Controls.TabPage(); this.m_txtFormuleCle = new sc2i.win32.expression.CControleEditeFormule(); this.label7 = new System.Windows.Forms.Label(); this.m_txtFormuleDescriptif = new sc2i.win32.expression.CControleEditeFormule(); this.label5 = new System.Windows.Forms.Label(); this.m_txtFormuleLibelle = new sc2i.win32.expression.CControleEditeFormule(); this.label4 = new System.Windows.Forms.Label(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_wndAideFormule = new sc2i.win32.expression.CControlAideFormule(); this.m_exStyle = new sc2i.win32.common.CExtStyle(); this.m_tabControl.SuspendLayout(); this.tabPage1.SuspendLayout(); this.m_splitterFormulesOnglet1.Panel1.SuspendLayout(); this.m_splitterFormulesOnglet1.Panel2.SuspendLayout(); this.m_splitterFormulesOnglet1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.tabPage3.SuspendLayout(); this.SuspendLayout(); // // m_lblStockerResIn // this.m_exStyle.SetStyleBackColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblStockerResIn.Text = "Store the result in|112"; // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_tabControl.Location = new System.Drawing.Point(8, 38); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 0; this.m_tabControl.SelectedTab = this.tabPage1; this.m_tabControl.Size = new System.Drawing.Size(476, 358); this.m_exStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_exStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 7; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.tabPage1, this.tabPage2, this.tabPage3 }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // tabPage1 // this.tabPage1.Controls.Add(this.m_splitterFormulesOnglet1); this.tabPage1.Location = new System.Drawing.Point(0, 25); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage1.TabIndex = 10; this.tabPage1.Title = "Content|20016"; // // m_splitterFormulesOnglet1 // this.m_splitterFormulesOnglet1.Dock = System.Windows.Forms.DockStyle.Fill; this.m_splitterFormulesOnglet1.Location = new System.Drawing.Point(0, 0); this.m_splitterFormulesOnglet1.Name = "m_splitterFormulesOnglet1"; this.m_splitterFormulesOnglet1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // m_splitterFormulesOnglet1.Panel1 // this.m_splitterFormulesOnglet1.Panel1.Controls.Add(this.m_txtFormuleListeDocuments); this.m_splitterFormulesOnglet1.Panel1.Controls.Add(this.label1); this.m_exStyle.SetStyleBackColor(this.m_splitterFormulesOnglet1.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_splitterFormulesOnglet1.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_splitterFormulesOnglet1.Panel2 // this.m_splitterFormulesOnglet1.Panel2.Controls.Add(this.m_txtFormuleNomFichier); this.m_splitterFormulesOnglet1.Panel2.Controls.Add(this.label2); this.m_exStyle.SetStyleBackColor(this.m_splitterFormulesOnglet1.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_splitterFormulesOnglet1.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_splitterFormulesOnglet1.Size = new System.Drawing.Size(460, 317); this.m_splitterFormulesOnglet1.SplitterDistance = 146; this.m_exStyle.SetStyleBackColor(this.m_splitterFormulesOnglet1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_splitterFormulesOnglet1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_splitterFormulesOnglet1.TabIndex = 5; // // m_txtFormuleListeDocuments // this.m_txtFormuleListeDocuments.BackColor = System.Drawing.Color.White; this.m_txtFormuleListeDocuments.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormuleListeDocuments.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleListeDocuments.Formule = null; this.m_txtFormuleListeDocuments.Location = new System.Drawing.Point(0, 13); this.m_txtFormuleListeDocuments.LockEdition = false; this.m_txtFormuleListeDocuments.Name = "m_txtFormuleListeDocuments"; this.m_txtFormuleListeDocuments.Size = new System.Drawing.Size(460, 133); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleListeDocuments, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleListeDocuments, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleListeDocuments.TabIndex = 2; this.m_txtFormuleListeDocuments.Enter += new System.EventHandler(this.OnEnterTextBoxFormuleSurProcess); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Top; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(460, 13); this.m_exStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 3; this.label1.Text = "EDM document list|20041"; // // m_txtFormuleNomFichier // this.m_txtFormuleNomFichier.BackColor = System.Drawing.Color.White; this.m_txtFormuleNomFichier.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormuleNomFichier.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleNomFichier.Formule = null; this.m_txtFormuleNomFichier.Location = new System.Drawing.Point(0, 13); this.m_txtFormuleNomFichier.LockEdition = false; this.m_txtFormuleNomFichier.Name = "m_txtFormuleNomFichier"; this.m_txtFormuleNomFichier.Size = new System.Drawing.Size(460, 154); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleNomFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleNomFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleNomFichier.TabIndex = 5; this.m_txtFormuleNomFichier.Enter += new System.EventHandler(this.m_txtFormuleNomFichier_Enter); // // label2 // this.label2.Dock = System.Windows.Forms.DockStyle.Top; this.label2.Location = new System.Drawing.Point(0, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(460, 13); this.m_exStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4; this.label2.Text = "file name for each document|20042"; // // tabPage2 // this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.m_wndListeCategories); this.tabPage2.Location = new System.Drawing.Point(0, 25); this.tabPage2.Name = "tabPage2"; this.tabPage2.Selected = false; this.tabPage2.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage2.TabIndex = 11; this.tabPage2.Title = "EDM category|176"; this.tabPage2.Visible = false; // // label3 // this.label3.Location = new System.Drawing.Point(8, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(322, 16); this.m_exStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 1; this.label3.Text = "The document will be stored in the following categories|30244"; // // m_wndListeCategories // this.m_wndListeCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_wndListeCategories.CheckBoxes = true; this.m_wndListeCategories.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn2 }); this.m_wndListeCategories.EnableCustomisation = true; this.m_wndListeCategories.FullRowSelect = true; this.m_wndListeCategories.Location = new System.Drawing.Point(8, 40); this.m_wndListeCategories.MultiSelect = false; this.m_wndListeCategories.Name = "m_wndListeCategories"; this.m_wndListeCategories.Size = new System.Drawing.Size(296, 270); this.m_exStyle.SetStyleBackColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeCategories.TabIndex = 0; this.m_wndListeCategories.UseCompatibleStateImageBehavior = false; this.m_wndListeCategories.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|30245"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 279; // // tabPage3 // this.tabPage3.Controls.Add(this.m_txtFormuleCle); this.tabPage3.Controls.Add(this.label7); this.tabPage3.Controls.Add(this.m_txtFormuleDescriptif); this.tabPage3.Controls.Add(this.label5); this.tabPage3.Controls.Add(this.m_txtFormuleLibelle); this.tabPage3.Controls.Add(this.label4); this.tabPage3.Location = new System.Drawing.Point(0, 25); this.tabPage3.Name = "tabPage3"; this.tabPage3.Selected = false; this.tabPage3.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage3.TabIndex = 12; this.tabPage3.Title = "Document characteristics|1039"; this.tabPage3.Visible = false; // // m_txtFormuleCle // this.m_txtFormuleCle.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.m_txtFormuleCle.BackColor = System.Drawing.Color.White; this.m_txtFormuleCle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleCle.Formule = null; this.m_txtFormuleCle.Location = new System.Drawing.Point(8, 224); this.m_txtFormuleCle.LockEdition = false; this.m_txtFormuleCle.Name = "m_txtFormuleCle"; this.m_txtFormuleCle.Size = new System.Drawing.Size(444, 86); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleCle.TabIndex = 7; this.m_txtFormuleCle.Enter += new System.EventHandler(this.OnEnterTextBoxFormuleSurProcess); // // label7 // this.label7.Location = new System.Drawing.Point(8, 208); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(120, 16); this.m_exStyle.SetStyleBackColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label7.TabIndex = 6; this.label7.Text = "Key (unique Id)|1043"; // // m_txtFormuleDescriptif // this.m_txtFormuleDescriptif.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleDescriptif.BackColor = System.Drawing.Color.White; this.m_txtFormuleDescriptif.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleDescriptif.Formule = null; this.m_txtFormuleDescriptif.Location = new System.Drawing.Point(8, 136); this.m_txtFormuleDescriptif.LockEdition = false; this.m_txtFormuleDescriptif.Name = "m_txtFormuleDescriptif"; this.m_txtFormuleDescriptif.Size = new System.Drawing.Size(444, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleDescriptif.TabIndex = 3; this.m_txtFormuleDescriptif.Enter += new System.EventHandler(this.OnEnterTextBoxFormuleSurProcess); // // label5 // this.label5.Location = new System.Drawing.Point(8, 120); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(162, 16); this.m_exStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 2; this.label5.Text = "Document description|1042"; // // m_txtFormuleLibelle // this.m_txtFormuleLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleLibelle.BackColor = System.Drawing.Color.White; this.m_txtFormuleLibelle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleLibelle.Formule = null; this.m_txtFormuleLibelle.Location = new System.Drawing.Point(8, 48); this.m_txtFormuleLibelle.LockEdition = false; this.m_txtFormuleLibelle.Name = "m_txtFormuleLibelle"; this.m_txtFormuleLibelle.Size = new System.Drawing.Size(444, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleLibelle.TabIndex = 1; this.m_txtFormuleLibelle.Enter += new System.EventHandler(this.OnEnterTextBoxFormuleSurProcess); // // label4 // this.label4.Location = new System.Drawing.Point(8, 32); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(112, 16); this.m_exStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 0; this.label4.Text = "Document label|1041"; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Name |164"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 176; // // m_wndAideFormule // this.m_wndAideFormule.BackColor = System.Drawing.Color.White; this.m_wndAideFormule.Dock = System.Windows.Forms.DockStyle.Right; this.m_wndAideFormule.FournisseurProprietes = null; this.m_wndAideFormule.Location = new System.Drawing.Point(484, 32); this.m_wndAideFormule.Name = "m_wndAideFormule"; this.m_wndAideFormule.ObjetInterroge = null; this.m_wndAideFormule.SendIdChamps = false; this.m_wndAideFormule.Size = new System.Drawing.Size(176, 361); this.m_exStyle.SetStyleBackColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndAideFormule.TabIndex = 4; this.m_wndAideFormule.OnSendCommande += new sc2i.win32.expression.SendCommande(this.m_wndAideFormule_OnSendCommande); // // CFormEditZipGedDansGed // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(660, 441); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.m_wndAideFormule); this.Name = "CFormEditZipGedDansGed"; this.m_exStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Text = "Create zip file from edm documents|20040"; this.Load += new System.EventHandler(this.CFormEditZipGedDansGedCode_Load); this.Controls.SetChildIndex(this.m_wndAideFormule, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.tabPage1.ResumeLayout(false); this.m_splitterFormulesOnglet1.Panel1.ResumeLayout(false); this.m_splitterFormulesOnglet1.Panel2.ResumeLayout(false); this.m_splitterFormulesOnglet1.ResumeLayout(false); this.tabPage2.ResumeLayout(false); this.tabPage3.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); this.m_listViewRoles = new sc2i.win32.common.ListViewAutoFilled(); this.listViewColumn5 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_timerMAJOnglets = new System.Windows.Forms.Timer(this.components); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.m_pageEOs = new Crownwood.Magic.Controls.TabPage(); this.m_panelEOS = new timos.CPanelAffectationEO(); this.m_pageGroupes = new Crownwood.Magic.Controls.TabPage(); this.label8 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.m_btnApercuHierarchie = new System.Windows.Forms.LinkLabel(); this.label5 = new System.Windows.Forms.Label(); this.m_wndListeMembres = new sc2i.win32.common.ListViewAutoFilled(); this.listViewColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.label4 = new System.Windows.Forms.Label(); this.m_panelNecessitesGroupes = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.label2 = new System.Windows.Forms.Label(); this.m_panelGroupesContenants = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewColumn6 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_pageRoles = new Crownwood.Magic.Controls.TabPage(); this.m_pageChampsCustom = new Crownwood.Magic.Controls.TabPage(); this.m_panelDefinisseurChamps = new timos.win32.composants.CPanelEditDefinisseurChampsCustom(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn3 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.c2iPanelOmbre1 = new sc2i.win32.common.C2iPanelOmbre(); this.m_txtNom = new sc2i.win32.common.C2iTextBox(); this.label9 = new System.Windows.Forms.Label(); this.m_chkMasque = new System.Windows.Forms.CheckBox(); this.label1 = new System.Windows.Forms.Label(); this.m_tabControl.SuspendLayout(); this.m_pageEOs.SuspendLayout(); this.m_pageGroupes.SuspendLayout(); this.m_pageRoles.SuspendLayout(); this.m_pageChampsCustom.SuspendLayout(); this.c2iPanelOmbre1.SuspendLayout(); this.SuspendLayout(); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_listViewRoles // this.m_listViewRoles.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.m_listViewRoles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewColumn5 }); this.m_listViewRoles.EnableCustomisation = true; this.m_listViewRoles.FullRowSelect = true; this.m_extLinkField.SetLinkField(this.m_listViewRoles, ""); this.m_listViewRoles.Location = new System.Drawing.Point(8, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listViewRoles, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_listViewRoles.Name = "m_listViewRoles"; this.m_listViewRoles.Size = new System.Drawing.Size(778, 362); this.m_extStyle.SetStyleBackColor(this.m_listViewRoles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listViewRoles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listViewRoles.TabIndex = 0; this.m_listViewRoles.UseCompatibleStateImageBehavior = false; this.m_listViewRoles.View = System.Windows.Forms.View.Details; this.m_listViewRoles.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.m_listViewRoles_ItemCheck); // // listViewColumn5 // this.listViewColumn5.Field = "Libelle"; this.listViewColumn5.PrecisionWidth = 0; this.listViewColumn5.ProportionnalSize = false; this.listViewColumn5.Text = "Label|50"; this.listViewColumn5.Visible = true; this.listViewColumn5.Width = 450; // // m_timerMAJOnglets // this.m_timerMAJOnglets.Interval = 300; this.m_timerMAJOnglets.Tick += new System.EventHandler(this.m_timerMAJOnglets_Tick); // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_tabControl, ""); this.m_tabControl.Location = new System.Drawing.Point(16, 104); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 0; this.m_tabControl.SelectedTab = this.m_pageGroupes; this.m_tabControl.Size = new System.Drawing.Size(810, 418); this.m_extStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 1; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.m_pageGroupes, this.m_pageRoles, this.m_pageChampsCustom, this.m_pageEOs }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // m_pageEOs // this.m_pageEOs.Controls.Add(this.m_panelEOS); this.m_extLinkField.SetLinkField(this.m_pageEOs, ""); this.m_pageEOs.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageEOs, sc2i.win32.common.TypeModeEdition.Autonome); this.m_pageEOs.Name = "m_pageEOs"; this.m_pageEOs.Selected = false; this.m_pageEOs.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_pageEOs, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_pageEOs, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageEOs.TabIndex = 10; this.m_pageEOs.Title = "Organizational Entities|53"; // // m_panelEOS // this.m_panelEOS.Dock = System.Windows.Forms.DockStyle.Fill; this.m_extLinkField.SetLinkField(this.m_panelEOS, ""); this.m_panelEOS.Location = new System.Drawing.Point(0, 0); this.m_panelEOS.LockEdition = true; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEOS, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelEOS.Name = "m_panelEOS"; this.m_panelEOS.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_panelEOS, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelEOS, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelEOS.TabIndex = 1; // // m_pageGroupes // this.m_pageGroupes.Controls.Add(this.label8); this.m_pageGroupes.Controls.Add(this.label7); this.m_pageGroupes.Controls.Add(this.label6); this.m_pageGroupes.Controls.Add(this.m_btnApercuHierarchie); this.m_pageGroupes.Controls.Add(this.label5); this.m_pageGroupes.Controls.Add(this.m_wndListeMembres); this.m_pageGroupes.Controls.Add(this.label4); this.m_pageGroupes.Controls.Add(this.m_panelNecessitesGroupes); this.m_pageGroupes.Controls.Add(this.label2); this.m_pageGroupes.Controls.Add(this.m_panelGroupesContenants); this.m_extLinkField.SetLinkField(this.m_pageGroupes, ""); this.m_pageGroupes.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageGroupes, sc2i.win32.common.TypeModeEdition.Autonome); this.m_pageGroupes.Name = "m_pageGroupes"; this.m_pageGroupes.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_pageGroupes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_pageGroupes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageGroupes.TabIndex = 0; this.m_pageGroupes.Title = "Group membership|789"; // // label8 // this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label8.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label8, ""); this.label8.Location = new System.Drawing.Point(574, 16); this.m_gestionnaireModeEdition.SetModeEdition(this.label8, sc2i.win32.common.TypeModeEdition.Autonome); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(217, 16); this.m_extStyle.SetStyleBackColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label8.TabIndex = 13; this.label8.Text = "(Groups that inherit properties from this Group)|797"; // // label7 // this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label7.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label7, ""); this.label7.Location = new System.Drawing.Point(358, 16); this.m_gestionnaireModeEdition.SetModeEdition(this.label7, sc2i.win32.common.TypeModeEdition.Autonome); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(168, 16); this.m_extStyle.SetStyleBackColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label7.TabIndex = 12; this.label7.Text = "(Parents in visual hierarchy)|796"; // // label6 // this.label6.Font = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label6, ""); this.label6.Location = new System.Drawing.Point(8, 16); this.m_gestionnaireModeEdition.SetModeEdition(this.label6, sc2i.win32.common.TypeModeEdition.Autonome); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(183, 16); this.m_extStyle.SetStyleBackColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label6.TabIndex = 11; this.label6.Text = "(Inherit from following Groups)|795"; // // m_btnApercuHierarchie // this.m_btnApercuHierarchie.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.m_extLinkField.SetLinkField(this.m_btnApercuHierarchie, ""); this.m_btnApercuHierarchie.Location = new System.Drawing.Point(383, 362); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnApercuHierarchie, sc2i.win32.common.TypeModeEdition.Autonome); this.m_btnApercuHierarchie.Name = "m_btnApercuHierarchie"; this.m_btnApercuHierarchie.Size = new System.Drawing.Size(167, 16); this.m_extStyle.SetStyleBackColor(this.m_btnApercuHierarchie, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnApercuHierarchie, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnApercuHierarchie.TabIndex = 10; this.m_btnApercuHierarchie.TabStop = true; this.m_btnApercuHierarchie.Text = "Groups hierarchy|798"; this.m_btnApercuHierarchie.TextAlign = System.Drawing.ContentAlignment.TopRight; this.m_btnApercuHierarchie.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_btnApercuHierarchie_LinkClicked); // // label5 // this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label5, ""); this.label5.Location = new System.Drawing.Point(574, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.label5, sc2i.win32.common.TypeModeEdition.Autonome); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(136, 16); this.m_extStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 9; this.label5.Text = "Members :|794"; // // m_wndListeMembres // this.m_wndListeMembres.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.m_wndListeMembres.BackColor = System.Drawing.Color.White; this.m_wndListeMembres.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewColumn2 }); this.m_wndListeMembres.EnableCustomisation = true; this.m_wndListeMembres.ForeColor = System.Drawing.Color.Black; this.m_wndListeMembres.FullRowSelect = true; this.m_extLinkField.SetLinkField(this.m_wndListeMembres, ""); this.m_wndListeMembres.Location = new System.Drawing.Point(574, 32); this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndListeMembres, sc2i.win32.common.TypeModeEdition.Autonome); this.m_wndListeMembres.Name = "m_wndListeMembres"; this.m_wndListeMembres.Size = new System.Drawing.Size(208, 330); this.m_extStyle.SetStyleBackColor(this.m_wndListeMembres, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondFenetre); this.m_extStyle.SetStyleForeColor(this.m_wndListeMembres, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTexteFenetre); this.m_wndListeMembres.TabIndex = 8; this.m_wndListeMembres.UseCompatibleStateImageBehavior = false; this.m_wndListeMembres.View = System.Windows.Forms.View.Details; // // listViewColumn2 // this.listViewColumn2.Field = "GroupeContenu.Libelle"; this.listViewColumn2.PrecisionWidth = 0; this.listViewColumn2.ProportionnalSize = false; this.listViewColumn2.Text = "Label|50"; this.listViewColumn2.Visible = true; this.listViewColumn2.Width = 193; // // label4 // this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label4, ""); this.label4.Location = new System.Drawing.Point(358, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.label4, sc2i.win32.common.TypeModeEdition.Autonome); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(136, 16); this.m_extStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 7; this.label4.Text = "Parent Groups :|793"; // // m_panelNecessitesGroupes // this.m_panelNecessitesGroupes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right))); this.m_panelNecessitesGroupes.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewAutoFilledColumn1 }); this.m_panelNecessitesGroupes.EnableCustomisation = true; this.m_panelNecessitesGroupes.ExclusionParException = false; this.m_extLinkField.SetLinkField(this.m_panelNecessitesGroupes, ""); this.m_panelNecessitesGroupes.Location = new System.Drawing.Point(350, 24); this.m_panelNecessitesGroupes.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelNecessitesGroupes, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelNecessitesGroupes.Name = "m_panelNecessitesGroupes"; this.m_panelNecessitesGroupes.Size = new System.Drawing.Size(208, 346); this.m_extStyle.SetStyleBackColor(this.m_panelNecessitesGroupes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelNecessitesGroupes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelNecessitesGroupes.TabIndex = 6; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Label|50"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 175; // // label2 // this.label2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label2, ""); this.label2.Location = new System.Drawing.Point(8, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(200, 16); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 1; this.label2.Text = "Member of :|792"; // // m_panelGroupesContenants // this.m_panelGroupesContenants.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.m_panelGroupesContenants.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewColumn6 }); this.m_panelGroupesContenants.EnableCustomisation = true; this.m_panelGroupesContenants.ExclusionParException = false; this.m_extLinkField.SetLinkField(this.m_panelGroupesContenants, ""); this.m_panelGroupesContenants.Location = new System.Drawing.Point(0, 24); this.m_panelGroupesContenants.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelGroupesContenants, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelGroupesContenants.Name = "m_panelGroupesContenants"; this.m_panelGroupesContenants.Size = new System.Drawing.Size(334, 346); this.m_extStyle.SetStyleBackColor(this.m_panelGroupesContenants, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelGroupesContenants, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelGroupesContenants.TabIndex = 0; // // listViewColumn6 // this.listViewColumn6.Field = "Nom"; this.listViewColumn6.PrecisionWidth = 0; this.listViewColumn6.ProportionnalSize = false; this.listViewColumn6.Text = "Label|50"; this.listViewColumn6.Visible = true; this.listViewColumn6.Width = 156; // // m_pageRoles // this.m_pageRoles.Controls.Add(this.m_listViewRoles); this.m_extLinkField.SetLinkField(this.m_pageRoles, ""); this.m_pageRoles.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageRoles, sc2i.win32.common.TypeModeEdition.Autonome); this.m_pageRoles.Name = "m_pageRoles"; this.m_pageRoles.Selected = false; this.m_pageRoles.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_pageRoles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_pageRoles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageRoles.TabIndex = 1; this.m_pageRoles.Title = "Associated Roles|790"; // // m_pageChampsCustom // this.m_pageChampsCustom.Controls.Add(this.m_panelDefinisseurChamps); this.m_extLinkField.SetLinkField(this.m_pageChampsCustom, ""); this.m_pageChampsCustom.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageChampsCustom, sc2i.win32.common.TypeModeEdition.Autonome); this.m_pageChampsCustom.Name = "m_pageChampsCustom"; this.m_pageChampsCustom.Selected = false; this.m_pageChampsCustom.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_pageChampsCustom, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_pageChampsCustom, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageChampsCustom.TabIndex = 2; this.m_pageChampsCustom.Title = "Custom fields|791"; // // m_panelDefinisseurChamps // this.m_panelDefinisseurChamps.Dock = System.Windows.Forms.DockStyle.Fill; this.m_extLinkField.SetLinkField(this.m_panelDefinisseurChamps, ""); this.m_panelDefinisseurChamps.Location = new System.Drawing.Point(0, 0); this.m_panelDefinisseurChamps.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelDefinisseurChamps, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelDefinisseurChamps.Name = "m_panelDefinisseurChamps"; this.m_panelDefinisseurChamps.Size = new System.Drawing.Size(794, 377); this.m_extStyle.SetStyleBackColor(this.m_panelDefinisseurChamps, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelDefinisseurChamps, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelDefinisseurChamps.TabIndex = 0; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Label|50"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 312; // // listViewAutoFilledColumn3 // this.listViewAutoFilledColumn3.Field = "Libelle"; this.listViewAutoFilledColumn3.PrecisionWidth = 0; this.listViewAutoFilledColumn3.ProportionnalSize = false; this.listViewAutoFilledColumn3.Text = "Label|50"; this.listViewAutoFilledColumn3.Visible = true; this.listViewAutoFilledColumn3.Width = 200; // // c2iPanelOmbre1 // this.c2iPanelOmbre1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanelOmbre1.Controls.Add(this.m_txtNom); this.c2iPanelOmbre1.Controls.Add(this.label9); this.c2iPanelOmbre1.Controls.Add(this.m_chkMasque); this.c2iPanelOmbre1.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.c2iPanelOmbre1, ""); this.c2iPanelOmbre1.Location = new System.Drawing.Point(16, 32); this.c2iPanelOmbre1.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre1, sc2i.win32.common.TypeModeEdition.Autonome); this.c2iPanelOmbre1.Name = "c2iPanelOmbre1"; this.c2iPanelOmbre1.Size = new System.Drawing.Size(600, 66); this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanelOmbre1.TabIndex = 0; // // m_txtNom // this.m_extLinkField.SetLinkField(this.m_txtNom, "Nom"); this.m_txtNom.Location = new System.Drawing.Point(80, 12); this.m_txtNom.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtNom, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_txtNom.Name = "m_txtNom"; this.m_txtNom.Size = new System.Drawing.Size(328, 20); this.m_extStyle.SetStyleBackColor(this.m_txtNom, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtNom, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtNom.TabIndex = 4003; this.m_txtNom.Text = "[Name]|30301"; // // label9 // this.m_extLinkField.SetLinkField(this.label9, ""); this.label9.Location = new System.Drawing.Point(7, 17); this.m_gestionnaireModeEdition.SetModeEdition(this.label9, sc2i.win32.common.TypeModeEdition.Autonome); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(67, 15); this.m_extStyle.SetStyleBackColor(this.label9, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label9, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label9.TabIndex = 4009; this.label9.Text = "Label|50"; // // m_chkMasque // this.m_extLinkField.SetLinkField(this.m_chkMasque, "Masquer"); this.m_chkMasque.Location = new System.Drawing.Point(424, 16); this.m_gestionnaireModeEdition.SetModeEdition(this.m_chkMasque, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_chkMasque.Name = "m_chkMasque"; this.m_chkMasque.Size = new System.Drawing.Size(126, 16); this.m_extStyle.SetStyleBackColor(this.m_chkMasque, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_chkMasque, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_chkMasque.TabIndex = 4006; this.m_chkMasque.Text = "Hiden Group|788"; // // label1 // this.label1.AutoSize = true; this.m_extLinkField.SetLinkField(this.label1, ""); this.label1.Location = new System.Drawing.Point(20, 16); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(37, 16); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 4004; this.label1.Text = "Nom : "; // // CFormEditionGroupeActeurs // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.c2iPanelOmbre1); this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.Name = "CFormEditionGroupeActeurs"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.TabControl = this.m_tabControl; this.Load += new System.EventHandler(this.CFormEditionGroupeActeurs_Load); this.OnInitPage += new sc2i.win32.data.navigation.EventOnPageHandler(this.CFormEditionGroupeActeurs_OnInitPage); this.OnMajChampsPage += new sc2i.win32.data.navigation.EventOnPageHandler(this.CFormEditionGroupeActeurs_OnMajChampsPage); this.Closing += new System.ComponentModel.CancelEventHandler(this.CFormEditionGroupeActeurs_Closing); this.AfterPassageEnEdition += new sc2i.data.ObjetDonneeEventHandler(this.CFormEditionGroupeActeurs_AfterPassageEnEdition); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.Controls.SetChildIndex(this.c2iPanelOmbre1, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.m_pageEOs.ResumeLayout(false); this.m_pageGroupes.ResumeLayout(false); this.m_pageRoles.ResumeLayout(false); this.m_pageChampsCustom.ResumeLayout(false); this.c2iPanelOmbre1.ResumeLayout(false); this.c2iPanelOmbre1.PerformLayout(); 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() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CPanelRoleClient)); sc2i.win32.common.GLColumn glColumn1 = new sc2i.win32.common.GLColumn(); sc2i.win32.common.GLColumn glColumn2 = new sc2i.win32.common.GLColumn(); this.m_imageCle = new System.Windows.Forms.PictureBox(); this.m_lblId = new System.Windows.Forms.Label(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_panelId = new System.Windows.Forms.Panel(); this.m_ExtStyle = new sc2i.win32.common.CExtStyle(); this.m_panelListeContrats = new sc2i.win32.data.navigation.CPanelListeSpeedStandard(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.m_pageTickets = new Crownwood.Magic.Controls.TabPage(); this.m_panelListeTickets = new sc2i.win32.data.navigation.CPanelListeSpeedStandard(); this.m_pageContrats = new Crownwood.Magic.Controls.TabPage(); this.m_gestionnaireTabControl = new sc2i.win32.common.CGestionnaireTabControl(); this.m_extModulesAssociator = new timos.CExtModulesAssociator(); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).BeginInit(); this.m_panelId.SuspendLayout(); this.m_tabControl.SuspendLayout(); this.m_pageTickets.SuspendLayout(); this.m_pageContrats.SuspendLayout(); this.SuspendLayout(); // // m_gestionnaireModeEdition // this.m_gestionnaireModeEdition.ModeEditionChanged += new System.EventHandler(this.m_gestionnaireModeEdition_ModeEditionChanged); // // m_imageCle // this.m_imageCle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.m_imageCle.Cursor = System.Windows.Forms.Cursors.Hand; this.m_imageCle.Image = ((System.Drawing.Image)(resources.GetObject("m_imageCle.Image"))); this.m_extLinkField.SetLinkField(this.m_imageCle, ""); this.m_imageCle.Location = new System.Drawing.Point(46, 4); this.m_gestionnaireModeEdition.SetModeEdition(this.m_imageCle, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_imageCle, ""); this.m_imageCle.Name = "m_imageCle"; this.m_imageCle.Size = new System.Drawing.Size(16, 15); this.m_imageCle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; this.m_ExtStyle.SetStyleBackColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_imageCle.TabIndex = 4002; this.m_imageCle.TabStop = false; this.m_imageCle.Click += new System.EventHandler(this.m_imageCle_Click); // // m_lblId // this.m_lblId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.m_extLinkField.SetLinkField(this.m_lblId, "Id"); this.m_lblId.Location = new System.Drawing.Point(-2, 4); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lblId, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_lblId, ""); this.m_lblId.Name = "m_lblId"; this.m_lblId.Size = new System.Drawing.Size(48, 16); this.m_ExtStyle.SetStyleBackColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblId.TabIndex = 4003; this.m_lblId.Text = "[Id]"; this.m_lblId.TextAlign = System.Drawing.ContentAlignment.TopRight; this.m_lblId.Visible = false; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Label|50"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 300; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Acteur.Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Acteur"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 360; // // m_panelId // this.m_panelId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.m_panelId.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_panelId.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.m_panelId.Controls.Add(this.m_lblId); this.m_panelId.Controls.Add(this.m_imageCle); this.m_panelId.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.m_panelId, ""); this.m_panelId.Location = new System.Drawing.Point(541, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelId, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_panelId, ""); this.m_panelId.Name = "m_panelId"; this.m_panelId.Size = new System.Drawing.Size(64, 24); this.m_ExtStyle.SetStyleBackColor(this.m_panelId, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_ExtStyle.SetStyleForeColor(this.m_panelId, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_panelId.TabIndex = 4005; // // m_panelListeContrats // this.m_panelListeContrats.AllowArbre = false; glColumn1.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn1.ActiveControlItems"))); glColumn1.BackColor = System.Drawing.Color.Transparent; glColumn1.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn1.ForColor = System.Drawing.Color.Black; glColumn1.ImageIndex = -1; glColumn1.IsCheckColumn = false; glColumn1.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn1.Name = "colRessourceLibelle"; glColumn1.Propriete = "Libelle"; glColumn1.Text = "Label|50"; glColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn1.Width = 100; this.m_panelListeContrats.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn1 }); this.m_panelListeContrats.ContexteUtilisation = ""; this.m_panelListeContrats.ControlFiltreStandard = null; this.m_panelListeContrats.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelListeContrats.ElementSelectionne = null; this.m_panelListeContrats.EnableCustomisation = true; this.m_panelListeContrats.FiltreDeBase = null; this.m_panelListeContrats.FiltreDeBaseEnAjout = false; this.m_panelListeContrats.FiltrePrefere = null; this.m_panelListeContrats.FiltreRapide = null; this.m_extLinkField.SetLinkField(this.m_panelListeContrats, ""); this.m_panelListeContrats.ListeObjets = null; this.m_panelListeContrats.Location = new System.Drawing.Point(0, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelListeContrats, sc2i.win32.common.TypeModeEdition.DisableSurEdition); this.m_panelListeContrats.ModeQuickSearch = false; this.m_panelListeContrats.ModeSelection = false; this.m_extModulesAssociator.SetModules(this.m_panelListeContrats, ""); this.m_panelListeContrats.MultiSelect = false; this.m_panelListeContrats.Name = "m_panelListeContrats"; this.m_panelListeContrats.Navigateur = null; this.m_panelListeContrats.ProprieteObjetAEditer = null; this.m_panelListeContrats.QuickSearchText = ""; this.m_panelListeContrats.Size = new System.Drawing.Size(608, 199); this.m_ExtStyle.SetStyleBackColor(this.m_panelListeContrats, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_panelListeContrats, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelListeContrats.TabIndex = 4004; this.m_panelListeContrats.TrierAuClicSurEnteteColonne = true; // // m_tabControl // this.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.m_tabControl.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_tabControl, ""); this.m_tabControl.Location = new System.Drawing.Point(0, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_tabControl, ""); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = false; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 0; this.m_tabControl.SelectedTab = this.m_pageContrats; this.m_tabControl.Size = new System.Drawing.Size(608, 224); this.m_ExtStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_tabControl.TabIndex = 4006; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.m_pageContrats, this.m_pageTickets }); // // m_pageTickets // this.m_pageTickets.Controls.Add(this.m_panelListeTickets); this.m_extLinkField.SetLinkField(this.m_pageTickets, ""); this.m_pageTickets.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageTickets, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_pageTickets, "AINTER_CORR"); this.m_pageTickets.Name = "m_pageTickets"; this.m_pageTickets.Selected = false; this.m_pageTickets.Size = new System.Drawing.Size(608, 199); this.m_ExtStyle.SetStyleBackColor(this.m_pageTickets, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_pageTickets, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageTickets.TabIndex = 11; this.m_pageTickets.Title = "Related Tickets|659"; // // m_panelListeTickets // this.m_panelListeTickets.AllowArbre = false; glColumn2.ActiveControlItems = ((System.Collections.ArrayList)(resources.GetObject("glColumn2.ActiveControlItems"))); glColumn2.BackColor = System.Drawing.Color.Transparent; glColumn2.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn2.ForColor = System.Drawing.Color.Black; glColumn2.ImageIndex = -1; glColumn2.IsCheckColumn = false; glColumn2.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn2.Name = "colRessourceLibelle"; glColumn2.Propriete = "Libelle"; glColumn2.Text = "Label|50"; glColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn2.Width = 100; this.m_panelListeTickets.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn2 }); this.m_panelListeTickets.ContexteUtilisation = ""; this.m_panelListeTickets.ControlFiltreStandard = null; this.m_panelListeTickets.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelListeTickets.ElementSelectionne = null; this.m_panelListeTickets.EnableCustomisation = true; this.m_panelListeTickets.FiltreDeBase = null; this.m_panelListeTickets.FiltreDeBaseEnAjout = false; this.m_panelListeTickets.FiltrePrefere = null; this.m_panelListeTickets.FiltreRapide = null; this.m_extLinkField.SetLinkField(this.m_panelListeTickets, ""); this.m_panelListeTickets.ListeObjets = null; this.m_panelListeTickets.Location = new System.Drawing.Point(0, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelListeTickets, sc2i.win32.common.TypeModeEdition.DisableSurEdition); this.m_panelListeTickets.ModeQuickSearch = false; this.m_panelListeTickets.ModeSelection = false; this.m_extModulesAssociator.SetModules(this.m_panelListeTickets, ""); this.m_panelListeTickets.MultiSelect = false; this.m_panelListeTickets.Name = "m_panelListeTickets"; this.m_panelListeTickets.Navigateur = null; this.m_panelListeTickets.ProprieteObjetAEditer = null; this.m_panelListeTickets.QuickSearchText = ""; this.m_panelListeTickets.Size = new System.Drawing.Size(608, 199); this.m_ExtStyle.SetStyleBackColor(this.m_panelListeTickets, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_panelListeTickets, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelListeTickets.TabIndex = 4005; this.m_panelListeTickets.TrierAuClicSurEnteteColonne = true; // // m_pageContrats // this.m_pageContrats.Controls.Add(this.m_panelListeContrats); this.m_extLinkField.SetLinkField(this.m_pageContrats, ""); this.m_pageContrats.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageContrats, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_pageContrats, ""); this.m_pageContrats.Name = "m_pageContrats"; this.m_pageContrats.Size = new System.Drawing.Size(608, 199); this.m_ExtStyle.SetStyleBackColor(this.m_pageContrats, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ExtStyle.SetStyleForeColor(this.m_pageContrats, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageContrats.TabIndex = 10; this.m_pageContrats.Title = "Contracts|640"; // // m_gestionnaireTabControl // this.m_gestionnaireTabControl.TabControl = this.m_tabControl; this.m_gestionnaireTabControl.OnInitPage += new sc2i.win32.common.EventOnPageHandler(this.m_gestionnaireTabControl_OnInitPage); this.m_gestionnaireTabControl.OnMajChampsPage += new sc2i.win32.common.EventOnPageHandler(this.m_gestionnaireTabControl_OnMajChampsPage); // // CPanelRoleClient // this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.Controls.Add(this.m_panelId); this.Controls.Add(this.m_tabControl); this.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this, ""); this.Name = "CPanelRoleClient"; this.Size = new System.Drawing.Size(608, 224); this.m_ExtStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_ExtStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.Load += new System.EventHandler(this.CPanelRoleUtilisateur_Load); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).EndInit(); this.m_panelId.ResumeLayout(false); this.m_panelId.PerformLayout(); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.m_pageTickets.ResumeLayout(false); this.m_pageContrats.ResumeLayout(false); 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() { this.m_listViewRelationsComptabilites = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn8 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_listViewRelationElement = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn5 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_panelEditionComportement = new CPanelEditionComportementGenerique(); this.m_panelNavigation.SuspendLayout(); this.m_panelCle.SuspendLayout(); this.m_panelMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.m_btnChercherObjet)).BeginInit(); this.SuspendLayout(); // // m_btnAnnulerModifications // this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnAnnulerModifications, false); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnValiderModifications // this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnValiderModifications, false); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnSupprimerObjet // this.m_extLinkField.SetLinkField(this.m_btnSupprimerObjet, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnSupprimerObjet, false); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnSupprimerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnEditerObjet // this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnEditerObjet, false); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelNavigation // this.m_panelNavigation.Location = new System.Drawing.Point(655, 0); this.m_panelNavigation.Size = new System.Drawing.Size(175, 28); this.m_extStyle.SetStyleBackColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_lblNbListes // this.m_extStyle.SetStyleBackColor(this.m_lblNbListes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblNbListes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnPrecedent // this.m_extStyle.SetStyleBackColor(this.m_btnPrecedent, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnPrecedent, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnSuivant // this.m_extStyle.SetStyleBackColor(this.m_btnSuivant, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSuivant, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnAjout // this.m_extStyle.SetStyleBackColor(this.m_btnAjout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnAjout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_lblId // this.m_extStyle.SetStyleBackColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelCle // this.m_panelCle.Location = new System.Drawing.Point(547, 0); this.m_panelCle.Size = new System.Drawing.Size(108, 28); this.m_extStyle.SetStyleBackColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnHistorique // this.m_extStyle.SetStyleBackColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_imageCle // this.m_extStyle.SetStyleBackColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnChercherObjet // this.m_extStyle.SetStyleBackColor(this.m_btnChercherObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnChercherObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_listViewRelationsComptabilites // this.m_listViewRelationsComptabilites.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_listViewRelationsComptabilites.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn8 }); this.m_listViewRelationsComptabilites.EnableCustomisation = true; this.m_listViewRelationsComptabilites.FullRowSelect = true; this.m_listViewRelationsComptabilites.HideSelection = false; this.m_extLinkField.SetLinkField(this.m_listViewRelationsComptabilites, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_listViewRelationsComptabilites, false); this.m_listViewRelationsComptabilites.Location = new System.Drawing.Point(8, 40); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listViewRelationsComptabilites, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_listViewRelationsComptabilites, ""); this.m_listViewRelationsComptabilites.Name = "m_listViewRelationsComptabilites"; this.m_listViewRelationsComptabilites.Size = new System.Drawing.Size(360, 208); this.m_extStyle.SetStyleBackColor(this.m_listViewRelationsComptabilites, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listViewRelationsComptabilites, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listViewRelationsComptabilites.TabIndex = 3; this.m_listViewRelationsComptabilites.UseCompatibleStateImageBehavior = false; this.m_listViewRelationsComptabilites.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn8 // this.listViewAutoFilledColumn8.Field = "Comptabilite.Libelle"; this.listViewAutoFilledColumn8.PrecisionWidth = 0; this.listViewAutoFilledColumn8.ProportionnalSize = false; this.listViewAutoFilledColumn8.Text = "Comptabilité.Libellé"; this.listViewAutoFilledColumn8.Visible = true; this.listViewAutoFilledColumn8.Width = 300; // // m_listViewRelationElement // this.m_listViewRelationElement.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_listViewRelationElement.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn1, this.listViewAutoFilledColumn5 }); this.m_listViewRelationElement.EnableCustomisation = false; this.m_listViewRelationElement.FullRowSelect = true; this.m_listViewRelationElement.HideSelection = false; this.m_extLinkField.SetLinkField(this.m_listViewRelationElement, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_listViewRelationElement, false); this.m_listViewRelationElement.Location = new System.Drawing.Point(8, 32); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listViewRelationElement, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_listViewRelationElement, ""); this.m_listViewRelationElement.MultiSelect = false; this.m_listViewRelationElement.Name = "m_listViewRelationElement"; this.m_listViewRelationElement.Size = new System.Drawing.Size(376, 272); this.m_extStyle.SetStyleBackColor(this.m_listViewRelationElement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listViewRelationElement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listViewRelationElement.TabIndex = 14; this.m_listViewRelationElement.UseCompatibleStateImageBehavior = false; this.m_listViewRelationElement.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Label|50"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 203; // // listViewAutoFilledColumn5 // this.listViewAutoFilledColumn5.Field = "TypeElementsConvivial"; this.listViewAutoFilledColumn5.PrecisionWidth = 0; this.listViewAutoFilledColumn5.ProportionnalSize = false; this.listViewAutoFilledColumn5.Text = "Type|30284"; this.listViewAutoFilledColumn5.Visible = true; this.listViewAutoFilledColumn5.Width = 156; // // m_panelEditionComportement // this.m_panelEditionComportement.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.m_extLinkField.SetLinkField(this.m_panelEditionComportement, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_panelEditionComportement, true); this.m_panelEditionComportement.Location = new System.Drawing.Point(0, 34); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEditionComportement, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_panelEditionComportement, ""); this.m_panelEditionComportement.Name = "m_panelEditionComportement"; this.m_panelEditionComportement.Size = new System.Drawing.Size(830, 501); this.m_extStyle.SetStyleBackColor(this.m_panelEditionComportement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelEditionComportement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelEditionComportement.TabIndex = 4004; // // CFormEditionComportementGenerique // this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.m_panelEditionComportement); this.m_extLinkField.SetLinkField(this, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this, false); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this, ""); this.Name = "CFormEditionComportementGenerique"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Load += new System.EventHandler(this.CFormEditionComportementGenerique_Load); this.Controls.SetChildIndex(this.m_panelEditionComportement, 0); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.m_panelNavigation.ResumeLayout(false); this.m_panelCle.ResumeLayout(false); this.m_panelCle.PerformLayout(); this.m_panelMenu.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.m_btnChercherObjet)).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() { this.components = new System.ComponentModel.Container(); this.label1 = new System.Windows.Forms.Label(); this.m_txtLibelle = new sc2i.win32.common.C2iTextBox(); this.c2iPanelOmbre4 = new sc2i.win32.common.C2iPanelOmbre(); this.m_chkBloquer = new System.Windows.Forms.CheckBox(); this.c2iTextBox1 = new sc2i.win32.common.C2iTextBox(); this.label2 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.m_lblProchaineExecution = new System.Windows.Forms.Label(); this.m_lnkReplanifier = new System.Windows.Forms.LinkLabel(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.tabPage1 = new Crownwood.Magic.Controls.TabPage(); this.m_panelPlanification = new timos.win32.composants.CEditeurParametrePlanificationIntervention(); this.m_lnkExecuter = new System.Windows.Forms.LinkLabel(); this.tabPage2 = new Crownwood.Magic.Controls.TabPage(); this.label5 = new System.Windows.Forms.Label(); this.m_panelTypesDonnees = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.label3 = new System.Windows.Forms.Label(); this.m_panelProcess = new sc2i.win32.data.navigation.CPanelListeRelationSelection(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.c2iPanelOmbre4.SuspendLayout(); this.m_tabControl.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.SuspendLayout(); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // label1 // this.label1.AutoSize = true; this.m_extLinkField.SetLinkField(this.label1, ""); this.label1.Location = new System.Drawing.Point(8, 11); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(47, 13); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 4002; this.label1.Text = "Label|50"; // // m_txtLibelle // this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle"); this.m_txtLibelle.Location = new System.Drawing.Point(104, 8); this.m_txtLibelle.LockEdition = false; this.m_txtLibelle.MaxLength = 128; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_txtLibelle.Name = "m_txtLibelle"; this.m_txtLibelle.Size = new System.Drawing.Size(280, 20); this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtLibelle.TabIndex = 0; this.m_txtLibelle.Text = "[Label]|30324"; // // c2iPanelOmbre4 // this.c2iPanelOmbre4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanelOmbre4.Controls.Add(this.m_chkBloquer); this.c2iPanelOmbre4.Controls.Add(this.c2iTextBox1); this.c2iPanelOmbre4.Controls.Add(this.m_txtLibelle); this.c2iPanelOmbre4.Controls.Add(this.label1); this.c2iPanelOmbre4.Controls.Add(this.label2); this.c2iPanelOmbre4.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.c2iPanelOmbre4, ""); this.c2iPanelOmbre4.Location = new System.Drawing.Point(8, 52); this.c2iPanelOmbre4.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre4, sc2i.win32.common.TypeModeEdition.Autonome); this.c2iPanelOmbre4.Name = "c2iPanelOmbre4"; this.c2iPanelOmbre4.Size = new System.Drawing.Size(648, 108); this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanelOmbre4.TabIndex = 0; // // m_chkBloquer // this.m_extLinkField.SetLinkField(this.m_chkBloquer, "Bloquer"); this.m_chkBloquer.Location = new System.Drawing.Point(392, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.m_chkBloquer, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_chkBloquer.Name = "m_chkBloquer"; this.m_chkBloquer.Size = new System.Drawing.Size(232, 16); this.m_extStyle.SetStyleBackColor(this.m_chkBloquer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_chkBloquer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_chkBloquer.TabIndex = 4005; this.m_chkBloquer.Text = "Disable this Task|929"; // // c2iTextBox1 // this.m_extLinkField.SetLinkField(this.c2iTextBox1, "Commentaires"); this.c2iTextBox1.Location = new System.Drawing.Point(104, 32); this.c2iTextBox1.LockEdition = false; this.c2iTextBox1.MaxLength = 128; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iTextBox1, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.c2iTextBox1.Multiline = true; this.c2iTextBox1.Name = "c2iTextBox1"; this.c2iTextBox1.Size = new System.Drawing.Size(520, 56); this.m_extStyle.SetStyleBackColor(this.c2iTextBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.c2iTextBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.c2iTextBox1.TabIndex = 4004; this.c2iTextBox1.Text = "[Commentaires]"; // // label2 // this.label2.AutoSize = true; this.m_extLinkField.SetLinkField(this.label2, ""); this.label2.Location = new System.Drawing.Point(8, 35); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(65, 13); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4003; this.label2.Text = "Comment|51"; // // label4 // this.m_extLinkField.SetLinkField(this.label4, ""); this.label4.Location = new System.Drawing.Point(8, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.label4, sc2i.win32.common.TypeModeEdition.Autonome); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(112, 16); this.m_extStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 4; this.label4.Text = "Next execution|931"; // // m_lblProchaineExecution // this.m_lblProchaineExecution.BackColor = System.Drawing.Color.White; this.m_lblProchaineExecution.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.m_extLinkField.SetLinkField(this.m_lblProchaineExecution, ""); this.m_lblProchaineExecution.Location = new System.Drawing.Point(120, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lblProchaineExecution, sc2i.win32.common.TypeModeEdition.Autonome); this.m_lblProchaineExecution.Name = "m_lblProchaineExecution"; this.m_lblProchaineExecution.Size = new System.Drawing.Size(122, 16); this.m_extStyle.SetStyleBackColor(this.m_lblProchaineExecution, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblProchaineExecution, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblProchaineExecution.TabIndex = 5; this.m_lblProchaineExecution.Text = "-"; // // m_lnkReplanifier // this.m_extLinkField.SetLinkField(this.m_lnkReplanifier, ""); this.m_lnkReplanifier.Location = new System.Drawing.Point(268, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lnkReplanifier, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_lnkReplanifier.Name = "m_lnkReplanifier"; this.m_lnkReplanifier.Size = new System.Drawing.Size(100, 16); this.m_extStyle.SetStyleBackColor(this.m_lnkReplanifier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lnkReplanifier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lnkReplanifier.TabIndex = 6; this.m_lnkReplanifier.TabStop = true; this.m_lnkReplanifier.Text = "Re-plan|932"; this.m_lnkReplanifier.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkReplanifier_LinkClicked); // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_tabControl, ""); this.m_tabControl.Location = new System.Drawing.Point(8, 160); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 1; this.m_tabControl.SelectedTab = this.tabPage2; this.m_tabControl.Size = new System.Drawing.Size(814, 366); this.m_extStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 4005; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.tabPage1, this.tabPage2 }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // tabPage1 // this.tabPage1.Controls.Add(this.m_panelPlanification); this.tabPage1.Controls.Add(this.m_lnkExecuter); this.tabPage1.Controls.Add(this.m_lblProchaineExecution); this.tabPage1.Controls.Add(this.m_lnkReplanifier); this.tabPage1.Controls.Add(this.label4); this.m_extLinkField.SetLinkField(this.tabPage1, ""); this.tabPage1.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.tabPage1, sc2i.win32.common.TypeModeEdition.Autonome); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(798, 325); this.m_extStyle.SetStyleBackColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage1.TabIndex = 10; this.tabPage1.Title = "Planning|563"; // // m_panelPlanification // this.m_panelPlanification.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.m_extLinkField.SetLinkField(this.m_panelPlanification, ""); this.m_panelPlanification.Location = new System.Drawing.Point(8, 24); this.m_panelPlanification.LockEdition = true; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelPlanification, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelPlanification.Name = "m_panelPlanification"; this.m_panelPlanification.Size = new System.Drawing.Size(790, 302); this.m_extStyle.SetStyleBackColor(this.m_panelPlanification, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelPlanification, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelPlanification.TabIndex = 8; // // m_lnkExecuter // this.m_extLinkField.SetLinkField(this.m_lnkExecuter, ""); this.m_lnkExecuter.Location = new System.Drawing.Point(389, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lnkExecuter, sc2i.win32.common.TypeModeEdition.DisableSurEdition); this.m_lnkExecuter.Name = "m_lnkExecuter"; this.m_lnkExecuter.Size = new System.Drawing.Size(112, 16); this.m_extStyle.SetStyleBackColor(this.m_lnkExecuter, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lnkExecuter, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lnkExecuter.TabIndex = 7; this.m_lnkExecuter.TabStop = true; this.m_lnkExecuter.Text = "Execute now|933"; this.m_lnkExecuter.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkExecuter_LinkClicked); // // tabPage2 // this.tabPage2.Controls.Add(this.label5); this.tabPage2.Controls.Add(this.m_panelTypesDonnees); this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.m_panelProcess); this.m_extLinkField.SetLinkField(this.tabPage2, ""); this.tabPage2.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.tabPage2, sc2i.win32.common.TypeModeEdition.Autonome); this.tabPage2.Name = "tabPage2"; this.tabPage2.Size = new System.Drawing.Size(798, 325); this.m_extStyle.SetStyleBackColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage2.TabIndex = 11; this.tabPage2.Title = "Tasks|930"; // // label5 // this.label5.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label5, ""); this.label5.Location = new System.Drawing.Point(360, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.label5, sc2i.win32.common.TypeModeEdition.Autonome); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(177, 16); this.m_extStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 4022; this.label5.Text = "Data to calculate|935"; // // m_panelTypesDonnees // this.m_panelTypesDonnees.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_panelTypesDonnees.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewAutoFilledColumn2 }); this.m_panelTypesDonnees.EnableCustomisation = true; this.m_panelTypesDonnees.ExclusionParException = false; this.m_extLinkField.SetLinkField(this.m_panelTypesDonnees, ""); this.m_panelTypesDonnees.Location = new System.Drawing.Point(352, 24); this.m_panelTypesDonnees.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelTypesDonnees, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelTypesDonnees.Name = "m_panelTypesDonnees"; this.m_panelTypesDonnees.Size = new System.Drawing.Size(272, 286); this.m_extStyle.SetStyleBackColor(this.m_panelTypesDonnees, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelTypesDonnees, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelTypesDonnees.TabIndex = 4021; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Label|50"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 240; // // label3 // this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_extLinkField.SetLinkField(this.label3, ""); this.label3.Location = new System.Drawing.Point(16, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.label3, sc2i.win32.common.TypeModeEdition.Autonome); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(178, 16); this.m_extStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 4020; this.label3.Text = "Actions to trigger|934"; // // m_panelProcess // this.m_panelProcess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_panelProcess.Columns.AddRange(new sc2i.win32.common.ListViewAutoFilledColumn[] { this.listViewAutoFilledColumn1 }); this.m_panelProcess.EnableCustomisation = true; this.m_panelProcess.ExclusionParException = false; this.m_extLinkField.SetLinkField(this.m_panelProcess, ""); this.m_panelProcess.Location = new System.Drawing.Point(8, 24); this.m_panelProcess.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelProcess, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelProcess.Name = "m_panelProcess"; this.m_panelProcess.Size = new System.Drawing.Size(272, 286); this.m_extStyle.SetStyleBackColor(this.m_panelProcess, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelProcess, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelProcess.TabIndex = 4019; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Label|50"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 240; // // CFormEditionTachePlanifiee // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.c2iPanelOmbre4); this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.Name = "CFormEditionTachePlanifiee"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.Controls.SetChildIndex(this.c2iPanelOmbre4, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.c2iPanelOmbre4.ResumeLayout(false); this.c2iPanelOmbre4.PerformLayout(); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.tabPage1.ResumeLayout(false); this.tabPage2.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); sc2i.win32.common.GLColumn glColumn1 = new sc2i.win32.common.GLColumn(); this.label1 = new System.Windows.Forms.Label(); this.m_txtLibelle = new sc2i.win32.common.C2iTextBox(); this.c2iPanelOmbre4 = new sc2i.win32.common.C2iPanelOmbre(); this.m_ArbreHierarchique = new sc2i.win32.data.navigation.CArbreObjetHierarchique(); this.m_txtDescriptif = new sc2i.win32.common.C2iTextBox(); this.label2 = new System.Windows.Forms.Label(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.listViewColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_TabControl = new sc2i.win32.common.C2iTabControl(this.components); this.pageFilles = new Crownwood.Magic.Controls.TabPage(); this.m_PanelCategoriesFilles = new sc2i.win32.data.navigation.CPanelListeSpeedStandard(); this.m_panelNavigation.SuspendLayout(); this.m_panelCle.SuspendLayout(); this.m_panelMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.m_btnChercherObjet)).BeginInit(); this.c2iPanelOmbre4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.m_TabControl.SuspendLayout(); this.pageFilles.SuspendLayout(); this.SuspendLayout(); // // m_btnAnnulerModifications // this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnValiderModifications // this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnSupprimerObjet // this.m_extLinkField.SetLinkField(this.m_btnSupprimerObjet, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnSupprimerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnEditerObjet // this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelNavigation // this.m_panelNavigation.Location = new System.Drawing.Point(655, 0); this.m_panelNavigation.Size = new System.Drawing.Size(175, 28); this.m_extStyle.SetStyleBackColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_lblNbListes // this.m_extStyle.SetStyleBackColor(this.m_lblNbListes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblNbListes, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnPrecedent // this.m_extStyle.SetStyleBackColor(this.m_btnPrecedent, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnPrecedent, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnSuivant // this.m_extStyle.SetStyleBackColor(this.m_btnSuivant, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSuivant, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnAjout // this.m_extStyle.SetStyleBackColor(this.m_btnAjout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnAjout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_lblId // this.m_extStyle.SetStyleBackColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblId, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelCle // this.m_panelCle.Location = new System.Drawing.Point(547, 0); this.m_panelCle.Size = new System.Drawing.Size(108, 28); this.m_extStyle.SetStyleBackColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnHistorique // this.m_extStyle.SetStyleBackColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_imageCle // this.m_extStyle.SetStyleBackColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_imageCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnChercherObjet // this.m_extStyle.SetStyleBackColor(this.m_btnChercherObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnChercherObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // label1 // this.m_extLinkField.SetLinkField(this.label1, ""); this.label1.Location = new System.Drawing.Point(4, 12); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.label1, ""); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(126, 16); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 4002; this.label1.Text = "Label|50"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // m_txtLibelle // this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle"); this.m_txtLibelle.Location = new System.Drawing.Point(138, 8); this.m_txtLibelle.LockEdition = false; this.m_txtLibelle.MaxLength = 255; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_txtLibelle, ""); this.m_txtLibelle.Name = "m_txtLibelle"; this.m_txtLibelle.Size = new System.Drawing.Size(352, 20); this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtLibelle.TabIndex = 0; this.m_txtLibelle.Text = "[Libelle]"; // // c2iPanelOmbre4 // this.c2iPanelOmbre4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanelOmbre4.Controls.Add(this.m_ArbreHierarchique); this.c2iPanelOmbre4.Controls.Add(this.m_txtDescriptif); this.c2iPanelOmbre4.Controls.Add(this.label2); this.c2iPanelOmbre4.Controls.Add(this.label1); this.c2iPanelOmbre4.Controls.Add(this.m_txtLibelle); this.c2iPanelOmbre4.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.c2iPanelOmbre4, ""); this.c2iPanelOmbre4.Location = new System.Drawing.Point(8, 52); this.c2iPanelOmbre4.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre4, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.c2iPanelOmbre4, ""); this.c2iPanelOmbre4.Name = "c2iPanelOmbre4"; this.c2iPanelOmbre4.Size = new System.Drawing.Size(810, 136); this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre4, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanelOmbre4.TabIndex = 0; // // m_ArbreHierarchique // this.m_ArbreHierarchique.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_ArbreHierarchique.AutoriseReaffectation = true; this.m_ArbreHierarchique.BackColor = System.Drawing.Color.White; this.m_extLinkField.SetLinkField(this.m_ArbreHierarchique, ""); this.m_ArbreHierarchique.Location = new System.Drawing.Point(509, 8); this.m_ArbreHierarchique.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_ArbreHierarchique, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_ArbreHierarchique, ""); this.m_ArbreHierarchique.Name = "m_ArbreHierarchique"; this.m_ArbreHierarchique.Size = new System.Drawing.Size(273, 105); this.m_extStyle.SetStyleBackColor(this.m_ArbreHierarchique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_ArbreHierarchique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_ArbreHierarchique.TabIndex = 4008; // // m_txtDescriptif // this.m_txtDescriptif.AcceptsReturn = true; this.m_extLinkField.SetLinkField(this.m_txtDescriptif, "Descriptif"); this.m_txtDescriptif.Location = new System.Drawing.Point(138, 40); this.m_txtDescriptif.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtDescriptif, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_txtDescriptif, ""); this.m_txtDescriptif.Multiline = true; this.m_txtDescriptif.Name = "m_txtDescriptif"; this.m_txtDescriptif.Size = new System.Drawing.Size(352, 73); this.m_extStyle.SetStyleBackColor(this.m_txtDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtDescriptif.TabIndex = 4004; this.m_txtDescriptif.Text = "[Descriptif]"; // // label2 // this.m_extLinkField.SetLinkField(this.label2, ""); this.label2.Location = new System.Drawing.Point(4, 40); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.label2, ""); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(126, 16); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4003; this.label2.Text = "Description|892"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Groupe"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 275; // // pictureBox2 // this.pictureBox2.BackColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.pictureBox2, ""); this.pictureBox2.Location = new System.Drawing.Point(8, 24); this.m_gestionnaireModeEdition.SetModeEdition(this.pictureBox2, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.pictureBox2, ""); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(520, 1); this.m_extStyle.SetStyleBackColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.pictureBox2.TabIndex = 9; this.pictureBox2.TabStop = false; // // pictureBox1 // this.m_extLinkField.SetLinkField(this.pictureBox1, ""); this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.pictureBox1, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.pictureBox1, ""); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(100, 50); this.m_extStyle.SetStyleBackColor(this.pictureBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.pictureBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.pictureBox1.TabIndex = 0; this.pictureBox1.TabStop = false; // // listViewColumn1 // this.listViewColumn1.Field = "Nom"; this.listViewColumn1.PrecisionWidth = 0; this.listViewColumn1.ProportionnalSize = false; this.listViewColumn1.Text = "Groupe"; this.listViewColumn1.Visible = true; this.listViewColumn1.Width = 342; // // m_TabControl // this.m_TabControl.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.m_TabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_TabControl.BoldSelectedPage = true; this.m_TabControl.ControlBottomOffset = 16; this.m_TabControl.ControlRightOffset = 16; this.m_TabControl.ForeColor = System.Drawing.Color.Black; this.m_TabControl.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_TabControl, ""); this.m_TabControl.Location = new System.Drawing.Point(8, 194); this.m_gestionnaireModeEdition.SetModeEdition(this.m_TabControl, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_TabControl, ""); this.m_TabControl.Name = "m_TabControl"; this.m_TabControl.Ombre = true; this.m_TabControl.PositionTop = true; this.m_TabControl.SelectedIndex = 0; this.m_TabControl.SelectedTab = this.pageFilles; this.m_TabControl.Size = new System.Drawing.Size(810, 324); this.m_extStyle.SetStyleBackColor(this.m_TabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_TabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_TabControl.TabIndex = 4004; this.m_TabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.pageFilles }); this.m_TabControl.TextColor = System.Drawing.Color.Black; // // pageFilles // this.pageFilles.Controls.Add(this.m_PanelCategoriesFilles); this.m_extLinkField.SetLinkField(this.pageFilles, ""); this.pageFilles.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.pageFilles, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.pageFilles, ""); this.pageFilles.Name = "pageFilles"; this.pageFilles.Size = new System.Drawing.Size(794, 283); this.m_extStyle.SetStyleBackColor(this.pageFilles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.pageFilles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.pageFilles.TabIndex = 12; this.pageFilles.Title = "Child Folders|10368"; // // m_PanelCategoriesFilles // this.m_PanelCategoriesFilles.AllowArbre = true; this.m_PanelCategoriesFilles.AllowCustomisation = true; this.m_PanelCategoriesFilles.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))); glColumn1.ActiveControlItems = null; glColumn1.BackColor = System.Drawing.Color.Transparent; glColumn1.ControlType = sc2i.win32.common.ColumnControlTypes.None; glColumn1.ForColor = System.Drawing.Color.Black; glColumn1.ImageIndex = -1; glColumn1.IsCheckColumn = false; glColumn1.LastSortState = sc2i.win32.common.ColumnSortState.SortedUp; glColumn1.Name = "Libelle"; glColumn1.Propriete = "Libelle"; glColumn1.Text = "Label|50"; glColumn1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; glColumn1.Width = 300; this.m_PanelCategoriesFilles.Columns.AddRange(new sc2i.win32.common.GLColumn[] { glColumn1 }); this.m_PanelCategoriesFilles.ContexteUtilisation = ""; this.m_PanelCategoriesFilles.ControlFiltreStandard = null; this.m_PanelCategoriesFilles.ElementSelectionne = null; this.m_PanelCategoriesFilles.EnableCustomisation = true; this.m_PanelCategoriesFilles.FiltreDeBase = null; this.m_PanelCategoriesFilles.FiltreDeBaseEnAjout = false; this.m_PanelCategoriesFilles.FiltrePrefere = null; this.m_PanelCategoriesFilles.FiltreRapide = null; this.m_PanelCategoriesFilles.HasImages = false; this.m_extLinkField.SetLinkField(this.m_PanelCategoriesFilles, ""); this.m_PanelCategoriesFilles.ListeObjets = null; this.m_PanelCategoriesFilles.Location = new System.Drawing.Point(4, 3); this.m_PanelCategoriesFilles.LockEdition = true; this.m_gestionnaireModeEdition.SetModeEdition(this.m_PanelCategoriesFilles, sc2i.win32.common.TypeModeEdition.DisableSurEdition); this.m_PanelCategoriesFilles.ModeQuickSearch = false; this.m_PanelCategoriesFilles.ModeSelection = false; this.m_extModulesAssociator.SetModules(this.m_PanelCategoriesFilles, ""); this.m_PanelCategoriesFilles.MultiSelect = false; this.m_PanelCategoriesFilles.Name = "m_PanelCategoriesFilles"; this.m_PanelCategoriesFilles.Navigateur = null; this.m_PanelCategoriesFilles.ProprieteObjetAEditer = null; this.m_PanelCategoriesFilles.QuickSearchText = ""; this.m_PanelCategoriesFilles.Size = new System.Drawing.Size(787, 277); this.m_extStyle.SetStyleBackColor(this.m_PanelCategoriesFilles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_PanelCategoriesFilles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_PanelCategoriesFilles.TabIndex = 1; this.m_PanelCategoriesFilles.TrierAuClicSurEnteteColonne = true; this.m_PanelCategoriesFilles.UseCheckBoxes = false; // // CFormEditionDossierMail // this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.m_TabControl); this.Controls.Add(this.c2iPanelOmbre4); this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this, ""); this.Name = "CFormEditionDossierMail"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Controls.SetChildIndex(this.c2iPanelOmbre4, 0); this.Controls.SetChildIndex(this.m_TabControl, 0); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.m_panelNavigation.ResumeLayout(false); this.m_panelCle.ResumeLayout(false); this.m_panelCle.PerformLayout(); this.m_panelMenu.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.m_imageCle)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.m_btnChercherObjet)).EndInit(); this.c2iPanelOmbre4.ResumeLayout(false); this.c2iPanelOmbre4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.m_TabControl.ResumeLayout(false); this.m_TabControl.PerformLayout(); this.pageFilles.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); this.label1 = new System.Windows.Forms.Label(); this.m_txtLibelle = new sc2i.win32.common.C2iTextBox(); this.m_listViewRelationsComptabilites = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn8 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.c2iPanelOmbre1 = new sc2i.win32.common.C2iPanelOmbre(); this.m_cmbTypeElements = new sc2i.win32.common.C2iComboBox(); this.label2 = new System.Windows.Forms.Label(); this.m_tab = new sc2i.win32.common.C2iTabControl(this.components); this.m_pageEvenements = new Crownwood.Magic.Controls.TabPage(); this.m_panelEvenements = new sc2i.win32.process.CPanelDefinisseurEvenements(); this.m_tabPageToRemove = new Crownwood.Magic.Controls.TabPage(); this.m_listViewRelationElement = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn5 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_gestionnaireModeEdition = new sc2i.win32.common.CExtModeEdition(); this.m_extLinkField = new sc2i.win32.common.CExtLinkField(); this.m_extStyle = new sc2i.win32.common.CExtStyle(); this.c2iPanelOmbre1.SuspendLayout(); this.m_tab.SuspendLayout(); this.m_pageEvenements.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.m_extLinkField.SetLinkField(this.label1, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.label1, false); this.label1.Location = new System.Drawing.Point(8, 8); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(47, 13); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 61; this.label1.Text = "Label|50"; // // m_txtLibelle // this.m_txtLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle"); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_txtLibelle, true); this.m_txtLibelle.Location = new System.Drawing.Point(88, 8); this.m_txtLibelle.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_txtLibelle.Name = "m_txtLibelle"; this.m_txtLibelle.Size = new System.Drawing.Size(464, 20); this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtLibelle.TabIndex = 2; this.m_txtLibelle.Text = "[Libelle]"; // // m_listViewRelationsComptabilites // this.m_listViewRelationsComptabilites.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_listViewRelationsComptabilites.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn8 }); this.m_listViewRelationsComptabilites.EnableCustomisation = true; this.m_listViewRelationsComptabilites.FullRowSelect = true; this.m_listViewRelationsComptabilites.HideSelection = false; this.m_extLinkField.SetLinkField(this.m_listViewRelationsComptabilites, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_listViewRelationsComptabilites, false); this.m_listViewRelationsComptabilites.Location = new System.Drawing.Point(8, 40); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listViewRelationsComptabilites, sc2i.win32.common.TypeModeEdition.Autonome); this.m_listViewRelationsComptabilites.Name = "m_listViewRelationsComptabilites"; this.m_listViewRelationsComptabilites.Size = new System.Drawing.Size(360, 208); this.m_extStyle.SetStyleBackColor(this.m_listViewRelationsComptabilites, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listViewRelationsComptabilites, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listViewRelationsComptabilites.TabIndex = 3; this.m_listViewRelationsComptabilites.UseCompatibleStateImageBehavior = false; this.m_listViewRelationsComptabilites.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn8 // this.listViewAutoFilledColumn8.Field = "Comptabilite.Libelle"; this.listViewAutoFilledColumn8.PrecisionWidth = 0; this.listViewAutoFilledColumn8.ProportionnalSize = false; this.listViewAutoFilledColumn8.Text = "Comptabilité.Libellé"; this.listViewAutoFilledColumn8.Visible = true; this.listViewAutoFilledColumn8.Width = 300; // // c2iPanelOmbre1 // this.c2iPanelOmbre1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.c2iPanelOmbre1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanelOmbre1.Controls.Add(this.m_cmbTypeElements); this.c2iPanelOmbre1.Controls.Add(this.label2); this.c2iPanelOmbre1.Controls.Add(this.m_txtLibelle); this.c2iPanelOmbre1.Controls.Add(this.label1); this.c2iPanelOmbre1.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.c2iPanelOmbre1, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.c2iPanelOmbre1, false); this.c2iPanelOmbre1.Location = new System.Drawing.Point(8, 3); this.c2iPanelOmbre1.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre1, sc2i.win32.common.TypeModeEdition.Autonome); this.c2iPanelOmbre1.Name = "c2iPanelOmbre1"; this.c2iPanelOmbre1.Size = new System.Drawing.Size(634, 72); this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanelOmbre1.TabIndex = 0; // // m_cmbTypeElements // this.m_cmbTypeElements.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_cmbTypeElements.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbTypeElements.IsLink = false; this.m_extLinkField.SetLinkField(this.m_cmbTypeElements, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_cmbTypeElements, false); this.m_cmbTypeElements.Location = new System.Drawing.Point(88, 32); this.m_cmbTypeElements.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_cmbTypeElements, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_cmbTypeElements.Name = "m_cmbTypeElements"; this.m_cmbTypeElements.Size = new System.Drawing.Size(464, 21); this.m_extStyle.SetStyleBackColor(this.m_cmbTypeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_cmbTypeElements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbTypeElements.TabIndex = 4007; // // label2 // this.m_extLinkField.SetLinkField(this.label2, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.label2, false); this.label2.Location = new System.Drawing.Point(8, 32); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(80, 16); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4006; this.label2.Text = "Target|20106"; // // m_tab // this.m_tab.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.m_tab.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tab.BoldSelectedPage = true; this.m_tab.ControlBottomOffset = 16; this.m_tab.ControlRightOffset = 16; this.m_tab.ForeColor = System.Drawing.Color.Black; this.m_tab.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_tab, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_tab, false); this.m_tab.Location = new System.Drawing.Point(8, 81); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tab, sc2i.win32.common.TypeModeEdition.Autonome); this.m_tab.Name = "m_tab"; this.m_tab.Ombre = true; this.m_tab.PositionTop = true; this.m_tab.SelectedIndex = 0; this.m_tab.SelectedTab = this.m_tabPageToRemove; this.m_tab.Size = new System.Drawing.Size(822, 449); this.m_extStyle.SetStyleBackColor(this.m_tab, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_tab, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tab.TabIndex = 4003; this.m_tab.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.m_tabPageToRemove, this.m_pageEvenements }); this.m_tab.TextColor = System.Drawing.Color.Black; // // m_pageEvenements // this.m_pageEvenements.Controls.Add(this.m_panelEvenements); this.m_extLinkField.SetLinkField(this.m_pageEvenements, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_pageEvenements, false); this.m_pageEvenements.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_pageEvenements, sc2i.win32.common.TypeModeEdition.Autonome); this.m_pageEvenements.Name = "m_pageEvenements"; this.m_pageEvenements.Selected = false; this.m_pageEvenements.Size = new System.Drawing.Size(806, 408); this.m_extStyle.SetStyleBackColor(this.m_pageEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_pageEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_pageEvenements.TabIndex = 10; this.m_pageEvenements.Title = "Event|20108"; // // m_panelEvenements // this.m_panelEvenements.Dock = System.Windows.Forms.DockStyle.Fill; this.m_extLinkField.SetLinkField(this.m_panelEvenements, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_panelEvenements, false); this.m_panelEvenements.Location = new System.Drawing.Point(0, 0); this.m_panelEvenements.LockEdition = true; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEvenements, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelEvenements.Name = "m_panelEvenements"; this.m_panelEvenements.Size = new System.Drawing.Size(806, 408); this.m_extStyle.SetStyleBackColor(this.m_panelEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelEvenements, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelEvenements.TabIndex = 0; // // m_tabPageToRemove // this.m_extLinkField.SetLinkField(this.m_tabPageToRemove, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_tabPageToRemove, false); this.m_tabPageToRemove.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabPageToRemove, sc2i.win32.common.TypeModeEdition.Autonome); this.m_tabPageToRemove.Name = "m_tabPageToRemove"; this.m_tabPageToRemove.Size = new System.Drawing.Size(806, 408); this.m_extStyle.SetStyleBackColor(this.m_tabPageToRemove, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_tabPageToRemove, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_tabPageToRemove.TabIndex = 2; this.m_tabPageToRemove.Title = "Page|20107"; // // m_listViewRelationElement // this.m_listViewRelationElement.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_listViewRelationElement.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn1, this.listViewAutoFilledColumn5 }); this.m_listViewRelationElement.EnableCustomisation = false; this.m_listViewRelationElement.FullRowSelect = true; this.m_listViewRelationElement.HideSelection = false; this.m_extLinkField.SetLinkField(this.m_listViewRelationElement, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_listViewRelationElement, false); this.m_listViewRelationElement.Location = new System.Drawing.Point(8, 32); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listViewRelationElement, sc2i.win32.common.TypeModeEdition.Autonome); this.m_listViewRelationElement.MultiSelect = false; this.m_listViewRelationElement.Name = "m_listViewRelationElement"; this.m_listViewRelationElement.Size = new System.Drawing.Size(376, 272); this.m_extStyle.SetStyleBackColor(this.m_listViewRelationElement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listViewRelationElement, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listViewRelationElement.TabIndex = 14; this.m_listViewRelationElement.UseCompatibleStateImageBehavior = false; this.m_listViewRelationElement.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Label|50"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 203; // // listViewAutoFilledColumn5 // this.listViewAutoFilledColumn5.Field = "TypeElementsConvivial"; this.listViewAutoFilledColumn5.PrecisionWidth = 0; this.listViewAutoFilledColumn5.ProportionnalSize = false; this.listViewAutoFilledColumn5.Text = "Type|20109"; this.listViewAutoFilledColumn5.Visible = true; this.listViewAutoFilledColumn5.Width = 156; // // m_extLinkField // this.m_extLinkField.SourceTypeString = ""; // // CPanelEditionComportementGenerique // this.Controls.Add(this.m_tab); this.Controls.Add(this.c2iPanelOmbre1); this.m_extLinkField.SetLinkField(this, ""); this.m_extLinkField.SetLinkFieldAutoUpdate(this, false); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.Name = "CPanelEditionComportementGenerique"; this.Size = new System.Drawing.Size(830, 530); this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Load += new System.EventHandler(this.CPanelEditionComportementGenerique_Load); this.c2iPanelOmbre1.ResumeLayout(false); this.c2iPanelOmbre1.PerformLayout(); this.m_tab.ResumeLayout(false); this.m_tab.PerformLayout(); this.m_pageEvenements.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); this.label1 = new System.Windows.Forms.Label(); this.m_cmbProcess = new sc2i.win32.common.CComboboxAutoFilled(); this.m_lblNomVariable = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.m_txtFormuleVariable = new sc2i.win32.expression.CControleEditeFormule(); this.m_wndListeVariables = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_wndListeCategories = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_chkAsynchrone = new System.Windows.Forms.CheckBox(); this.m_panelCentre = new sc2i.win32.common.C2iPanelOmbre(); this.label3 = new System.Windows.Forms.Label(); this.m_wndAideFormule = new sc2i.win32.expression.CControlAideFormule(); this.m_panelHaut = new sc2i.win32.common.C2iPanel(this.components); this.m_chkContexteSepare = new System.Windows.Forms.CheckBox(); this.splitter1 = new System.Windows.Forms.Splitter(); this.m_panelPointEntree = new System.Windows.Forms.Panel(); this.m_cmbPointEntree = new sc2i.win32.common.CComboboxAutoFilled(); this.label4 = new System.Windows.Forms.Label(); this.m_chkSansTrace = new System.Windows.Forms.CheckBox(); this.m_panelCentre.SuspendLayout(); this.m_panelHaut.SuspendLayout(); this.m_panelPointEntree.SuspendLayout(); this.SuspendLayout(); // // m_lblStockerResIn // this.m_lblStockerResIn.Text = "Store the result in|30011"; // // label1 // this.label1.Location = new System.Drawing.Point(8, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(72, 16); this.label1.TabIndex = 2; this.label1.Text = "Action|134"; // // m_cmbProcess // this.m_cmbProcess.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbProcess.IsLink = false; this.m_cmbProcess.ListDonnees = null; this.m_cmbProcess.Location = new System.Drawing.Point(80, 8); this.m_cmbProcess.LockEdition = false; this.m_cmbProcess.Name = "m_cmbProcess"; this.m_cmbProcess.NullAutorise = false; this.m_cmbProcess.ProprieteAffichee = null; this.m_cmbProcess.Size = new System.Drawing.Size(288, 21); this.m_cmbProcess.TabIndex = 3; this.m_cmbProcess.TextNull = "(vide)"; this.m_cmbProcess.Tri = true; this.m_cmbProcess.SelectedIndexChanged += new System.EventHandler(this.m_cmbProcess_SelectedIndexChanged); // // m_lblNomVariable // this.m_lblNomVariable.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_lblNomVariable.Location = new System.Drawing.Point(216, 8); this.m_lblNomVariable.Name = "m_lblNomVariable"; this.m_lblNomVariable.Size = new System.Drawing.Size(232, 16); this.m_lblNomVariable.TabIndex = 3; // // label2 // this.label2.Location = new System.Drawing.Point(216, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(160, 16); this.label2.TabIndex = 2; this.label2.Text = "Variable value|137"; // // m_txtFormuleVariable // this.m_txtFormuleVariable.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.m_txtFormuleVariable.BackColor = System.Drawing.Color.White; this.m_txtFormuleVariable.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleVariable.Formule = null; this.m_txtFormuleVariable.Location = new System.Drawing.Point(216, 40); this.m_txtFormuleVariable.LockEdition = false; this.m_txtFormuleVariable.Name = "m_txtFormuleVariable"; this.m_txtFormuleVariable.Size = new System.Drawing.Size(240, 179); this.m_txtFormuleVariable.TabIndex = 1; this.m_txtFormuleVariable.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // m_wndListeVariables // this.m_wndListeVariables.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.m_wndListeVariables.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn1 }); this.m_wndListeVariables.EnableCustomisation = true; this.m_wndListeVariables.FullRowSelect = true; this.m_wndListeVariables.Location = new System.Drawing.Point(8, 24); this.m_wndListeVariables.MultiSelect = false; this.m_wndListeVariables.Name = "m_wndListeVariables"; this.m_wndListeVariables.Size = new System.Drawing.Size(192, 195); this.m_wndListeVariables.TabIndex = 0; this.m_wndListeVariables.UseCompatibleStateImageBehavior = false; this.m_wndListeVariables.View = System.Windows.Forms.View.Details; this.m_wndListeVariables.SelectedIndexChanged += new System.EventHandler(this.m_wndListeVariables_SelectedIndexChanged); // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Name|205"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 176; // // m_wndListeCategories // this.m_wndListeCategories.CheckBoxes = true; this.m_wndListeCategories.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn2 }); this.m_wndListeCategories.EnableCustomisation = true; this.m_wndListeCategories.FullRowSelect = true; this.m_wndListeCategories.Location = new System.Drawing.Point(8, 24); this.m_wndListeCategories.MultiSelect = false; this.m_wndListeCategories.Name = "m_wndListeCategories"; this.m_wndListeCategories.Size = new System.Drawing.Size(296, 240); this.m_wndListeCategories.TabIndex = 0; this.m_wndListeCategories.UseCompatibleStateImageBehavior = false; this.m_wndListeCategories.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|10002"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 279; // // m_chkAsynchrone // this.m_chkAsynchrone.Location = new System.Drawing.Point(374, 6); this.m_chkAsynchrone.Name = "m_chkAsynchrone"; this.m_chkAsynchrone.Size = new System.Drawing.Size(174, 18); this.m_chkAsynchrone.TabIndex = 5; this.m_chkAsynchrone.Text = "Asynchronous mode|135"; this.m_chkAsynchrone.Visible = false; this.m_chkAsynchrone.CheckedChanged += new System.EventHandler(this.m_chkAsynchrone_CheckedChanged); // // m_panelCentre // this.m_panelCentre.Controls.Add(this.m_lblNomVariable); this.m_panelCentre.Controls.Add(this.label2); this.m_panelCentre.Controls.Add(this.m_txtFormuleVariable); this.m_panelCentre.Controls.Add(this.m_wndListeVariables); this.m_panelCentre.Controls.Add(this.label3); this.m_panelCentre.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelCentre.Location = new System.Drawing.Point(0, 101); this.m_panelCentre.LockEdition = false; this.m_panelCentre.Name = "m_panelCentre"; this.m_panelCentre.Size = new System.Drawing.Size(485, 240); this.m_panelCentre.TabIndex = 6; // // label3 // this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(12, 8); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(110, 16); this.label3.TabIndex = 4; this.label3.Text = "Variables|136"; // // m_wndAideFormule // this.m_wndAideFormule.BackColor = System.Drawing.Color.White; this.m_wndAideFormule.Dock = System.Windows.Forms.DockStyle.Right; this.m_wndAideFormule.FournisseurProprietes = null; this.m_wndAideFormule.Location = new System.Drawing.Point(488, 72); this.m_wndAideFormule.Name = "m_wndAideFormule"; this.m_wndAideFormule.ObjetInterroge = null; this.m_wndAideFormule.SendIdChamps = false; this.m_wndAideFormule.Size = new System.Drawing.Size(176, 269); this.m_wndAideFormule.TabIndex = 7; this.m_wndAideFormule.OnSendCommande += new sc2i.win32.expression.SendCommande(this.m_wndAideFormule_OnSendCommande); // // m_panelHaut // this.m_panelHaut.Controls.Add(this.m_chkSansTrace); this.m_panelHaut.Controls.Add(this.m_chkContexteSepare); this.m_panelHaut.Controls.Add(this.label1); this.m_panelHaut.Controls.Add(this.m_chkAsynchrone); this.m_panelHaut.Controls.Add(this.m_cmbProcess); this.m_panelHaut.Dock = System.Windows.Forms.DockStyle.Top; this.m_panelHaut.Location = new System.Drawing.Point(0, 32); this.m_panelHaut.LockEdition = false; this.m_panelHaut.Name = "m_panelHaut"; this.m_panelHaut.Size = new System.Drawing.Size(664, 40); this.m_panelHaut.TabIndex = 8; // // m_chkContexteSepare // this.m_chkContexteSepare.Location = new System.Drawing.Point(374, 22); this.m_chkContexteSepare.Name = "m_chkContexteSepare"; this.m_chkContexteSepare.Size = new System.Drawing.Size(174, 18); this.m_chkContexteSepare.TabIndex = 6; this.m_chkContexteSepare.Text = "Separate data context|20009"; this.m_chkContexteSepare.CheckedChanged += new System.EventHandler(this.m_chkContexteSepare_CheckedChanged); // // splitter1 // this.splitter1.Dock = System.Windows.Forms.DockStyle.Right; this.splitter1.Location = new System.Drawing.Point(485, 72); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(3, 269); this.splitter1.TabIndex = 9; this.splitter1.TabStop = false; // // m_panelPointEntree // this.m_panelPointEntree.Controls.Add(this.m_cmbPointEntree); this.m_panelPointEntree.Controls.Add(this.label4); this.m_panelPointEntree.Dock = System.Windows.Forms.DockStyle.Top; this.m_panelPointEntree.Location = new System.Drawing.Point(0, 72); this.m_panelPointEntree.Name = "m_panelPointEntree"; this.m_panelPointEntree.Size = new System.Drawing.Size(485, 29); this.m_panelPointEntree.TabIndex = 5; // // m_cmbPointEntree // this.m_cmbPointEntree.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbPointEntree.IsLink = false; this.m_cmbPointEntree.ListDonnees = null; this.m_cmbPointEntree.Location = new System.Drawing.Point(144, 4); this.m_cmbPointEntree.LockEdition = false; this.m_cmbPointEntree.Name = "m_cmbPointEntree"; this.m_cmbPointEntree.NullAutorise = false; this.m_cmbPointEntree.ProprieteAffichee = null; this.m_cmbPointEntree.Size = new System.Drawing.Size(335, 21); this.m_cmbPointEntree.TabIndex = 4; this.m_cmbPointEntree.TextNull = "(vide)"; this.m_cmbPointEntree.Tri = true; // // label4 // this.label4.Location = new System.Drawing.Point(8, 7); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(130, 23); this.label4.TabIndex = 0; this.label4.Text = "Entry point|20011"; // // m_chkSansTrace // this.m_chkSansTrace.Location = new System.Drawing.Point(539, 6); this.m_chkSansTrace.Name = "m_chkSansTrace"; this.m_chkSansTrace.Size = new System.Drawing.Size(122, 18); this.m_chkSansTrace.TabIndex = 7; this.m_chkSansTrace.Text = "Don\'t trace|20026"; // // CFormEditActionLancerProcess // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(664, 389); this.Controls.Add(this.m_panelCentre); this.Controls.Add(this.m_panelPointEntree); this.Controls.Add(this.splitter1); this.Controls.Add(this.m_wndAideFormule); this.Controls.Add(this.m_panelHaut); this.Name = "CFormEditActionLancerProcess"; this.Text = "Start an Action|133"; this.Load += new System.EventHandler(this.CFormEditActionLancerProcess_Load); this.Controls.SetChildIndex(this.m_panelHaut, 0); this.Controls.SetChildIndex(this.m_wndAideFormule, 0); this.Controls.SetChildIndex(this.splitter1, 0); this.Controls.SetChildIndex(this.m_panelPointEntree, 0); this.Controls.SetChildIndex(this.m_panelCentre, 0); this.m_panelCentre.ResumeLayout(false); this.m_panelCentre.PerformLayout(); this.m_panelHaut.ResumeLayout(false); this.m_panelPointEntree.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); sc2i.win32.common.CGrilleEditeurObjetGraphique cGrilleEditeurObjetGraphique1 = new sc2i.win32.common.CGrilleEditeurObjetGraphique(); sc2i.win32.common.CProfilEditeurObjetGraphique cProfilEditeurObjetGraphique1 = new sc2i.win32.common.CProfilEditeurObjetGraphique(); this.m_lblLabel = new System.Windows.Forms.Label(); this.m_txtLibelle = new sc2i.win32.common.C2iTextBox(); this.label2 = new System.Windows.Forms.Label(); this.m_cmbRoleFormulaire = new sc2i.win32.common.CComboboxAutoFilled(); this.m_panelFondEdition = new sc2i.win32.common.C2iPanel(this.components); this.m_panDesigner = new System.Windows.Forms.Panel(); this.m_panelEditionFormulaire = new sc2i.formulaire.win32.editor.CPanelEditionFormulaire(); this.splitter2 = new System.Windows.Forms.Splitter(); this.m_propertyGrid = new System.Windows.Forms.PropertyGrid(); this.splitter1 = new System.Windows.Forms.Splitter(); this.m_listeControles = new sc2i.formulaire.win32.editor.CPanelListe2iWnd(); this.m_panelLibelle = new sc2i.win32.common.C2iPanelOmbre(); this.c2iNumericUpDown1 = new sc2i.win32.common.C2iNumericUpDown(); this.m_chkPartout = new System.Windows.Forms.CheckBox(); this.label3 = new System.Windows.Forms.Label(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.pageFormulaire = new Crownwood.Magic.Controls.TabPage(); this.m_wndListeMasquer = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_ctrlSavProfilDesigner = new timos.CCtrlSauvegardeProfilDesigner(); this.m_panelCle.SuspendLayout(); this.m_panelMenu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).BeginInit(); this.m_panelFondEdition.SuspendLayout(); this.m_panDesigner.SuspendLayout(); this.m_panelLibelle.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.c2iNumericUpDown1)).BeginInit(); this.m_tabControl.SuspendLayout(); this.pageFormulaire.SuspendLayout(); this.SuspendLayout(); // // m_btnAnnulerModifications // this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnAnnulerModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnValiderModifications // this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnValiderModifications, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnSupprimerObjet // this.m_extLinkField.SetLinkField(this.m_btnSupprimerObjet, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnSupprimerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSupprimerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnEditerObjet // this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, ""); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extStyle.SetStyleBackColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnEditerObjet, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelNavigation // this.m_extStyle.SetStyleBackColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelNavigation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelCle // this.m_extStyle.SetStyleBackColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_btnHistorique // this.m_extStyle.SetStyleBackColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnHistorique, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // m_lblLabel // this.m_lblLabel.AutoSize = true; this.m_extLinkField.SetLinkField(this.m_lblLabel, ""); this.m_lblLabel.Location = new System.Drawing.Point(12, 9); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lblLabel, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_lblLabel, ""); this.m_lblLabel.Name = "m_lblLabel"; this.m_lblLabel.Size = new System.Drawing.Size(47, 13); this.m_extStyle.SetStyleBackColor(this.m_lblLabel, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lblLabel, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblLabel.TabIndex = 67; this.m_lblLabel.Text = "Label|50"; // // m_txtLibelle // this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle"); this.m_txtLibelle.Location = new System.Drawing.Point(64, 6); this.m_txtLibelle.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_txtLibelle, ""); this.m_txtLibelle.Name = "m_txtLibelle"; this.m_txtLibelle.Size = new System.Drawing.Size(168, 20); this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtLibelle.TabIndex = 0; this.m_txtLibelle.Text = "[Libelle]"; // // label2 // this.label2.AutoSize = true; this.m_extLinkField.SetLinkField(this.label2, ""); this.label2.Location = new System.Drawing.Point(248, 10); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.label2, ""); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(66, 13); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4001; this.label2.Text = "Purpose|898"; // // m_cmbRoleFormulaire // this.m_cmbRoleFormulaire.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbRoleFormulaire.IsLink = false; this.m_extLinkField.SetLinkField(this.m_cmbRoleFormulaire, ""); this.m_cmbRoleFormulaire.ListDonnees = null; this.m_cmbRoleFormulaire.Location = new System.Drawing.Point(312, 6); this.m_cmbRoleFormulaire.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_cmbRoleFormulaire, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_cmbRoleFormulaire, ""); this.m_cmbRoleFormulaire.Name = "m_cmbRoleFormulaire"; this.m_cmbRoleFormulaire.NullAutorise = true; this.m_cmbRoleFormulaire.ProprieteAffichee = "Libelle"; this.m_cmbRoleFormulaire.Size = new System.Drawing.Size(204, 21); this.m_extStyle.SetStyleBackColor(this.m_cmbRoleFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_cmbRoleFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbRoleFormulaire.TabIndex = 4002; this.m_cmbRoleFormulaire.TextNull = "Formulaire général"; this.m_cmbRoleFormulaire.Tri = true; this.m_cmbRoleFormulaire.SelectionChangeCommitted += new System.EventHandler(this.m_cmbRoleFormulaire_SelectionChangeCommitted); this.m_cmbRoleFormulaire.SelectedValueChanged += new System.EventHandler(this.m_cmbRoleFormulaire_SelectedValueChanged); // // m_panelFondEdition // this.m_panelFondEdition.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.m_panelFondEdition.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_panelFondEdition.Controls.Add(this.m_panDesigner); this.m_panelFondEdition.Controls.Add(this.splitter2); this.m_panelFondEdition.Controls.Add(this.m_propertyGrid); this.m_panelFondEdition.Controls.Add(this.splitter1); this.m_panelFondEdition.Controls.Add(this.m_listeControles); this.m_panelFondEdition.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.m_panelFondEdition, ""); this.m_panelFondEdition.Location = new System.Drawing.Point(0, 0); this.m_panelFondEdition.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelFondEdition, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_panelFondEdition, ""); this.m_panelFondEdition.Name = "m_panelFondEdition"; this.m_panelFondEdition.Size = new System.Drawing.Size(790, 371); this.m_extStyle.SetStyleBackColor(this.m_panelFondEdition, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_panelFondEdition, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_panelFondEdition.TabIndex = 3; // // m_panDesigner // this.m_panDesigner.Controls.Add(this.m_panelEditionFormulaire); this.m_panDesigner.Dock = System.Windows.Forms.DockStyle.Fill; this.m_extLinkField.SetLinkField(this.m_panDesigner, ""); this.m_panDesigner.Location = new System.Drawing.Point(149, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panDesigner, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_panDesigner, ""); this.m_panDesigner.Name = "m_panDesigner"; this.m_panDesigner.Size = new System.Drawing.Size(452, 371); this.m_extStyle.SetStyleBackColor(this.m_panDesigner, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panDesigner, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panDesigner.TabIndex = 4; // // m_panelEditionFormulaire // this.m_panelEditionFormulaire.AllowDrop = true; this.m_panelEditionFormulaire.AutoScroll = true; this.m_panelEditionFormulaire.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_panelEditionFormulaire.Dock = System.Windows.Forms.DockStyle.Fill; this.m_panelEditionFormulaire.Echelle = 1F; this.m_panelEditionFormulaire.EffetAjoutSuppression = false; this.m_panelEditionFormulaire.EffetFonduMenu = true; this.m_panelEditionFormulaire.EnDeplacement = false; this.m_panelEditionFormulaire.EntiteEditee = null; this.m_panelEditionFormulaire.ForeColor = System.Drawing.Color.Black; this.m_panelEditionFormulaire.FormesDesPoignees = sc2i.win32.common.EFormePoignee.Carre; this.m_panelEditionFormulaire.FournisseurProprietes = null; cGrilleEditeurObjetGraphique1.Couleur = System.Drawing.Color.Blue; cGrilleEditeurObjetGraphique1.HauteurCarreau = 20; cGrilleEditeurObjetGraphique1.LargeurCarreau = 25; cGrilleEditeurObjetGraphique1.Representation = sc2i.win32.common.ERepresentationGrille.LignesContinues; cGrilleEditeurObjetGraphique1.TailleCarreau = new System.Drawing.Size(25, 20); this.m_panelEditionFormulaire.GrilleAlignement = cGrilleEditeurObjetGraphique1; this.m_panelEditionFormulaire.HauteurMinimaleDesObjets = 10; this.m_panelEditionFormulaire.HistorisationActive = true; this.m_panelEditionFormulaire.LargeurMinimaleDesObjets = 10; this.m_extLinkField.SetLinkField(this.m_panelEditionFormulaire, ""); this.m_panelEditionFormulaire.Location = new System.Drawing.Point(0, 0); this.m_panelEditionFormulaire.LockEdition = false; this.m_panelEditionFormulaire.Marge = 10; this.m_panelEditionFormulaire.ModeAffichageGrille = sc2i.win32.common.EModeAffichageGrille.AuDeplacement; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEditionFormulaire, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_panelEditionFormulaire.ModeRepresentationGrille = sc2i.win32.common.ERepresentationGrille.LignesContinues; this.m_panelEditionFormulaire.ModeSourisStandard = true; this.m_extModulesAssociator.SetModules(this.m_panelEditionFormulaire, ""); this.m_panelEditionFormulaire.Name = "m_panelEditionFormulaire"; this.m_panelEditionFormulaire.NombreHistorisation = 10; this.m_panelEditionFormulaire.ObjetEdite = null; cProfilEditeurObjetGraphique1.FormeDesPoignees = sc2i.win32.common.EFormePoignee.Carre; cProfilEditeurObjetGraphique1.Grille = cGrilleEditeurObjetGraphique1; cProfilEditeurObjetGraphique1.HistorisationActive = true; cProfilEditeurObjetGraphique1.Marge = 10; cProfilEditeurObjetGraphique1.ModeAffichageGrille = sc2i.win32.common.EModeAffichageGrille.AuDeplacement; cProfilEditeurObjetGraphique1.NombreHistorisation = 10; cProfilEditeurObjetGraphique1.ToujoursAlignerSurLaGrille = false; this.m_panelEditionFormulaire.Profil = cProfilEditeurObjetGraphique1; this.m_panelEditionFormulaire.RefreshSelectionChanged = true; this.m_panelEditionFormulaire.Size = new System.Drawing.Size(452, 371); this.m_extStyle.SetStyleBackColor(this.m_panelEditionFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_panelEditionFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_panelEditionFormulaire.TabIndex = 0; this.m_panelEditionFormulaire.ToujoursAlignerSelonLesControles = true; this.m_panelEditionFormulaire.ToujoursAlignerSurLaGrille = false; this.m_panelEditionFormulaire.TypeEdite = null; this.m_panelEditionFormulaire.SelectionChanged += new System.EventHandler(this.m_panelEditionFormulaire_SelectionChanged); this.m_panelEditionFormulaire.ElementMovedOrResized += new System.EventHandler(this.m_panelEditionFormulaire_ElementMovedOrResized); // // splitter2 // this.splitter2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.splitter2.Dock = System.Windows.Forms.DockStyle.Right; this.m_extLinkField.SetLinkField(this.splitter2, ""); this.splitter2.Location = new System.Drawing.Point(601, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.splitter2, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.splitter2, ""); this.splitter2.Name = "splitter2"; this.splitter2.Size = new System.Drawing.Size(5, 371); this.m_extStyle.SetStyleBackColor(this.splitter2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.splitter2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.splitter2.TabIndex = 3; this.splitter2.TabStop = false; // // m_propertyGrid // this.m_propertyGrid.CommandsBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(247)))), ((int)(((byte)(184))))); this.m_propertyGrid.Dock = System.Windows.Forms.DockStyle.Right; this.m_propertyGrid.HelpVisible = false; this.m_propertyGrid.LineColor = System.Drawing.SystemColors.ScrollBar; this.m_extLinkField.SetLinkField(this.m_propertyGrid, ""); this.m_propertyGrid.Location = new System.Drawing.Point(606, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_propertyGrid, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_propertyGrid, ""); this.m_propertyGrid.Name = "m_propertyGrid"; this.m_propertyGrid.Size = new System.Drawing.Size(184, 371); this.m_extStyle.SetStyleBackColor(this.m_propertyGrid, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_propertyGrid, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_propertyGrid.TabIndex = 2; this.m_propertyGrid.ToolbarVisible = false; this.m_propertyGrid.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.m_propertyGrid_PropertyValueChanged); // // splitter1 // this.splitter1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); this.m_extLinkField.SetLinkField(this.splitter1, ""); this.splitter1.Location = new System.Drawing.Point(144, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.splitter1, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.splitter1, ""); this.splitter1.Name = "splitter1"; this.splitter1.Size = new System.Drawing.Size(5, 371); this.m_extStyle.SetStyleBackColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.splitter1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.splitter1.TabIndex = 1; this.splitter1.TabStop = false; // // m_listeControles // this.m_listeControles.AutoScroll = true; this.m_listeControles.Dock = System.Windows.Forms.DockStyle.Left; this.m_extLinkField.SetLinkField(this.m_listeControles, ""); this.m_listeControles.Location = new System.Drawing.Point(0, 0); this.m_gestionnaireModeEdition.SetModeEdition(this.m_listeControles, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_listeControles, ""); this.m_listeControles.Name = "m_listeControles"; this.m_listeControles.Size = new System.Drawing.Size(144, 371); this.m_extStyle.SetStyleBackColor(this.m_listeControles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listeControles, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listeControles.TabIndex = 0; // // m_panelLibelle // this.m_panelLibelle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_panelLibelle.Controls.Add(this.m_cmbRoleFormulaire); this.m_panelLibelle.Controls.Add(this.m_txtLibelle); this.m_panelLibelle.Controls.Add(this.c2iNumericUpDown1); this.m_panelLibelle.Controls.Add(this.m_chkPartout); this.m_panelLibelle.Controls.Add(this.m_lblLabel); this.m_panelLibelle.Controls.Add(this.label2); this.m_panelLibelle.Controls.Add(this.label3); this.m_panelLibelle.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.m_panelLibelle, ""); this.m_panelLibelle.Location = new System.Drawing.Point(16, 44); this.m_panelLibelle.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelLibelle, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_panelLibelle, ""); this.m_panelLibelle.Name = "m_panelLibelle"; this.m_panelLibelle.Size = new System.Drawing.Size(688, 72); this.m_extStyle.SetStyleBackColor(this.m_panelLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_panelLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_panelLibelle.TabIndex = 0; this.m_panelLibelle.Text = "[NumeroOrdre]"; // // c2iNumericUpDown1 // this.c2iNumericUpDown1.DoubleValue = 0; this.c2iNumericUpDown1.IntValue = 0; this.m_extLinkField.SetLinkField(this.c2iNumericUpDown1, "NumeroOrdre"); this.c2iNumericUpDown1.Location = new System.Drawing.Point(64, 28); this.c2iNumericUpDown1.LockEdition = false; this.c2iNumericUpDown1.Maximum = new decimal(new int[] { 100000, 0, 0, 0 }); this.m_gestionnaireModeEdition.SetModeEdition(this.c2iNumericUpDown1, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.c2iNumericUpDown1, ""); this.c2iNumericUpDown1.Name = "c2iNumericUpDown1"; this.c2iNumericUpDown1.Size = new System.Drawing.Size(64, 20); this.m_extStyle.SetStyleBackColor(this.c2iNumericUpDown1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.c2iNumericUpDown1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.c2iNumericUpDown1.TabIndex = 4005; this.c2iNumericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.c2iNumericUpDown1.ThousandsSeparator = true; // // m_chkPartout // this.m_extLinkField.SetLinkField(this.m_chkPartout, "AfficherPartout"); this.m_chkPartout.Location = new System.Drawing.Point(522, 6); this.m_gestionnaireModeEdition.SetModeEdition(this.m_chkPartout, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_chkPartout, ""); this.m_chkPartout.Name = "m_chkPartout"; this.m_chkPartout.Size = new System.Drawing.Size(147, 24); this.m_extStyle.SetStyleBackColor(this.m_chkPartout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_chkPartout, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_chkPartout.TabIndex = 4003; this.m_chkPartout.Text = "For all elements|919"; this.m_chkPartout.Visible = false; // // label3 // this.label3.AutoSize = true; this.m_extLinkField.SetLinkField(this.label3, ""); this.label3.Location = new System.Drawing.Point(12, 30); this.m_gestionnaireModeEdition.SetModeEdition(this.label3, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.label3, ""); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(53, 13); this.m_extStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 4004; this.label3.Text = "Order|782"; // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_extLinkField.SetLinkField(this.m_tabControl, ""); this.m_tabControl.Location = new System.Drawing.Point(16, 119); this.m_gestionnaireModeEdition.SetModeEdition(this.m_tabControl, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.m_tabControl, ""); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 0; this.m_tabControl.SelectedTab = this.pageFormulaire; this.m_tabControl.Size = new System.Drawing.Size(806, 411); this.m_extStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 4004; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.pageFormulaire }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // pageFormulaire // this.pageFormulaire.Controls.Add(this.m_panelFondEdition); this.m_extLinkField.SetLinkField(this.pageFormulaire, ""); this.pageFormulaire.Location = new System.Drawing.Point(0, 25); this.m_gestionnaireModeEdition.SetModeEdition(this.pageFormulaire, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this.pageFormulaire, ""); this.pageFormulaire.Name = "pageFormulaire"; this.pageFormulaire.Size = new System.Drawing.Size(790, 370); this.m_extStyle.SetStyleBackColor(this.pageFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.pageFormulaire, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.pageFormulaire.TabIndex = 10; this.pageFormulaire.Title = "Form|555"; // // m_wndListeMasquer // this.m_wndListeMasquer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_wndListeMasquer.CheckBoxes = true; this.m_wndListeMasquer.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn2 }); this.m_wndListeMasquer.EnableCustomisation = true; this.m_wndListeMasquer.FullRowSelect = true; this.m_wndListeMasquer.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None; this.m_extLinkField.SetLinkField(this.m_wndListeMasquer, ""); this.m_wndListeMasquer.Location = new System.Drawing.Point(8, 24); this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndListeMasquer, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_extModulesAssociator.SetModules(this.m_wndListeMasquer, ""); this.m_wndListeMasquer.MultiSelect = false; this.m_wndListeMasquer.Name = "m_wndListeMasquer"; this.m_wndListeMasquer.Size = new System.Drawing.Size(216, 360); this.m_extStyle.SetStyleBackColor(this.m_wndListeMasquer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_wndListeMasquer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeMasquer.TabIndex = 13; this.m_wndListeMasquer.UseCompatibleStateImageBehavior = false; this.m_wndListeMasquer.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Libellé"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 200; // // m_ctrlSavProfilDesigner // this.m_ctrlSavProfilDesigner.Designer = this.m_panelEditionFormulaire; this.m_ctrlSavProfilDesigner.Formulaire = this; // // CFormEditionFormulaire // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.m_panelLibelle); this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.m_extModulesAssociator.SetModules(this, ""); this.Name = "CFormEditionFormulaire"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Load += new System.EventHandler(this.CFormEditionFormulaire_Load); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.Controls.SetChildIndex(this.m_panelLibelle, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.m_panelCle.ResumeLayout(false); this.m_panelCle.PerformLayout(); this.m_panelMenu.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.m_btnHistorique)).EndInit(); this.m_panelFondEdition.ResumeLayout(false); this.m_panDesigner.ResumeLayout(false); this.m_panelLibelle.ResumeLayout(false); this.m_panelLibelle.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.c2iNumericUpDown1)).EndInit(); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.pageFormulaire.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.tabPage3 = new Crownwood.Magic.Controls.TabPage(); this.m_cmbFormat = new sc2i.win32.common.C2iComboBox(); this.label6 = new System.Windows.Forms.Label(); this.m_txtFormuleCle = new sc2i.win32.expression.CControleEditeFormule(); this.label7 = new System.Windows.Forms.Label(); this.m_txtFormuleDescriptif = new sc2i.win32.expression.CControleEditeFormule(); this.label5 = new System.Windows.Forms.Label(); this.m_txtFormuleLibelle = new sc2i.win32.expression.CControleEditeFormule(); this.label4 = new System.Windows.Forms.Label(); this.tabPage1 = new Crownwood.Magic.Controls.TabPage(); this.m_lblNomVariable = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.m_txtFormuleVariable = new sc2i.win32.expression.CControleEditeFormule(); this.m_wndListeVariables = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.tabPage2 = new Crownwood.Magic.Controls.TabPage(); this.m_chkStocker = new System.Windows.Forms.CheckBox(); this.label3 = new System.Windows.Forms.Label(); this.m_wndListeCategories = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_comboModeleEtat = new sc2i.win32.common.CComboboxAutoFilled(); this.label8 = new System.Windows.Forms.Label(); this.m_wndAideFormule = new sc2i.win32.expression.CControlAideFormule(); this.m_chkImprimer = new System.Windows.Forms.CheckBox(); this.m_exStyle = new sc2i.win32.common.CExtStyle(); this.m_tabControl.SuspendLayout(); this.tabPage3.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPage2.SuspendLayout(); this.SuspendLayout(); // // m_lblStockerResIn // this.m_exStyle.SetStyleBackColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblStockerResIn.Text = "Store the result in|30239"; // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_tabControl.Location = new System.Drawing.Point(8, 80); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 2; this.m_tabControl.SelectedTab = this.tabPage3; this.m_tabControl.Size = new System.Drawing.Size(456, 312); this.m_exStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_exStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 7; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.tabPage1, this.tabPage2, this.tabPage3 }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // tabPage3 // this.tabPage3.Controls.Add(this.m_cmbFormat); this.tabPage3.Controls.Add(this.label6); this.tabPage3.Controls.Add(this.m_txtFormuleCle); this.tabPage3.Controls.Add(this.label7); this.tabPage3.Controls.Add(this.m_txtFormuleDescriptif); this.tabPage3.Controls.Add(this.label5); this.tabPage3.Controls.Add(this.m_txtFormuleLibelle); this.tabPage3.Controls.Add(this.label4); this.tabPage3.Location = new System.Drawing.Point(0, 25); this.tabPage3.Name = "tabPage3"; this.tabPage3.Size = new System.Drawing.Size(440, 271); this.m_exStyle.SetStyleBackColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage3.TabIndex = 12; this.tabPage3.Title = "Document properties|1039"; this.tabPage3.Visible = false; // // m_cmbFormat // this.m_cmbFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbFormat.IsLink = false; this.m_cmbFormat.Location = new System.Drawing.Point(80, 8); this.m_cmbFormat.LockEdition = false; this.m_cmbFormat.Name = "m_cmbFormat"; this.m_cmbFormat.Size = new System.Drawing.Size(176, 21); this.m_exStyle.SetStyleBackColor(this.m_cmbFormat, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_cmbFormat, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbFormat.TabIndex = 9; // // label6 // this.label6.Location = new System.Drawing.Point(8, 8); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(72, 16); this.m_exStyle.SetStyleBackColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label6.TabIndex = 8; this.label6.Text = "Format|30246"; // // m_txtFormuleCle // this.m_txtFormuleCle.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.m_txtFormuleCle.BackColor = System.Drawing.Color.White; this.m_txtFormuleCle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleCle.Formule = null; this.m_txtFormuleCle.Location = new System.Drawing.Point(8, 224); this.m_txtFormuleCle.LockEdition = false; this.m_txtFormuleCle.Name = "m_txtFormuleCle"; this.m_txtFormuleCle.Size = new System.Drawing.Size(424, 40); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleCle.TabIndex = 7; this.m_txtFormuleCle.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label7 // this.label7.Location = new System.Drawing.Point(8, 208); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(120, 16); this.m_exStyle.SetStyleBackColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label7.TabIndex = 6; this.label7.Text = "Key (unique ID)|1043"; // // m_txtFormuleDescriptif // this.m_txtFormuleDescriptif.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleDescriptif.BackColor = System.Drawing.Color.White; this.m_txtFormuleDescriptif.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleDescriptif.Formule = null; this.m_txtFormuleDescriptif.Location = new System.Drawing.Point(8, 136); this.m_txtFormuleDescriptif.LockEdition = false; this.m_txtFormuleDescriptif.Name = "m_txtFormuleDescriptif"; this.m_txtFormuleDescriptif.Size = new System.Drawing.Size(424, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleDescriptif.TabIndex = 3; this.m_txtFormuleDescriptif.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label5 // this.label5.Location = new System.Drawing.Point(8, 120); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(162, 16); this.m_exStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 2; this.label5.Text = "Document description|1042"; // // m_txtFormuleLibelle // this.m_txtFormuleLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleLibelle.BackColor = System.Drawing.Color.White; this.m_txtFormuleLibelle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleLibelle.Formule = null; this.m_txtFormuleLibelle.Location = new System.Drawing.Point(8, 48); this.m_txtFormuleLibelle.LockEdition = false; this.m_txtFormuleLibelle.Name = "m_txtFormuleLibelle"; this.m_txtFormuleLibelle.Size = new System.Drawing.Size(424, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleLibelle.TabIndex = 1; this.m_txtFormuleLibelle.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label4 // this.label4.Location = new System.Drawing.Point(8, 32); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(112, 16); this.m_exStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 0; this.label4.Text = "Document label|1041"; // // tabPage1 // this.tabPage1.Controls.Add(this.m_lblNomVariable); this.tabPage1.Controls.Add(this.label2); this.tabPage1.Controls.Add(this.m_txtFormuleVariable); this.tabPage1.Controls.Add(this.m_wndListeVariables); this.tabPage1.Location = new System.Drawing.Point(0, 25); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(440, 271); this.m_exStyle.SetStyleBackColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage1.TabIndex = 10; this.tabPage1.Title = "Filter|47"; // // m_lblNomVariable // this.m_lblNomVariable.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_lblNomVariable.Location = new System.Drawing.Point(208, 8); this.m_lblNomVariable.Name = "m_lblNomVariable"; this.m_lblNomVariable.Size = new System.Drawing.Size(232, 16); this.m_exStyle.SetStyleBackColor(this.m_lblNomVariable, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_lblNomVariable, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblNomVariable.TabIndex = 3; // // label2 // this.label2.Location = new System.Drawing.Point(208, 24); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(160, 16); this.m_exStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 2; this.label2.Text = "Variable value|30242"; // // m_txtFormuleVariable // this.m_txtFormuleVariable.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.m_txtFormuleVariable.BackColor = System.Drawing.Color.White; this.m_txtFormuleVariable.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleVariable.Formule = null; this.m_txtFormuleVariable.Location = new System.Drawing.Point(208, 40); this.m_txtFormuleVariable.LockEdition = false; this.m_txtFormuleVariable.Name = "m_txtFormuleVariable"; this.m_txtFormuleVariable.Size = new System.Drawing.Size(224, 224); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleVariable, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleVariable, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleVariable.TabIndex = 1; this.m_txtFormuleVariable.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // m_wndListeVariables // this.m_wndListeVariables.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_wndListeVariables.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn1 }); this.m_wndListeVariables.EnableCustomisation = true; this.m_wndListeVariables.FullRowSelect = true; this.m_wndListeVariables.Location = new System.Drawing.Point(8, 8); this.m_wndListeVariables.MultiSelect = false; this.m_wndListeVariables.Name = "m_wndListeVariables"; this.m_wndListeVariables.Size = new System.Drawing.Size(192, 256); this.m_exStyle.SetStyleBackColor(this.m_wndListeVariables, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndListeVariables, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeVariables.TabIndex = 0; this.m_wndListeVariables.UseCompatibleStateImageBehavior = false; this.m_wndListeVariables.View = System.Windows.Forms.View.Details; this.m_wndListeVariables.SelectedIndexChanged += new System.EventHandler(this.m_wndListeVariables_SelectedIndexChanged); // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Name |164"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 176; // // tabPage2 // this.tabPage2.Controls.Add(this.m_chkStocker); this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.m_wndListeCategories); this.tabPage2.Location = new System.Drawing.Point(0, 25); this.tabPage2.Name = "tabPage2"; this.tabPage2.Selected = false; this.tabPage2.Size = new System.Drawing.Size(440, 271); this.m_exStyle.SetStyleBackColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage2.TabIndex = 11; this.tabPage2.Title = "EDM category|176"; this.tabPage2.Visible = false; // // m_chkStocker // this.m_chkStocker.Location = new System.Drawing.Point(8, 8); this.m_chkStocker.Name = "m_chkStocker"; this.m_chkStocker.Size = new System.Drawing.Size(296, 16); this.m_exStyle.SetStyleBackColor(this.m_chkStocker, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_chkStocker, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_chkStocker.TabIndex = 9; this.m_chkStocker.Text = "Store EDM document|30243"; // // label3 // this.label3.Location = new System.Drawing.Point(8, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(322, 16); this.m_exStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 1; this.label3.Text = "The document will be stored in the following categories|30244"; // // m_wndListeCategories // this.m_wndListeCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_wndListeCategories.CheckBoxes = true; this.m_wndListeCategories.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn2 }); this.m_wndListeCategories.EnableCustomisation = true; this.m_wndListeCategories.FullRowSelect = true; this.m_wndListeCategories.Location = new System.Drawing.Point(8, 40); this.m_wndListeCategories.MultiSelect = false; this.m_wndListeCategories.Name = "m_wndListeCategories"; this.m_wndListeCategories.Size = new System.Drawing.Size(296, 224); this.m_exStyle.SetStyleBackColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeCategories.TabIndex = 0; this.m_wndListeCategories.UseCompatibleStateImageBehavior = false; this.m_wndListeCategories.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|30245"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 279; // // m_comboModeleEtat // this.m_comboModeleEtat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_comboModeleEtat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_comboModeleEtat.IsLink = false; this.m_comboModeleEtat.ListDonnees = null; this.m_comboModeleEtat.Location = new System.Drawing.Point(120, 40); this.m_comboModeleEtat.LockEdition = false; this.m_comboModeleEtat.Name = "m_comboModeleEtat"; this.m_comboModeleEtat.NullAutorise = true; this.m_comboModeleEtat.ProprieteAffichee = "Libelle"; this.m_comboModeleEtat.Size = new System.Drawing.Size(336, 21); this.m_exStyle.SetStyleBackColor(this.m_comboModeleEtat, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_comboModeleEtat, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_comboModeleEtat.TabIndex = 6; this.m_comboModeleEtat.TextNull = I.T("(None)|30291"); this.m_comboModeleEtat.Tri = true; this.m_comboModeleEtat.SelectedIndexChanged += new System.EventHandler(this.m_comboModeleEtat_SelectedIndexChanged); // // label8 // this.label8.Location = new System.Drawing.Point(8, 40); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(106, 21); this.m_exStyle.SetStyleBackColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label8.TabIndex = 5; this.label8.Text = "Report model|30228"; // // m_wndAideFormule // this.m_wndAideFormule.BackColor = System.Drawing.Color.White; this.m_wndAideFormule.Dock = System.Windows.Forms.DockStyle.Right; this.m_wndAideFormule.FournisseurProprietes = null; this.m_wndAideFormule.Location = new System.Drawing.Point(464, 32); this.m_wndAideFormule.Name = "m_wndAideFormule"; this.m_wndAideFormule.ObjetInterroge = null; this.m_wndAideFormule.SendIdChamps = false; this.m_wndAideFormule.Size = new System.Drawing.Size(176, 357); this.m_exStyle.SetStyleBackColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndAideFormule.TabIndex = 4; this.m_wndAideFormule.OnSendCommande += new sc2i.win32.expression.SendCommande(this.m_wndAideFormule_OnSendCommande); // // m_chkImprimer // this.m_chkImprimer.Location = new System.Drawing.Point(8, 64); this.m_chkImprimer.Name = "m_chkImprimer"; this.m_chkImprimer.Size = new System.Drawing.Size(296, 16); this.m_exStyle.SetStyleBackColor(this.m_chkImprimer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_chkImprimer, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_chkImprimer.TabIndex = 8; this.m_chkImprimer.Text = "Server printing|30241"; // // CFormEditActionGenererEtat // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(640, 437); this.Controls.Add(this.m_chkImprimer); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.m_comboModeleEtat); this.Controls.Add(this.label8); this.Controls.Add(this.m_wndAideFormule); this.Name = "CFormEditActionGenererEtat"; this.m_exStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Text = "Function|30240"; this.Load += new System.EventHandler(this.CFormEditActionGenererEtatCode_Load); this.Controls.SetChildIndex(this.m_wndAideFormule, 0); this.Controls.SetChildIndex(this.label8, 0); this.Controls.SetChildIndex(this.m_comboModeleEtat, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.Controls.SetChildIndex(this.m_chkImprimer, 0); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.tabPage3.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage2.ResumeLayout(false); 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() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CFormEditionRoleSurEntreeAgenda)); this.c2iPanelOmbre1 = new sc2i.win32.common.C2iPanelOmbre(); this.m_lnkCouleurFond = new System.Windows.Forms.LinkLabel(); this.m_panelImage = new System.Windows.Forms.Panel(); this.m_wndImage = new System.Windows.Forms.PictureBox(); this.c2iTextBox2 = new sc2i.win32.common.C2iTextBox(); this.label4 = new System.Windows.Forms.Label(); this.m_btnNoImage = new System.Windows.Forms.Button(); this.m_btnSelectImage = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.c2iTextBox1 = new sc2i.win32.common.C2iTextBox(); this.m_txtLibelle = new sc2i.win32.common.C2iTextBox(); this.label1 = new System.Windows.Forms.Label(); this.m_tooltip = new System.Windows.Forms.ToolTip(this.components); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.label5 = new System.Windows.Forms.Label(); this.c2iPanelOmbre1.SuspendLayout(); this.m_panelImage.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.m_wndImage)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); this.SuspendLayout(); // // m_panelMenu // this.m_panelMenu.Size = new System.Drawing.Size(830, 28); this.m_extStyle.SetStyleBackColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelMenu, sc2i.win32.common.CExtStyle.EnumCouleurs.None); // // c2iPanelOmbre1 // this.c2iPanelOmbre1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanelOmbre1.Controls.Add(this.c2iTextBox2); this.c2iPanelOmbre1.Controls.Add(this.label4); this.c2iPanelOmbre1.Controls.Add(this.m_lnkCouleurFond); this.c2iPanelOmbre1.Controls.Add(this.m_panelImage); this.c2iPanelOmbre1.Controls.Add(this.m_txtLibelle); this.c2iPanelOmbre1.Controls.Add(this.label2); this.c2iPanelOmbre1.Controls.Add(this.c2iTextBox1); this.c2iPanelOmbre1.Controls.Add(this.m_btnNoImage); this.c2iPanelOmbre1.Controls.Add(this.m_btnSelectImage); this.c2iPanelOmbre1.Controls.Add(this.label5); this.c2iPanelOmbre1.Controls.Add(this.label3); this.c2iPanelOmbre1.ForeColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.c2iPanelOmbre1, ""); this.c2iPanelOmbre1.Location = new System.Drawing.Point(16, 52); this.c2iPanelOmbre1.LockEdition = false; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanelOmbre1, sc2i.win32.common.TypeModeEdition.Autonome); this.c2iPanelOmbre1.Name = "c2iPanelOmbre1"; this.c2iPanelOmbre1.Size = new System.Drawing.Size(554, 196); this.m_extStyle.SetStyleBackColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_extStyle.SetStyleForeColor(this.c2iPanelOmbre1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanelOmbre1.TabIndex = 0; // // m_lnkCouleurFond // this.m_extLinkField.SetLinkField(this.m_lnkCouleurFond, ""); this.m_lnkCouleurFond.Location = new System.Drawing.Point(176, 77); this.m_gestionnaireModeEdition.SetModeEdition(this.m_lnkCouleurFond, sc2i.win32.common.TypeModeEdition.Autonome); this.m_lnkCouleurFond.Name = "m_lnkCouleurFond"; this.m_lnkCouleurFond.Size = new System.Drawing.Size(136, 23); this.m_extStyle.SetStyleBackColor(this.m_lnkCouleurFond, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_lnkCouleurFond, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lnkCouleurFond.TabIndex = 4014; this.m_lnkCouleurFond.TabStop = true; this.m_lnkCouleurFond.Text = "Image back color|810"; this.m_lnkCouleurFond.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkCouleurFond_LinkClicked); // // m_panelImage // this.m_panelImage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.m_panelImage.Controls.Add(this.m_wndImage); this.m_extLinkField.SetLinkField(this.m_panelImage, ""); this.m_panelImage.Location = new System.Drawing.Point(88, 69); this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelImage, sc2i.win32.common.TypeModeEdition.Autonome); this.m_panelImage.Name = "m_panelImage"; this.m_panelImage.Size = new System.Drawing.Size(32, 32); this.m_extStyle.SetStyleBackColor(this.m_panelImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_panelImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_panelImage.TabIndex = 4013; // // m_wndImage // this.m_extLinkField.SetLinkField(this.m_wndImage, ""); this.m_wndImage.Location = new System.Drawing.Point(6, 6); this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndImage, sc2i.win32.common.TypeModeEdition.Autonome); this.m_wndImage.Name = "m_wndImage"; this.m_wndImage.Size = new System.Drawing.Size(16, 16); this.m_wndImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.m_extStyle.SetStyleBackColor(this.m_wndImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_wndImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndImage.TabIndex = 4008; this.m_wndImage.TabStop = false; // // c2iTextBox2 // this.c2iTextBox2.AcceptsReturn = true; this.m_extLinkField.SetLinkField(this.c2iTextBox2, "Descriptif"); this.c2iTextBox2.Location = new System.Drawing.Point(88, 112); this.c2iTextBox2.LockEdition = false; this.c2iTextBox2.MaxLength = 64; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iTextBox2, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.c2iTextBox2.Multiline = true; this.c2iTextBox2.Name = "c2iTextBox2"; this.c2iTextBox2.Size = new System.Drawing.Size(440, 56); this.m_extStyle.SetStyleBackColor(this.c2iTextBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.c2iTextBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.c2iTextBox2.TabIndex = 4012; this.c2iTextBox2.Text = "[Description]|30321"; // // label4 // this.label4.AutoSize = true; this.m_extLinkField.SetLinkField(this.label4, ""); this.label4.Location = new System.Drawing.Point(8, 112); this.m_gestionnaireModeEdition.SetModeEdition(this.label4, sc2i.win32.common.TypeModeEdition.Autonome); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(74, 13); this.m_extStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 4011; this.label4.Text = "Description|41"; // // m_btnNoImage // this.m_btnNoImage.Image = ((System.Drawing.Image)(resources.GetObject("m_btnNoImage.Image"))); this.m_extLinkField.SetLinkField(this.m_btnNoImage, ""); this.m_btnNoImage.Location = new System.Drawing.Point(144, 69); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnNoImage, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_btnNoImage.Name = "m_btnNoImage"; this.m_btnNoImage.Size = new System.Drawing.Size(24, 32); this.m_extStyle.SetStyleBackColor(this.m_btnNoImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnNoImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnNoImage.TabIndex = 4010; this.m_btnNoImage.Text = "..."; this.m_tooltip.SetToolTip(this.m_btnNoImage, I.T("No image|30322")); this.m_btnNoImage.Click += new System.EventHandler(this.m_btnNoImage_Click); // // m_btnSelectImage // this.m_extLinkField.SetLinkField(this.m_btnSelectImage, ""); this.m_btnSelectImage.Location = new System.Drawing.Point(120, 69); this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnSelectImage, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_btnSelectImage.Name = "m_btnSelectImage"; this.m_btnSelectImage.Size = new System.Drawing.Size(24, 32); this.m_extStyle.SetStyleBackColor(this.m_btnSelectImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_btnSelectImage, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_btnSelectImage.TabIndex = 4009; this.m_btnSelectImage.Text = "..."; this.m_tooltip.SetToolTip(this.m_btnSelectImage, I.T("Select an image|30323")); this.m_btnSelectImage.Click += new System.EventHandler(this.m_btnSelectImage_Click); // // label3 // this.label3.AutoSize = true; this.m_extLinkField.SetLinkField(this.label3, ""); this.label3.Location = new System.Drawing.Point(8, 77); this.m_gestionnaireModeEdition.SetModeEdition(this.label3, sc2i.win32.common.TypeModeEdition.Autonome); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(56, 13); this.m_extStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 4007; this.label3.Text = "Image|809"; // // label2 // this.label2.AutoSize = true; this.m_extLinkField.SetLinkField(this.label2, ""); this.label2.Location = new System.Drawing.Point(8, 43); this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(46, 13); this.m_extStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 4006; this.label2.Text = "Code|40"; // // c2iTextBox1 // this.m_extLinkField.SetLinkField(this.c2iTextBox1, "Code"); this.c2iTextBox1.Location = new System.Drawing.Point(88, 40); this.c2iTextBox1.LockEdition = false; this.c2iTextBox1.MaxLength = 64; this.m_gestionnaireModeEdition.SetModeEdition(this.c2iTextBox1, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.c2iTextBox1.Name = "c2iTextBox1"; this.c2iTextBox1.Size = new System.Drawing.Size(224, 20); this.m_extStyle.SetStyleBackColor(this.c2iTextBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.c2iTextBox1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.c2iTextBox1.TabIndex = 4005; this.c2iTextBox1.Text = "[Code]"; // // m_txtLibelle // this.m_extLinkField.SetLinkField(this.m_txtLibelle, "Libelle"); this.m_txtLibelle.Location = new System.Drawing.Point(88, 8); this.m_txtLibelle.LockEdition = false; this.m_txtLibelle.MaxLength = 255; this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtLibelle, sc2i.win32.common.TypeModeEdition.EnableSurEdition); this.m_txtLibelle.Name = "m_txtLibelle"; this.m_txtLibelle.Size = new System.Drawing.Size(440, 20); this.m_extStyle.SetStyleBackColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_txtLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtLibelle.TabIndex = 4003; this.m_txtLibelle.Text = "[Label]|30324"; // // label1 // this.label1.AutoSize = true; this.m_extLinkField.SetLinkField(this.label1, ""); this.label1.Location = new System.Drawing.Point(12, 12); this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(46, 16); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 4004; this.label1.Text = "Label|50"; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Groupe"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 342; // // pictureBox2 // this.pictureBox2.BackColor = System.Drawing.Color.Black; this.m_extLinkField.SetLinkField(this.pictureBox2, ""); this.pictureBox2.Location = new System.Drawing.Point(8, 24); this.m_gestionnaireModeEdition.SetModeEdition(this.pictureBox2, sc2i.win32.common.TypeModeEdition.Autonome); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(520, 1); this.m_extStyle.SetStyleBackColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.pictureBox2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.pictureBox2.TabIndex = 9; this.pictureBox2.TabStop = false; // // label5 // this.label5.AutoSize = true; this.m_extLinkField.SetLinkField(this.label5, ""); this.label5.Location = new System.Drawing.Point(8, 11); this.m_gestionnaireModeEdition.SetModeEdition(this.label5, sc2i.win32.common.TypeModeEdition.Autonome); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(47, 13); this.m_extStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 4006; this.label5.Text = "Label|50"; // // CFormEditionRoleSurEntreeAgenda // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(830, 530); this.Controls.Add(this.c2iPanelOmbre1); this.m_extLinkField.SetLinkField(this, ""); this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome); this.Name = "CFormEditionRoleSurEntreeAgenda"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Controls.SetChildIndex(this.m_panelMenu, 0); this.Controls.SetChildIndex(this.c2iPanelOmbre1, 0); this.c2iPanelOmbre1.ResumeLayout(false); this.c2iPanelOmbre1.PerformLayout(); this.m_panelImage.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.m_wndImage)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).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() { this.components = new System.ComponentModel.Container(); this.m_tabControl = new sc2i.win32.common.C2iTabControl(this.components); this.tabPage1 = new Crownwood.Magic.Controls.TabPage(); this.m_txtFormuleFichier = new sc2i.win32.expression.CControleEditeFormule(); this.label1 = new System.Windows.Forms.Label(); this.panel3 = new System.Windows.Forms.Panel(); this.m_rbtnText = new System.Windows.Forms.RadioButton(); this.m_rbtnFichier = new System.Windows.Forms.RadioButton(); this.tabPage2 = new Crownwood.Magic.Controls.TabPage(); this.label3 = new System.Windows.Forms.Label(); this.m_wndListeCategories = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn2 = ((sc2i.win32.common.ListViewAutoFilledColumn)(new sc2i.win32.common.ListViewAutoFilledColumn())); this.tabPage3 = new Crownwood.Magic.Controls.TabPage(); this.m_txtFormuleCle = new sc2i.win32.expression.CControleEditeFormule(); this.label7 = new System.Windows.Forms.Label(); this.m_txtFormuleDescriptif = new sc2i.win32.expression.CControleEditeFormule(); this.label5 = new System.Windows.Forms.Label(); this.m_txtFormuleLibelle = new sc2i.win32.expression.CControleEditeFormule(); this.label4 = new System.Windows.Forms.Label(); this.listViewAutoFilledColumn1 = ((sc2i.win32.common.ListViewAutoFilledColumn)(new sc2i.win32.common.ListViewAutoFilledColumn())); this.m_wndAideFormule = new sc2i.win32.expression.CControlAideFormule(); this.m_exStyle = new sc2i.win32.common.CExtStyle(); this.panel4 = new System.Windows.Forms.Panel(); this.label2 = new System.Windows.Forms.Label(); this.panel5 = new System.Windows.Forms.Panel(); this.label6 = new System.Windows.Forms.Label(); this.m_txtFormuleUser = new sc2i.win32.expression.CTextBoxZoomFormule(); this.panel6 = new System.Windows.Forms.Panel(); this.m_txtFormulePassword = new sc2i.win32.expression.CTextBoxZoomFormule(); this.label8 = new System.Windows.Forms.Label(); this.m_tabControl.SuspendLayout(); this.tabPage1.SuspendLayout(); this.panel3.SuspendLayout(); this.tabPage2.SuspendLayout(); this.tabPage3.SuspendLayout(); this.panel4.SuspendLayout(); this.panel5.SuspendLayout(); this.panel6.SuspendLayout(); this.SuspendLayout(); // // m_lblStockerResIn // this.m_exStyle.SetStyleBackColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblStockerResIn.Text = "Store the result in|30239"; // // m_tabControl // this.m_tabControl.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.m_tabControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.m_tabControl.BoldSelectedPage = true; this.m_tabControl.ControlBottomOffset = 16; this.m_tabControl.ControlRightOffset = 16; this.m_tabControl.ForeColor = System.Drawing.Color.Black; this.m_tabControl.IDEPixelArea = false; this.m_tabControl.Location = new System.Drawing.Point(8, 38); this.m_tabControl.Name = "m_tabControl"; this.m_tabControl.Ombre = true; this.m_tabControl.PositionTop = true; this.m_tabControl.SelectedIndex = 0; this.m_tabControl.SelectedTab = this.tabPage1; this.m_tabControl.Size = new System.Drawing.Size(476, 358); this.m_exStyle.SetStyleBackColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_exStyle.SetStyleForeColor(this.m_tabControl, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.m_tabControl.TabIndex = 7; this.m_tabControl.TabPages.AddRange(new Crownwood.Magic.Controls.TabPage[] { this.tabPage1, this.tabPage2, this.tabPage3 }); this.m_tabControl.TextColor = System.Drawing.Color.Black; // // tabPage1 // this.tabPage1.Controls.Add(this.m_txtFormuleFichier); this.tabPage1.Controls.Add(this.label1); this.tabPage1.Controls.Add(this.panel3); this.tabPage1.Controls.Add(this.panel4); this.tabPage1.Location = new System.Drawing.Point(0, 25); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage1.TabIndex = 10; this.tabPage1.Title = "Content|20016"; // // m_txtFormuleFichier // this.m_txtFormuleFichier.BackColor = System.Drawing.Color.White; this.m_txtFormuleFichier.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormuleFichier.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleFichier.Formule = null; this.m_txtFormuleFichier.Location = new System.Drawing.Point(0, 48); this.m_txtFormuleFichier.LockEdition = false; this.m_txtFormuleFichier.Name = "m_txtFormuleFichier"; this.m_txtFormuleFichier.Size = new System.Drawing.Size(460, 194); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleFichier.TabIndex = 2; this.m_txtFormuleFichier.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Top; this.label1.Location = new System.Drawing.Point(0, 35); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(460, 13); this.m_exStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 3; this.label1.Text = "Content|20017"; // // panel3 // this.panel3.Controls.Add(this.m_rbtnText); this.panel3.Controls.Add(this.m_rbtnFichier); this.panel3.Dock = System.Windows.Forms.DockStyle.Top; this.panel3.Location = new System.Drawing.Point(0, 0); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(460, 35); this.m_exStyle.SetStyleBackColor(this.panel3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.panel3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.panel3.TabIndex = 4; // // m_rbtnText // this.m_rbtnText.Dock = System.Windows.Forms.DockStyle.Top; this.m_rbtnText.Location = new System.Drawing.Point(0, 17); this.m_rbtnText.Name = "m_rbtnText"; this.m_rbtnText.Size = new System.Drawing.Size(460, 17); this.m_exStyle.SetStyleBackColor(this.m_rbtnText, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_rbtnText, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_rbtnText.TabIndex = 1; this.m_rbtnText.TabStop = true; this.m_rbtnText.Text = "Create text file from content|20039"; this.m_rbtnText.UseVisualStyleBackColor = true; // // m_rbtnFichier // this.m_rbtnFichier.Dock = System.Windows.Forms.DockStyle.Top; this.m_rbtnFichier.Location = new System.Drawing.Point(0, 0); this.m_rbtnFichier.Name = "m_rbtnFichier"; this.m_rbtnFichier.Size = new System.Drawing.Size(460, 17); this.m_exStyle.SetStyleBackColor(this.m_rbtnFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_rbtnFichier, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_rbtnFichier.TabIndex = 0; this.m_rbtnFichier.TabStop = true; this.m_rbtnFichier.Text = "Content is a file name (on client disk)|20038"; this.m_rbtnFichier.UseVisualStyleBackColor = true; // // tabPage2 // this.tabPage2.Controls.Add(this.label3); this.tabPage2.Controls.Add(this.m_wndListeCategories); this.tabPage2.Location = new System.Drawing.Point(0, 25); this.tabPage2.Name = "tabPage2"; this.tabPage2.Selected = false; this.tabPage2.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage2.TabIndex = 11; this.tabPage2.Title = "EDM category|176"; this.tabPage2.Visible = false; // // label3 // this.label3.Location = new System.Drawing.Point(8, 24); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(322, 16); this.m_exStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 1; this.label3.Text = "The document will be stored in the following categories|30244"; // // m_wndListeCategories // this.m_wndListeCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_wndListeCategories.CheckBoxes = true; this.m_wndListeCategories.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn2 }); this.m_wndListeCategories.EnableCustomisation = true; this.m_wndListeCategories.FullRowSelect = true; this.m_wndListeCategories.Location = new System.Drawing.Point(8, 40); this.m_wndListeCategories.MultiSelect = false; this.m_wndListeCategories.Name = "m_wndListeCategories"; this.m_wndListeCategories.Size = new System.Drawing.Size(296, 270); this.m_exStyle.SetStyleBackColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndListeCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndListeCategories.TabIndex = 0; this.m_wndListeCategories.UseCompatibleStateImageBehavior = false; this.m_wndListeCategories.View = System.Windows.Forms.View.Details; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0D; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|30245"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 279; // // tabPage3 // this.tabPage3.Controls.Add(this.m_txtFormuleCle); this.tabPage3.Controls.Add(this.label7); this.tabPage3.Controls.Add(this.m_txtFormuleDescriptif); this.tabPage3.Controls.Add(this.label5); this.tabPage3.Controls.Add(this.m_txtFormuleLibelle); this.tabPage3.Controls.Add(this.label4); this.tabPage3.Location = new System.Drawing.Point(0, 25); this.tabPage3.Name = "tabPage3"; this.tabPage3.Selected = false; this.tabPage3.Size = new System.Drawing.Size(460, 317); this.m_exStyle.SetStyleBackColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.tabPage3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.tabPage3.TabIndex = 12; this.tabPage3.Title = "Document characteristics|1039"; this.tabPage3.Visible = false; // // m_txtFormuleCle // this.m_txtFormuleCle.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.m_txtFormuleCle.BackColor = System.Drawing.Color.White; this.m_txtFormuleCle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleCle.Formule = null; this.m_txtFormuleCle.Location = new System.Drawing.Point(8, 224); this.m_txtFormuleCle.LockEdition = false; this.m_txtFormuleCle.Name = "m_txtFormuleCle"; this.m_txtFormuleCle.Size = new System.Drawing.Size(444, 86); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleCle.TabIndex = 7; this.m_txtFormuleCle.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label7 // this.label7.Location = new System.Drawing.Point(8, 208); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(120, 16); this.m_exStyle.SetStyleBackColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label7, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label7.TabIndex = 6; this.label7.Text = "Key (unique Id)|1043"; // // m_txtFormuleDescriptif // this.m_txtFormuleDescriptif.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleDescriptif.BackColor = System.Drawing.Color.White; this.m_txtFormuleDescriptif.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleDescriptif.Formule = null; this.m_txtFormuleDescriptif.Location = new System.Drawing.Point(8, 136); this.m_txtFormuleDescriptif.LockEdition = false; this.m_txtFormuleDescriptif.Name = "m_txtFormuleDescriptif"; this.m_txtFormuleDescriptif.Size = new System.Drawing.Size(444, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleDescriptif, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleDescriptif.TabIndex = 3; this.m_txtFormuleDescriptif.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label5 // this.label5.Location = new System.Drawing.Point(8, 120); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(162, 16); this.m_exStyle.SetStyleBackColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label5.TabIndex = 2; this.label5.Text = "Document description|1042"; // // m_txtFormuleLibelle // this.m_txtFormuleLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleLibelle.BackColor = System.Drawing.Color.White; this.m_txtFormuleLibelle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.m_txtFormuleLibelle.Formule = null; this.m_txtFormuleLibelle.Location = new System.Drawing.Point(8, 48); this.m_txtFormuleLibelle.LockEdition = false; this.m_txtFormuleLibelle.Name = "m_txtFormuleLibelle"; this.m_txtFormuleLibelle.Size = new System.Drawing.Size(444, 64); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleLibelle.TabIndex = 1; this.m_txtFormuleLibelle.Enter += new System.EventHandler(this.OnEnterTextBoxFormule); // // label4 // this.label4.Location = new System.Drawing.Point(8, 32); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(112, 16); this.m_exStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 0; this.label4.Text = "Document label|1041"; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0D; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Name |164"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 176; // // m_wndAideFormule // this.m_wndAideFormule.BackColor = System.Drawing.Color.White; this.m_wndAideFormule.Dock = System.Windows.Forms.DockStyle.Right; this.m_wndAideFormule.FournisseurProprietes = null; this.m_wndAideFormule.Location = new System.Drawing.Point(484, 32); this.m_wndAideFormule.Name = "m_wndAideFormule"; this.m_wndAideFormule.ObjetInterroge = null; this.m_wndAideFormule.SendIdChamps = false; this.m_wndAideFormule.Size = new System.Drawing.Size(176, 361); this.m_exStyle.SetStyleBackColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_wndAideFormule, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_wndAideFormule.TabIndex = 4; this.m_wndAideFormule.OnSendCommande += new sc2i.win32.expression.SendCommande(this.m_wndAideFormule_OnSendCommande); // // panel4 // this.panel4.Controls.Add(this.panel6); this.panel4.Controls.Add(this.panel5); this.panel4.Controls.Add(this.label2); this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom; this.panel4.Location = new System.Drawing.Point(0, 242); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(460, 75); this.m_exStyle.SetStyleBackColor(this.panel4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.panel4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.panel4.TabIndex = 5; // // label2 // this.label2.Dock = System.Windows.Forms.DockStyle.Top; this.label2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(0, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(460, 26); this.m_exStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 0; this.label2.Text = "For ftp files (Content starts with \'ftp://\'), enter user and passord|20147"; // // panel5 // this.panel5.Controls.Add(this.m_txtFormuleUser); this.panel5.Controls.Add(this.label6); this.panel5.Dock = System.Windows.Forms.DockStyle.Top; this.panel5.Location = new System.Drawing.Point(0, 26); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(460, 22); this.m_exStyle.SetStyleBackColor(this.panel5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.panel5, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.panel5.TabIndex = 1; // // label6 // this.label6.Dock = System.Windows.Forms.DockStyle.Left; this.label6.Location = new System.Drawing.Point(0, 0); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(119, 22); this.m_exStyle.SetStyleBackColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label6.TabIndex = 0; this.label6.Text = "User|20148"; // // m_txtFormuleUser // this.m_txtFormuleUser.AllowGraphic = true; this.m_txtFormuleUser.AllowNullFormula = true; this.m_txtFormuleUser.AllowSaisieTexte = true; this.m_txtFormuleUser.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormuleUser.Formule = null; this.m_txtFormuleUser.Location = new System.Drawing.Point(119, 0); this.m_txtFormuleUser.LockEdition = false; this.m_txtFormuleUser.LockZoneTexte = false; this.m_txtFormuleUser.Name = "m_txtFormuleUser"; this.m_txtFormuleUser.Size = new System.Drawing.Size(341, 22); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleUser, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleUser, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleUser.TabIndex = 1; // // panel6 // this.panel6.Controls.Add(this.m_txtFormulePassword); this.panel6.Controls.Add(this.label8); this.panel6.Dock = System.Windows.Forms.DockStyle.Top; this.panel6.Location = new System.Drawing.Point(0, 48); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(460, 22); this.m_exStyle.SetStyleBackColor(this.panel6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.panel6, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.panel6.TabIndex = 2; // // m_txtFormulePassword // this.m_txtFormulePassword.AllowGraphic = true; this.m_txtFormulePassword.AllowNullFormula = true; this.m_txtFormulePassword.AllowSaisieTexte = true; this.m_txtFormulePassword.Dock = System.Windows.Forms.DockStyle.Fill; this.m_txtFormulePassword.Formule = null; this.m_txtFormulePassword.Location = new System.Drawing.Point(119, 0); this.m_txtFormulePassword.LockEdition = false; this.m_txtFormulePassword.LockZoneTexte = false; this.m_txtFormulePassword.Name = "m_txtFormulePassword"; this.m_txtFormulePassword.Size = new System.Drawing.Size(341, 22); this.m_exStyle.SetStyleBackColor(this.m_txtFormulePassword, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormulePassword, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormulePassword.TabIndex = 1; // // label8 // this.label8.Dock = System.Windows.Forms.DockStyle.Left; this.label8.Location = new System.Drawing.Point(0, 0); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(119, 22); this.m_exStyle.SetStyleBackColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label8, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label8.TabIndex = 0; this.label8.Text = "Password|20149"; // // CFormEditCopierLocalDansGed // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(660, 441); this.Controls.Add(this.m_tabControl); this.Controls.Add(this.m_wndAideFormule); this.Name = "CFormEditCopierLocalDansGed"; this.m_exStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Text = "Copy local file into EDM|20018"; this.Load += new System.EventHandler(this.CFormEditCopierLocalDansGedCode_Load); this.Controls.SetChildIndex(this.m_wndAideFormule, 0); this.Controls.SetChildIndex(this.m_tabControl, 0); this.m_tabControl.ResumeLayout(false); this.m_tabControl.PerformLayout(); this.tabPage1.ResumeLayout(false); this.panel3.ResumeLayout(false); this.tabPage2.ResumeLayout(false); this.tabPage3.ResumeLayout(false); this.panel4.ResumeLayout(false); this.panel5.ResumeLayout(false); this.panel6.ResumeLayout(false); 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() { this.m_labelInfo = new System.Windows.Forms.Label(); this.m_listeExtensions = new sc2i.win32.common.ListViewAutoFilled(); this.m_colonne = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_arbre = new System.Windows.Forms.TreeView(); this.label1 = new System.Windows.Forms.Label(); this.m_wndListeOptions = new System.Windows.Forms.CheckedListBox(); this.SuspendLayout(); // // m_labelInfo // this.m_labelInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_labelInfo.Location = new System.Drawing.Point(312, 16); this.m_labelInfo.Name = "m_labelInfo"; this.m_labelInfo.Size = new System.Drawing.Size(352, 40); this.m_labelInfo.TabIndex = 7; this.m_labelInfo.Text = "(information)|30113"; this.m_labelInfo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // m_listeExtensions // this.m_listeExtensions.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.m_listeExtensions.CheckBoxes = true; this.m_listeExtensions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.m_colonne }); this.m_listeExtensions.EnableCustomisation = false; this.m_listeExtensions.FullRowSelect = true; this.m_listeExtensions.Location = new System.Drawing.Point(304, 144); this.m_listeExtensions.Name = "m_listeExtensions"; this.m_listeExtensions.Size = new System.Drawing.Size(360, 168); this.m_listeExtensions.TabIndex = 6; this.m_listeExtensions.UseCompatibleStateImageBehavior = false; this.m_listeExtensions.View = System.Windows.Forms.View.Details; // // m_colonne // this.m_colonne.Field = "DescriptionElement"; this.m_colonne.PrecisionWidth = 1108; this.m_colonne.ProportionnalSize = false; this.m_colonne.Text = "Element|30114"; this.m_colonne.Visible = true; this.m_colonne.Width = 1108; // // m_arbre // this.m_arbre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left))); this.m_arbre.CheckBoxes = true; this.m_arbre.Location = new System.Drawing.Point(0, 16); this.m_arbre.Name = "m_arbre"; this.m_arbre.Size = new System.Drawing.Size(296, 296); this.m_arbre.TabIndex = 5; this.m_arbre.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.m_arbre_AfterCheck); this.m_arbre.BeforeCheck += new System.Windows.Forms.TreeViewCancelEventHandler(this.m_arbre_BeforeCheck); this.m_arbre.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.m_arbre_AfterSelect); // // label1 // this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(96, 16); this.label1.TabIndex = 4; this.label1.Text = "Rights|30112"; // // m_wndListeOptions // this.m_wndListeOptions.BorderStyle = System.Windows.Forms.BorderStyle.None; this.m_wndListeOptions.Location = new System.Drawing.Point(304, 56); this.m_wndListeOptions.Name = "m_wndListeOptions"; this.m_wndListeOptions.Size = new System.Drawing.Size(184, 75); this.m_wndListeOptions.TabIndex = 8; // // CPanelGestionDroits // this.Controls.Add(this.m_wndListeOptions); this.Controls.Add(this.m_labelInfo); this.Controls.Add(this.m_listeExtensions); this.Controls.Add(this.m_arbre); this.Controls.Add(this.label1); this.Name = "CPanelGestionDroits"; this.Size = new System.Drawing.Size(672, 320); this.Load += new System.EventHandler(this.CPanelGestionDroits_Load); 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() { this.m_listView = new sc2i.win32.common.ListViewAutoFilled(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.label1 = new System.Windows.Forms.Label(); this.m_cmbCategorie = new sc2i.win32.data.navigation.CComboBoxLinkListeObjetsDonnees(); this.SuspendLayout(); // // m_listView // this.m_listView.AllowColumnReorder = true; this.m_listView.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.m_listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.listViewAutoFilledColumn1, this.listViewAutoFilledColumn2 }); this.m_listView.EnableCustomisation = true; this.m_listView.FullRowSelect = true; this.m_listView.Location = new System.Drawing.Point(0, 32); this.m_listView.Name = "m_listView"; this.m_listView.Size = new System.Drawing.Size(476, 364); this.m_extStyle.SetStyleBackColor(this.m_listView, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_listView, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_listView.TabIndex = 4; this.m_listView.UseCompatibleStateImageBehavior = false; this.m_listView.View = System.Windows.Forms.View.Details; this.m_listView.DoubleClick += new System.EventHandler(this.m_listView_DoubleClick); // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Libelle"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Report|1005"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 200; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "CategorieRapport.Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|852"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 120; // // label1 // this.label1.Location = new System.Drawing.Point(-3, 7); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(124, 16); this.m_extStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 5; this.label1.Text = "Filter by category|1004"; // // m_cmbCategorie // this.m_cmbCategorie.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_cmbCategorie.ComportementLinkStd = true; this.m_cmbCategorie.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.m_cmbCategorie.ElementSelectionne = null; this.m_cmbCategorie.IsLink = false; this.m_cmbCategorie.LinkProperty = ""; this.m_cmbCategorie.ListDonnees = null; this.m_cmbCategorie.Location = new System.Drawing.Point(120, 4); this.m_cmbCategorie.LockEdition = false; this.m_cmbCategorie.Name = "m_cmbCategorie"; this.m_cmbCategorie.NullAutorise = true; this.m_cmbCategorie.ProprieteAffichee = null; this.m_cmbCategorie.ProprieteParentListeObjets = null; this.m_cmbCategorie.SelectionneurParent = null; this.m_cmbCategorie.Size = new System.Drawing.Size(356, 21); this.m_extStyle.SetStyleBackColor(this.m_cmbCategorie, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this.m_cmbCategorie, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_cmbCategorie.TabIndex = 6; this.m_cmbCategorie.TextNull = I.T("(All)|30329"); this.m_cmbCategorie.Tri = true; this.m_cmbCategorie.TypeFormEdition = null; this.m_cmbCategorie.SelectedValueChanged += new System.EventHandler(this.m_cmbCategorie_SelectedValueChanged); // // CFormListeVisualisationsRapport // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.BackColor = System.Drawing.Color.White; this.ClientSize = new System.Drawing.Size(480, 400); this.Controls.Add(this.m_cmbCategorie); this.Controls.Add(this.label1); this.Controls.Add(this.m_listView); this.Name = "CFormListeVisualisationsRapport"; this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Closing += new System.ComponentModel.CancelEventHandler(this.CFormListeVisualisationsRapport_Closing); this.Load += new System.EventHandler(this.CFormListeVisualisationsRapport_Load); 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() { this.m_txtFormuleAssociation = new sc2i.win32.expression.CTextBoxZoomFormule(); this.label2 = new System.Windows.Forms.Label(); this.m_txtFormuleCle = new sc2i.win32.expression.CTextBoxZoomFormule(); this.m_txtFormuleLibelle = new sc2i.win32.expression.CTextBoxZoomFormule(); this.label1 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.m_txtFormuleCategories = new sc2i.win32.expression.CTextBoxZoomFormule(); this.label3 = new System.Windows.Forms.Label(); this.listViewAutoFilledColumn2 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.listViewAutoFilledColumn1 = new sc2i.win32.common.ListViewAutoFilledColumn(); this.m_exStyle = new sc2i.win32.common.CExtStyle(); this.c2iPanel1 = new sc2i.win32.common.C2iPanelOmbre(); this.c2iPanel1.SuspendLayout(); this.SuspendLayout(); // // m_lblStockerResIn // this.m_exStyle.SetStyleBackColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_lblStockerResIn, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_lblStockerResIn.Text = "Store the result in|30239"; // // m_txtFormuleAssociation // this.m_txtFormuleAssociation.AllowGraphic = true; this.m_txtFormuleAssociation.AllowNullFormula = false; this.m_txtFormuleAssociation.AllowSaisieTexte = true; this.m_txtFormuleAssociation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleAssociation.Formule = null; this.m_txtFormuleAssociation.Location = new System.Drawing.Point(11, 112); this.m_txtFormuleAssociation.LockEdition = false; this.m_txtFormuleAssociation.LockZoneTexte = false; this.m_txtFormuleAssociation.Name = "m_txtFormuleAssociation"; this.m_txtFormuleAssociation.Size = new System.Drawing.Size(621, 62); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleAssociation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleAssociation, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleAssociation.TabIndex = 6; // // label2 // this.label2.Location = new System.Drawing.Point(8, 95); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(334, 16); this.m_exStyle.SetStyleBackColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label2, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label2.TabIndex = 5; this.label2.Text = "Associated document to|20141"; // // m_txtFormuleCle // this.m_txtFormuleCle.AllowGraphic = true; this.m_txtFormuleCle.AllowNullFormula = false; this.m_txtFormuleCle.AllowSaisieTexte = true; this.m_txtFormuleCle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleCle.Formule = null; this.m_txtFormuleCle.Location = new System.Drawing.Point(11, 280); this.m_txtFormuleCle.LockEdition = false; this.m_txtFormuleCle.LockZoneTexte = false; this.m_txtFormuleCle.Name = "m_txtFormuleCle"; this.m_txtFormuleCle.Size = new System.Drawing.Size(621, 62); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleCle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleCle.TabIndex = 4; // // m_txtFormuleLibelle // this.m_txtFormuleLibelle.AllowGraphic = true; this.m_txtFormuleLibelle.AllowNullFormula = false; this.m_txtFormuleLibelle.AllowSaisieTexte = true; this.m_txtFormuleLibelle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleLibelle.Formule = null; this.m_txtFormuleLibelle.Location = new System.Drawing.Point(11, 196); this.m_txtFormuleLibelle.LockEdition = false; this.m_txtFormuleLibelle.LockZoneTexte = false; this.m_txtFormuleLibelle.Name = "m_txtFormuleLibelle"; this.m_txtFormuleLibelle.Size = new System.Drawing.Size(621, 62); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleLibelle, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleLibelle.TabIndex = 3; // // label1 // this.label1.Location = new System.Drawing.Point(8, 261); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(307, 16); this.m_exStyle.SetStyleBackColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label1, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label1.TabIndex = 0; this.label1.Text = "Document key|20140"; // // label4 // this.label4.Location = new System.Drawing.Point(8, 177); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(334, 16); this.m_exStyle.SetStyleBackColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label4, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label4.TabIndex = 0; this.label4.Text = "Document label|20139"; // // m_txtFormuleCategories // this.m_txtFormuleCategories.AllowGraphic = true; this.m_txtFormuleCategories.AllowNullFormula = false; this.m_txtFormuleCategories.AllowSaisieTexte = true; this.m_txtFormuleCategories.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.m_txtFormuleCategories.Formule = null; this.m_txtFormuleCategories.Location = new System.Drawing.Point(11, 31); this.m_txtFormuleCategories.LockEdition = false; this.m_txtFormuleCategories.LockZoneTexte = false; this.m_txtFormuleCategories.Name = "m_txtFormuleCategories"; this.m_txtFormuleCategories.Size = new System.Drawing.Size(621, 62); this.m_exStyle.SetStyleBackColor(this.m_txtFormuleCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.m_txtFormuleCategories, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_txtFormuleCategories.TabIndex = 2; // // label3 // this.label3.Location = new System.Drawing.Point(7, -1); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(625, 32); this.m_exStyle.SetStyleBackColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this.label3, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.label3.TabIndex = 1; this.label3.Text = "Indicate available EDM categories for documents. The formula should return a list" + " of categories or a list of category id|20138"; // // listViewAutoFilledColumn2 // this.listViewAutoFilledColumn2.Field = "Libelle"; this.listViewAutoFilledColumn2.PrecisionWidth = 0; this.listViewAutoFilledColumn2.ProportionnalSize = false; this.listViewAutoFilledColumn2.Text = "Category|30245"; this.listViewAutoFilledColumn2.Visible = true; this.listViewAutoFilledColumn2.Width = 279; // // listViewAutoFilledColumn1 // this.listViewAutoFilledColumn1.Field = "Nom"; this.listViewAutoFilledColumn1.PrecisionWidth = 0; this.listViewAutoFilledColumn1.ProportionnalSize = false; this.listViewAutoFilledColumn1.Text = "Name |164"; this.listViewAutoFilledColumn1.Visible = true; this.listViewAutoFilledColumn1.Width = 176; // // c2iPanel1 // this.c2iPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255))))); this.c2iPanel1.Controls.Add(this.m_txtFormuleAssociation); this.c2iPanel1.Controls.Add(this.m_txtFormuleCategories); this.c2iPanel1.Controls.Add(this.label2); this.c2iPanel1.Controls.Add(this.m_txtFormuleCle); this.c2iPanel1.Controls.Add(this.label3); this.c2iPanel1.Controls.Add(this.m_txtFormuleLibelle); this.c2iPanel1.Controls.Add(this.label4); this.c2iPanel1.Controls.Add(this.label1); this.c2iPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.c2iPanel1.ForeColor = System.Drawing.Color.Black; this.c2iPanel1.Location = new System.Drawing.Point(0, 32); this.c2iPanel1.LockEdition = false; this.c2iPanel1.Name = "c2iPanel1"; this.c2iPanel1.Size = new System.Drawing.Size(669, 367); this.m_exStyle.SetStyleBackColor(this.c2iPanel1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorFondPanel); this.m_exStyle.SetStyleForeColor(this.c2iPanel1, sc2i.win32.common.CExtStyle.EnumCouleurs.ColorTextePanel); this.c2iPanel1.TabIndex = 8; // // CFormEditCopierMultipleLocalDansGed // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(669, 447); this.Controls.Add(this.c2iPanel1); this.Name = "CFormEditCopierMultipleLocalDansGed"; this.m_exStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.m_exStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None); this.Text = "Transférer plusieurs fichiers dans la GED|20136"; this.Controls.SetChildIndex(this.c2iPanel1, 0); this.c2iPanel1.ResumeLayout(false); this.c2iPanel1.PerformLayout(); this.ResumeLayout(false); }