Beispiel #1
0
 /// <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_gestionnaireModeEdition = new sc2i.win32.common.CExtModeEdition();
     this.label2         = new System.Windows.Forms.Label();
     this.m_wndHeure     = new sc2i.win32.common.CWndSaisieHeure();
     this.m_extLinkField = new sc2i.win32.common.CExtLinkField();
     this.SuspendLayout();
     //
     // label2
     //
     this.m_extLinkField.SetLinkField(this.label2, "");
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(88, 16);
     this.label2.TabIndex  = 2;
     this.label2.Text      = "Time|125";
     this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
     //
     // m_wndHeure
     //
     this.m_extLinkField.SetLinkField(this.m_wndHeure, "");
     this.m_wndHeure.Location    = new System.Drawing.Point(95, 0);
     this.m_wndHeure.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndHeure, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_wndHeure.Name         = "m_wndHeure";
     this.m_wndHeure.NullAutorise = false;
     this.m_wndHeure.SaisieDuree  = true;
     this.m_wndHeure.Size         = new System.Drawing.Size(40, 20);
     this.m_wndHeure.TabIndex     = 3;
     this.m_wndHeure.ValeurHeure  = 9.5;
     //
     // CPanelPlanficationIntervention
     //
     this.Controls.Add(this.m_wndHeure);
     this.Controls.Add(this.label2);
     this.m_extLinkField.SetLinkField(this, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.Name  = "CPanelPlanficationIntervention";
     this.Size  = new System.Drawing.Size(136, 24);
     this.Load += new System.EventHandler(this.CPanelPlanficationIntervention_Load);
     this.ResumeLayout(false);
 }
Beispiel #2
0
        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
        {
            var           editorService        = (IWindowsFormsEditorService)provider.GetService(typeof(IWindowsFormsEditorService));
            ComboBox      box                  = new ComboBox();
            Type          tp                   = Type.GetType("System.ComponentModel.ExtendedPropertyDescriptor");
            BindingFlags  getFieldBindingFlags = BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetField;
            CExtLinkField linkField            = tp.InvokeMember("provider",
                                                                 getFieldBindingFlags,
                                                                 null,
                                                                 context.PropertyDescriptor,
                                                                 null) as CExtLinkField;

            if (linkField != null)
            {
                CArbreChampsDotNet arbre = new CArbreChampsDotNet();
                arbre.Init(linkField.SourceType);


                EventHandler onOk = (sender, e) =>
                {
                    value = arbre.ChampSelectionne;
                    editorService.CloseDropDown();
                };

                EventHandler onCancel = (sender, e) =>
                {
                    editorService.CloseDropDown();
                };
                arbre.OkEvent     += onOk;
                arbre.CancelEvent += onCancel;

                editorService.DropDownControl(arbre);

                arbre.OkEvent     -= onOk;
                arbre.CancelEvent -= onCancel;
            }
            return(value);
        }
Beispiel #3
0
        public static void AppliqueRestrictions(
            Control ctrl,
            CListeRestrictionsUtilisateurSurType lstRestrictions,
            CGestionnaireReadOnlySysteme gestionnaireReadOnly)
        {
            if (ctrl == null)
            {
                return;
            }

            Type tp = ctrl.GetType();

            while (tp != null)
            {
                foreach (FieldInfo info in tp.GetFields(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.GetField))
                {
                    //cherche les linkFields
                    if (typeof(CExtLinkField).IsAssignableFrom(info.FieldType))
                    {
                        try
                        {
                            CExtLinkField linkField = info.GetValue(ctrl) as CExtLinkField;
                            if (linkField != null)
                            {
                                linkField.AppliqueRestrictions(lstRestrictions, gestionnaireReadOnly);
                            }
                        }
                        catch { }
                    }
                }
                tp = tp.BaseType;
            }
            //Cherche les controles qui sont des IControleAGestionRestriction
            AppliqueRestrictionsSurIControlesAGestionRestrictions(ctrl,
                                                                  lstRestrictions,
                                                                  gestionnaireReadOnly);
        }
 /// <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(CFormEditObjetDeProcess));
     this.panel1         = new System.Windows.Forms.Panel();
     this.m_btnAnnuler   = new System.Windows.Forms.Button();
     this.m_btnOk        = new System.Windows.Forms.Button();
     this.m_extLinkField = new sc2i.win32.common.CExtLinkField();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.Controls.Add(this.m_btnAnnuler);
     this.panel1.Controls.Add(this.m_btnOk);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.m_extLinkField.SetLinkField(this.panel1, "");
     this.panel1.Location = new System.Drawing.Point(0, 218);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(292, 48);
     this.panel1.TabIndex = 1;
     //
     // m_btnAnnuler
     //
     this.m_btnAnnuler.Anchor       = System.Windows.Forms.AnchorStyles.Top;
     this.m_btnAnnuler.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnAnnuler.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnAnnuler.ForeColor    = System.Drawing.Color.White;
     this.m_btnAnnuler.Image        = ((System.Drawing.Image)(resources.GetObject("m_btnAnnuler.Image")));
     this.m_extLinkField.SetLinkField(this.m_btnAnnuler, "");
     this.m_btnAnnuler.Location = new System.Drawing.Point(153, 2);
     this.m_btnAnnuler.Name     = "m_btnAnnuler";
     this.m_btnAnnuler.Size     = new System.Drawing.Size(40, 40);
     this.m_btnAnnuler.TabIndex = 3;
     //
     // m_btnOk
     //
     this.m_btnOk.Anchor    = System.Windows.Forms.AnchorStyles.Top;
     this.m_btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnOk.ForeColor = System.Drawing.Color.White;
     this.m_btnOk.Image     = ((System.Drawing.Image)(resources.GetObject("m_btnOk.Image")));
     this.m_extLinkField.SetLinkField(this.m_btnOk, "");
     this.m_btnOk.Location = new System.Drawing.Point(99, 2);
     this.m_btnOk.Name     = "m_btnOk";
     this.m_btnOk.Size     = new System.Drawing.Size(40, 40);
     this.m_btnOk.TabIndex = 2;
     this.m_btnOk.Click   += new System.EventHandler(this.m_btnOk_Click);
     //
     // CFormEditObjetDeProcess
     //
     this.AcceptButton      = this.m_btnOk;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.CancelButton      = this.m_btnAnnuler;
     this.ClientSize        = new System.Drawing.Size(292, 266);
     this.Controls.Add(this.panel1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.m_extLinkField.SetLinkField(this, "");
     this.MinimizeBox = false;
     this.Name        = "CFormEditObjetDeProcess";
     this.ShowIcon    = false;
     this.Text        = "Link properties|168";
     this.Load       += new System.EventHandler(this.CFormEditLienAction_Load);
     this.panel1.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.components                = new System.ComponentModel.Container();
     this.m_panGeneral              = new sc2i.win32.common.C2iPanelOmbre();
     this.m_splitContainer          = new System.Windows.Forms.SplitContainer();
     this.m_wndListeTypes           = new System.Windows.Forms.ListView();
     this.m_colType                 = new System.Windows.Forms.ColumnHeader();
     this.m_panelEditFiltre         = new System.Windows.Forms.Panel();
     this.m_panelParametres         = new sc2i.win32.data.EditionFiltreData.CControlEditeParametresFiltre();
     this.panel2                    = new System.Windows.Forms.Panel();
     this.m_txtFiltre               = new sc2i.win32.common.C2iTextBox();
     this.m_btnFiltreDynamique      = new System.Windows.Forms.Button();
     this.c2iTextBox1               = new sc2i.win32.common.C2iTextBox();
     this.panel1                    = new System.Windows.Forms.Panel();
     this.label2                    = new System.Windows.Forms.Label();
     this.c2iPanel1                 = new sc2i.win32.common.C2iPanel(this.components);
     this.m_btnEditerObjet          = new System.Windows.Forms.Button();
     this.m_btnAnnulerModifications = new System.Windows.Forms.Button();
     this.m_btnValiderModifications = new System.Windows.Forms.Button();
     this.label1                    = new System.Windows.Forms.Label();
     this.m_gestionnaireModeEdition = new sc2i.win32.common.CExtModeEdition();
     this.m_extLinkField            = new sc2i.win32.common.CExtLinkField();
     this.m_lblTypeEnCours          = new System.Windows.Forms.Label();
     this.m_panGeneral.SuspendLayout();
     this.m_splitContainer.Panel1.SuspendLayout();
     this.m_splitContainer.Panel2.SuspendLayout();
     this.m_splitContainer.SuspendLayout();
     this.m_panelEditFiltre.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.c2iPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // m_panGeneral
     //
     this.m_panGeneral.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_panGeneral.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.m_panGeneral.Controls.Add(this.m_splitContainer);
     this.m_panGeneral.Controls.Add(this.label1);
     this.m_panGeneral.ForeColor = System.Drawing.Color.Black;
     this.m_extLinkField.SetLinkField(this.m_panGeneral, "");
     this.m_panGeneral.Location    = new System.Drawing.Point(12, 4);
     this.m_panGeneral.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panGeneral, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_panGeneral.Name = "m_panGeneral";
     this.m_panGeneral.Size = new System.Drawing.Size(818, 563);
     this.m_extStyle.SetStyleBackColor(this.m_panGeneral, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panGeneral, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panGeneral.TabIndex = 0;
     //
     // 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_extLinkField.SetLinkField(this.m_splitContainer, "");
     this.m_splitContainer.Location = new System.Drawing.Point(8, 44);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_splitContainer.Name = "m_splitContainer";
     //
     // m_splitContainer.Panel1
     //
     this.m_splitContainer.Panel1.Controls.Add(this.m_wndListeTypes);
     this.m_extLinkField.SetLinkField(this.m_splitContainer.Panel1, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer.Panel1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_splitContainer.Panel2
     //
     this.m_splitContainer.Panel2.Controls.Add(this.m_panelEditFiltre);
     this.m_extLinkField.SetLinkField(this.m_splitContainer.Panel2, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer.Panel2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_splitContainer.Size             = new System.Drawing.Size(788, 496);
     this.m_splitContainer.SplitterDistance = 232;
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_splitContainer.TabIndex = 3;
     //
     // m_wndListeTypes
     //
     this.m_wndListeTypes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.m_colType
     });
     this.m_wndListeTypes.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.m_wndListeTypes.HideSelection = false;
     this.m_extLinkField.SetLinkField(this.m_wndListeTypes, "");
     this.m_wndListeTypes.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndListeTypes, sc2i.win32.common.TypeModeEdition.DisableSurEdition);
     this.m_wndListeTypes.MultiSelect = false;
     this.m_wndListeTypes.Name        = "m_wndListeTypes";
     this.m_wndListeTypes.Size        = new System.Drawing.Size(232, 496);
     this.m_extStyle.SetStyleBackColor(this.m_wndListeTypes, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_wndListeTypes, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_wndListeTypes.TabIndex = 4;
     this.m_wndListeTypes.UseCompatibleStateImageBehavior = false;
     this.m_wndListeTypes.View = System.Windows.Forms.View.Details;
     this.m_wndListeTypes.SelectedIndexChanged += new System.EventHandler(this.m_wndListeTypes_SelectedIndexChanged);
     //
     // m_colType
     //
     this.m_colType.Text  = "Object type|1085";
     this.m_colType.Width = 211;
     //
     // m_panelEditFiltre
     //
     this.m_panelEditFiltre.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_panelEditFiltre.Controls.Add(this.m_panelParametres);
     this.m_panelEditFiltre.Controls.Add(this.panel2);
     this.m_panelEditFiltre.Controls.Add(this.c2iTextBox1);
     this.m_panelEditFiltre.Controls.Add(this.panel1);
     this.m_panelEditFiltre.Controls.Add(this.c2iPanel1);
     this.m_extLinkField.SetLinkField(this.m_panelEditFiltre, "");
     this.m_panelEditFiltre.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelEditFiltre, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_panelEditFiltre.Name = "m_panelEditFiltre";
     this.m_panelEditFiltre.Size = new System.Drawing.Size(552, 496);
     this.m_extStyle.SetStyleBackColor(this.m_panelEditFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelEditFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelEditFiltre.TabIndex = 12;
     this.m_panelEditFiltre.Visible  = false;
     //
     // m_panelParametres
     //
     this.m_panelParametres.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_extLinkField.SetLinkField(this.m_panelParametres, "");
     this.m_panelParametres.Location       = new System.Drawing.Point(0, 165);
     this.m_panelParametres.LockEdition    = true;
     this.m_panelParametres.LockParametre1 = true;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelParametres, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_panelParametres.Name = "m_panelParametres";
     this.m_panelParametres.Size = new System.Drawing.Size(552, 331);
     this.m_extStyle.SetStyleBackColor(this.m_panelParametres, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelParametres, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelParametres.TabIndex = 3;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.m_txtFiltre);
     this.panel2.Controls.Add(this.m_btnFiltreDynamique);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.m_extLinkField.SetLinkField(this.panel2, "");
     this.panel2.Location = new System.Drawing.Point(0, 65);
     this.m_gestionnaireModeEdition.SetModeEdition(this.panel2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(552, 100);
     this.m_extStyle.SetStyleBackColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.panel2.TabIndex = 6;
     //
     // m_txtFiltre
     //
     this.m_txtFiltre.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_extLinkField.SetLinkField(this.m_txtFiltre, "");
     this.m_txtFiltre.Location    = new System.Drawing.Point(0, 0);
     this.m_txtFiltre.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_txtFiltre, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_txtFiltre.Multiline  = true;
     this.m_txtFiltre.Name       = "m_txtFiltre";
     this.m_txtFiltre.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.m_txtFiltre.Size       = new System.Drawing.Size(527, 100);
     this.m_extStyle.SetStyleBackColor(this.m_txtFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_txtFiltre, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_txtFiltre.TabIndex = 0;
     //
     // m_btnFiltreDynamique
     //
     this.m_btnFiltreDynamique.Dock = System.Windows.Forms.DockStyle.Right;
     this.m_extLinkField.SetLinkField(this.m_btnFiltreDynamique, "");
     this.m_btnFiltreDynamique.Location = new System.Drawing.Point(527, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnFiltreDynamique, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_btnFiltreDynamique.Name = "m_btnFiltreDynamique";
     this.m_btnFiltreDynamique.Size = new System.Drawing.Size(25, 100);
     this.m_extStyle.SetStyleBackColor(this.m_btnFiltreDynamique, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_btnFiltreDynamique, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_btnFiltreDynamique.TabIndex = 5;
     this.m_btnFiltreDynamique.Text     = "...";
     this.m_btnFiltreDynamique.UseVisualStyleBackColor = true;
     this.m_btnFiltreDynamique.Click += new System.EventHandler(this.m_btnFiltreDynamique_Click);
     //
     // c2iTextBox1
     //
     this.m_extLinkField.SetLinkField(this.c2iTextBox1, "");
     this.c2iTextBox1.Location    = new System.Drawing.Point(508, 491);
     this.c2iTextBox1.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.c2iTextBox1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.c2iTextBox1.Name = "c2iTextBox1";
     this.c2iTextBox1.Size = new System.Drawing.Size(100, 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 = 2;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.m_lblTypeEnCours);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.m_extLinkField.SetLinkField(this.panel1, "");
     this.panel1.Location = new System.Drawing.Point(0, 42);
     this.m_gestionnaireModeEdition.SetModeEdition(this.panel1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(552, 23);
     this.m_extStyle.SetStyleBackColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.panel1.TabIndex = 4;
     //
     // label2
     //
     this.label2.Dock = System.Windows.Forms.DockStyle.Left;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_extLinkField.SetLinkField(this.label2, "");
     this.label2.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(132, 23);
     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 = 0;
     this.label2.Text     = "Parameters|20110";
     //
     // c2iPanel1
     //
     this.c2iPanel1.Controls.Add(this.m_btnEditerObjet);
     this.c2iPanel1.Controls.Add(this.m_btnAnnulerModifications);
     this.c2iPanel1.Controls.Add(this.m_btnValiderModifications);
     this.c2iPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.m_extLinkField.SetLinkField(this.c2iPanel1, "");
     this.c2iPanel1.Location    = new System.Drawing.Point(0, 0);
     this.c2iPanel1.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.c2iPanel1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.c2iPanel1.Name = "c2iPanel1";
     this.c2iPanel1.Size = new System.Drawing.Size(552, 42);
     this.m_extStyle.SetStyleBackColor(this.c2iPanel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.c2iPanel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.c2iPanel1.TabIndex = 1;
     //
     // m_btnEditerObjet
     //
     this.m_btnEditerObjet.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btnEditerObjet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnEditerObjet.ForeColor = System.Drawing.Color.White;
     this.m_btnEditerObjet.Image     = global::timos.Properties.Resources.edit;
     this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, "");
     this.m_btnEditerObjet.Location = new System.Drawing.Point(4, 3);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.DisableSurEdition);
     this.m_btnEditerObjet.Name = "m_btnEditerObjet";
     this.m_btnEditerObjet.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnEditerObjet.TabIndex = 4019;
     this.m_btnEditerObjet.TabStop  = false;
     this.m_btnEditerObjet.Click   += new System.EventHandler(this.m_btnEditerObjet_Click);
     //
     // m_btnAnnulerModifications
     //
     this.m_btnAnnulerModifications.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.m_btnAnnulerModifications.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnAnnulerModifications.Enabled      = false;
     this.m_btnAnnulerModifications.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnAnnulerModifications.ForeColor    = System.Drawing.Color.White;
     this.m_btnAnnulerModifications.Image        = global::timos.Properties.Resources.cancel;
     this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, "");
     this.m_btnAnnulerModifications.Location = new System.Drawing.Point(98, 3);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_btnAnnulerModifications.Name = "m_btnAnnulerModifications";
     this.m_btnAnnulerModifications.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnAnnulerModifications.TabIndex = 4021;
     this.m_btnAnnulerModifications.TabStop  = false;
     this.m_btnAnnulerModifications.Click   += new System.EventHandler(this.m_btnAnnulerModifications_Click);
     //
     // m_btnValiderModifications
     //
     this.m_btnValiderModifications.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btnValiderModifications.Enabled   = false;
     this.m_btnValiderModifications.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnValiderModifications.ForeColor = System.Drawing.Color.White;
     this.m_btnValiderModifications.Image     = global::timos.Properties.Resources.check;
     this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, "");
     this.m_btnValiderModifications.Location = new System.Drawing.Point(67, 3);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_btnValiderModifications.Name = "m_btnValiderModifications";
     this.m_btnValiderModifications.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnValiderModifications.TabIndex = 4020;
     this.m_btnValiderModifications.TabStop  = false;
     this.m_btnValiderModifications.Click   += new System.EventHandler(this.m_btnValiderModifications_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_extLinkField.SetLinkField(this.label1, "");
     this.label1.Location = new System.Drawing.Point(4, 8);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(256, 24);
     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 = 4;
     this.label1.Text     = "Quick search filter setup|20109";
     //
     // m_lblTypeEnCours
     //
     this.m_lblTypeEnCours.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_lblTypeEnCours.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_extLinkField.SetLinkField(this.m_lblTypeEnCours, "");
     this.m_lblTypeEnCours.Location = new System.Drawing.Point(132, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_lblTypeEnCours, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_lblTypeEnCours.Name = "m_lblTypeEnCours";
     this.m_lblTypeEnCours.Size = new System.Drawing.Size(420, 23);
     this.m_extStyle.SetStyleBackColor(this.m_lblTypeEnCours, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_lblTypeEnCours, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_lblTypeEnCours.TabIndex = 1;
     //
     // CFormEditionPreferenceFiltreRapide
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Window;
     this.ClientSize        = new System.Drawing.Size(830, 567);
     this.Controls.Add(this.m_panGeneral);
     this.KeyPreview = true;
     this.m_extLinkField.SetLinkField(this, "");
     this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.Name = "CFormEditionPreferenceFiltreRapide";
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panGeneral.ResumeLayout(false);
     this.m_panGeneral.PerformLayout();
     this.m_splitContainer.Panel1.ResumeLayout(false);
     this.m_splitContainer.Panel2.ResumeLayout(false);
     this.m_splitContainer.ResumeLayout(false);
     this.m_panelEditFiltre.ResumeLayout(false);
     this.m_panelEditFiltre.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.c2iPanel1.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CFormEditActionForEach));
     this.m_extLinkField        = new sc2i.win32.common.CExtLinkField();
     this.label1                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.m_comboVariableListe  = new sc2i.win32.common.CComboboxAutoFilled();
     this.m_comboVariable       = new sc2i.win32.common.CComboboxAutoFilled();
     this.m_lnkNouvelleVariable = new System.Windows.Forms.LinkLabel();
     this.SuspendLayout();
     //
     // label1
     //
     this.m_extLinkField.SetLinkField(this.label1, "");
     this.label1.Location = new System.Drawing.Point(8, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(112, 16);
     this.label1.TabIndex = 2;
     this.label1.Text     = "List|129";
     //
     // label2
     //
     this.m_extLinkField.SetLinkField(this.label2, "");
     this.label2.Location = new System.Drawing.Point(8, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(112, 16);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Iteration variable|206";
     //
     // m_comboVariableListe
     //
     this.m_comboVariableListe.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_comboVariableListe.IsLink        = false;
     this.m_extLinkField.SetLinkField(this.m_comboVariableListe, "");
     this.m_comboVariableListe.ListDonnees       = null;
     this.m_comboVariableListe.Location          = new System.Drawing.Point(120, 8);
     this.m_comboVariableListe.LockEdition       = false;
     this.m_comboVariableListe.Name              = "m_comboVariableListe";
     this.m_comboVariableListe.NullAutorise      = false;
     this.m_comboVariableListe.ProprieteAffichee = null;
     this.m_comboVariableListe.Size              = new System.Drawing.Size(288, 21);
     this.m_comboVariableListe.TabIndex          = 4;
     this.m_comboVariableListe.TextNull          = I.T("(to affect)|30017");
     this.m_comboVariableListe.Tri = true;
     this.m_comboVariableListe.SelectedValueChanged += new System.EventHandler(this.m_comboVariableListe_SelectedValueChanged);
     //
     // m_comboVariable
     //
     this.m_comboVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_comboVariable.IsLink        = false;
     this.m_extLinkField.SetLinkField(this.m_comboVariable, "");
     this.m_comboVariable.ListDonnees       = null;
     this.m_comboVariable.Location          = new System.Drawing.Point(120, 32);
     this.m_comboVariable.LockEdition       = false;
     this.m_comboVariable.Name              = "m_comboVariable";
     this.m_comboVariable.NullAutorise      = false;
     this.m_comboVariable.ProprieteAffichee = null;
     this.m_comboVariable.Size              = new System.Drawing.Size(288, 21);
     this.m_comboVariable.TabIndex          = 5;
     this.m_comboVariable.TextNull          = I.T("(to affect)|30017");
     this.m_comboVariable.Tri = true;
     //
     // m_lnkNouvelleVariable
     //
     this.m_extLinkField.SetLinkField(this.m_lnkNouvelleVariable, "");
     this.m_lnkNouvelleVariable.Location     = new System.Drawing.Point(416, 34);
     this.m_lnkNouvelleVariable.Name         = "m_lnkNouvelleVariable";
     this.m_lnkNouvelleVariable.Size         = new System.Drawing.Size(120, 16);
     this.m_lnkNouvelleVariable.TabIndex     = 6;
     this.m_lnkNouvelleVariable.TabStop      = true;
     this.m_lnkNouvelleVariable.Text         = "New variable|127";
     this.m_lnkNouvelleVariable.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_lnkNouvelleVariable_LinkClicked);
     //
     // CFormEditActionForEach
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(536, 110);
     this.Controls.Add(this.m_lnkNouvelleVariable);
     this.Controls.Add(this.m_comboVariable);
     this.Controls.Add(this.m_comboVariableListe);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.m_extLinkField.SetLinkField(this, "");
     this.Name  = "CFormEditActionForEach";
     this.Text  = "List iterating properties|128";
     this.Load += new System.EventHandler(this.CFormEditLienAction_Load);
     this.Controls.SetChildIndex(this.label1, 0);
     this.Controls.SetChildIndex(this.label2, 0);
     this.Controls.SetChildIndex(this.m_comboVariableListe, 0);
     this.Controls.SetChildIndex(this.m_comboVariable, 0);
     this.Controls.SetChildIndex(this.m_lnkNouvelleVariable, 0);
     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_panGeneral                         = new sc2i.win32.common.C2iPanelOmbre();
     this.m_splitContainer                     = new System.Windows.Forms.SplitContainer();
     this.m_wndListeTypes                      = new System.Windows.Forms.ListView();
     this.m_colType                            = new System.Windows.Forms.ColumnHeader();
     this.m_panelSelectForm                    = new System.Windows.Forms.Panel();
     this.m_panelFormPref                      = new sc2i.win32.data.navigation.RefTypeForm.CPanelEditRefTypeFormAvecCondition();
     this.label1                               = new System.Windows.Forms.Label();
     this.m_gestionnaireModeEdition            = new sc2i.win32.common.CExtModeEdition();
     this.m_btnValiderModifications            = new System.Windows.Forms.Button();
     this.m_btnEditerObjet                     = new System.Windows.Forms.Button();
     this.m_btnAnnulerModifications            = new System.Windows.Forms.Button();
     this.m_extLinkField                       = new sc2i.win32.common.CExtLinkField();
     this.cGestionnaireEditionSousObjetDonnee1 = new sc2i.win32.data.navigation.CGestionnaireEditionSousObjetDonnee(this.components);
     this.m_panGeneral.SuspendLayout();
     this.m_splitContainer.Panel1.SuspendLayout();
     this.m_splitContainer.Panel2.SuspendLayout();
     this.m_splitContainer.SuspendLayout();
     this.m_panelSelectForm.SuspendLayout();
     this.SuspendLayout();
     //
     // m_panGeneral
     //
     this.m_panGeneral.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_panGeneral.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(189)))), ((int)(((byte)(255)))));
     this.m_panGeneral.Controls.Add(this.m_splitContainer);
     this.m_panGeneral.Controls.Add(this.label1);
     this.m_panGeneral.ForeColor = System.Drawing.Color.Black;
     this.m_extLinkField.SetLinkField(this.m_panGeneral, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_panGeneral, false);
     this.m_panGeneral.Location    = new System.Drawing.Point(12, 44);
     this.m_panGeneral.LockEdition = false;
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panGeneral, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_panGeneral.Name = "m_panGeneral";
     this.m_panGeneral.Size = new System.Drawing.Size(818, 523);
     this.m_extStyle.SetStyleBackColor(this.m_panGeneral, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panGeneral, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panGeneral.TabIndex = 0;
     //
     // 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_extLinkField.SetLinkField(this.m_splitContainer, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_splitContainer, false);
     this.m_splitContainer.Location = new System.Drawing.Point(8, 44);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_splitContainer.Name = "m_splitContainer";
     //
     // m_splitContainer.Panel1
     //
     this.m_splitContainer.Panel1.Controls.Add(this.m_wndListeTypes);
     this.m_extLinkField.SetLinkField(this.m_splitContainer.Panel1, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_splitContainer.Panel1, false);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer.Panel1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer.Panel1, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     //
     // m_splitContainer.Panel2
     //
     this.m_splitContainer.Panel2.Controls.Add(this.m_panelSelectForm);
     this.m_extLinkField.SetLinkField(this.m_splitContainer.Panel2, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_splitContainer.Panel2, false);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_splitContainer.Panel2, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer.Panel2, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_splitContainer.Size             = new System.Drawing.Size(788, 456);
     this.m_splitContainer.SplitterDistance = 232;
     this.m_extStyle.SetStyleBackColor(this.m_splitContainer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_splitContainer, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_splitContainer.TabIndex = 3;
     //
     // m_wndListeTypes
     //
     this.m_wndListeTypes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.m_colType
     });
     this.m_wndListeTypes.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_extLinkField.SetLinkField(this.m_wndListeTypes, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_wndListeTypes, false);
     this.m_wndListeTypes.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_wndListeTypes, sc2i.win32.common.TypeModeEdition.Autonome);
     this.m_wndListeTypes.MultiSelect = false;
     this.m_wndListeTypes.Name        = "m_wndListeTypes";
     this.m_wndListeTypes.Size        = new System.Drawing.Size(232, 456);
     this.m_extStyle.SetStyleBackColor(this.m_wndListeTypes, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_wndListeTypes, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_wndListeTypes.TabIndex = 4;
     this.m_wndListeTypes.UseCompatibleStateImageBehavior = false;
     this.m_wndListeTypes.View = System.Windows.Forms.View.Details;
     this.m_wndListeTypes.SelectedIndexChanged += new System.EventHandler(this.m_wndListeTypes_SelectedIndexChanged);
     //
     // m_colType
     //
     this.m_colType.Text  = "Object type|1085";
     this.m_colType.Width = 211;
     //
     // m_panelSelectForm
     //
     this.m_panelSelectForm.Controls.Add(this.m_panelFormPref);
     this.m_panelSelectForm.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_extLinkField.SetLinkField(this.m_panelSelectForm, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_panelSelectForm, false);
     this.m_panelSelectForm.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelSelectForm, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_panelSelectForm.Name = "m_panelSelectForm";
     this.m_panelSelectForm.Size = new System.Drawing.Size(552, 456);
     this.m_extStyle.SetStyleBackColor(this.m_panelSelectForm, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelSelectForm, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelSelectForm.TabIndex = 12;
     this.m_panelSelectForm.Visible  = false;
     //
     // m_panelFormPref
     //
     this.m_panelFormPref.Dock = System.Windows.Forms.DockStyle.Fill;
     this.m_extLinkField.SetLinkField(this.m_panelFormPref, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_panelFormPref, false);
     this.m_panelFormPref.Location = new System.Drawing.Point(0, 0);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_panelFormPref, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_panelFormPref.Name = "m_panelFormPref";
     this.m_panelFormPref.Size = new System.Drawing.Size(552, 456);
     this.m_extStyle.SetStyleBackColor(this.m_panelFormPref, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this.m_panelFormPref, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panelFormPref.TabIndex = 12;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.m_extLinkField.SetLinkField(this.label1, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.label1, false);
     this.label1.Location = new System.Drawing.Point(4, 8);
     this.m_gestionnaireModeEdition.SetModeEdition(this.label1, sc2i.win32.common.TypeModeEdition.Autonome);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(482, 24);
     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 = 4;
     this.label1.Text     = "Select an entity type, then its favourite editing form |30225";
     //
     // m_btnValiderModifications
     //
     this.m_btnValiderModifications.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btnValiderModifications.Enabled   = false;
     this.m_btnValiderModifications.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnValiderModifications.ForeColor = System.Drawing.Color.White;
     this.m_btnValiderModifications.Image     = global::timos.Properties.Resources.check;
     this.m_extLinkField.SetLinkField(this.m_btnValiderModifications, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnValiderModifications, false);
     this.m_btnValiderModifications.Location = new System.Drawing.Point(90, -2);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnValiderModifications, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_btnValiderModifications.Name = "m_btnValiderModifications";
     this.m_btnValiderModifications.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnValiderModifications.TabIndex = 4020;
     this.m_btnValiderModifications.TabStop  = false;
     this.m_btnValiderModifications.Click   += new System.EventHandler(this.m_btnValiderModifications_Click);
     //
     // m_btnEditerObjet
     //
     this.m_btnEditerObjet.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btnEditerObjet.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnEditerObjet.ForeColor = System.Drawing.Color.White;
     this.m_btnEditerObjet.Image     = global::timos.Properties.Resources.edit;
     this.m_extLinkField.SetLinkField(this.m_btnEditerObjet, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnEditerObjet, false);
     this.m_btnEditerObjet.Location = new System.Drawing.Point(12, -2);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnEditerObjet, sc2i.win32.common.TypeModeEdition.DisableSurEdition);
     this.m_btnEditerObjet.Name = "m_btnEditerObjet";
     this.m_btnEditerObjet.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnEditerObjet.TabIndex = 4019;
     this.m_btnEditerObjet.TabStop  = false;
     this.m_btnEditerObjet.Click   += new System.EventHandler(this.m_btnEditerObjet_Click);
     //
     // m_btnAnnulerModifications
     //
     this.m_btnAnnulerModifications.Cursor       = System.Windows.Forms.Cursors.Hand;
     this.m_btnAnnulerModifications.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.m_btnAnnulerModifications.Enabled      = false;
     this.m_btnAnnulerModifications.FlatStyle    = System.Windows.Forms.FlatStyle.Flat;
     this.m_btnAnnulerModifications.ForeColor    = System.Drawing.Color.White;
     this.m_btnAnnulerModifications.Image        = global::timos.Properties.Resources.cancel;
     this.m_extLinkField.SetLinkField(this.m_btnAnnulerModifications, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this.m_btnAnnulerModifications, false);
     this.m_btnAnnulerModifications.Location = new System.Drawing.Point(127, -2);
     this.m_gestionnaireModeEdition.SetModeEdition(this.m_btnAnnulerModifications, sc2i.win32.common.TypeModeEdition.EnableSurEdition);
     this.m_btnAnnulerModifications.Name = "m_btnAnnulerModifications";
     this.m_btnAnnulerModifications.Size = new System.Drawing.Size(31, 31);
     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);
     this.m_btnAnnulerModifications.TabIndex = 4021;
     this.m_btnAnnulerModifications.TabStop  = false;
     this.m_btnAnnulerModifications.Click   += new System.EventHandler(this.m_btnAnnulerModifications_Click);
     //
     // m_extLinkField
     //
     this.m_extLinkField.SourceTypeString = "";
     //
     // cGestionnaireEditionSousObjetDonnee1
     //
     this.cGestionnaireEditionSousObjetDonnee1.ObjetEdite = null;
     //
     // CFormEditionPreferenceTypeForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.SystemColors.Window;
     this.ClientSize        = new System.Drawing.Size(830, 567);
     this.Controls.Add(this.m_panGeneral);
     this.Controls.Add(this.m_btnEditerObjet);
     this.Controls.Add(this.m_btnValiderModifications);
     this.Controls.Add(this.m_btnAnnulerModifications);
     this.KeyPreview = true;
     this.m_extLinkField.SetLinkField(this, "");
     this.m_extLinkField.SetLinkFieldAutoUpdate(this, false);
     this.m_gestionnaireModeEdition.SetModeEdition(this, sc2i.win32.common.TypeModeEdition.Autonome);
     this.Name = "CFormEditionPreferenceTypeForm";
     this.m_extStyle.SetStyleBackColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_extStyle.SetStyleForeColor(this, sc2i.win32.common.CExtStyle.EnumCouleurs.None);
     this.m_panGeneral.ResumeLayout(false);
     this.m_panGeneral.PerformLayout();
     this.m_splitContainer.Panel1.ResumeLayout(false);
     this.m_splitContainer.Panel2.ResumeLayout(false);
     this.m_splitContainer.ResumeLayout(false);
     this.m_panelSelectForm.ResumeLayout(false);
     this.ResumeLayout(false);
 }