WizardUserControl.Designer.cs

Description du code

WizardUserControl.Designer.cs est un fichier du projet BrolDev.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.

Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.

Code source ou contenu du fichier

  1. namespace be.gaudry.view.controls
  2. {
  3. partial class WizardUserControl
  4. {
  5. /// <summary>
  6. /// Variable nécessaire au concepteur.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Nettoyage des ressources utilisées.
  12. /// </summary>
  13. /// <param name="disposing">true si les ressources managées doivent être supprimées ; sinon, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Code généré par le Concepteur de composants
  24.  
  25. /// <summary>
  26. /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
  27. /// le contenu de cette méthode avec l'éditeur de code.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  32. this.rightPanel = new System.Windows.Forms.Panel();
  33. this.actionsPanel = new System.Windows.Forms.Panel();
  34. this.actNextBtn = new System.Windows.Forms.Button();
  35. this.actPrevBtn = new System.Windows.Forms.Button();
  36. this.leftPanel = new System.Windows.Forms.FlowLayoutPanel();
  37. this.splitContainer1.Panel1.SuspendLayout();
  38. this.splitContainer1.Panel2.SuspendLayout();
  39. this.splitContainer1.SuspendLayout();
  40. this.rightPanel.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // splitContainer1
  44. //
  45. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  46. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  47. this.splitContainer1.IsSplitterFixed = true;
  48. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  49. this.splitContainer1.Name = "splitContainer1";
  50. //
  51. // splitContainer1.Panel1
  52. //
  53. this.splitContainer1.Panel1.Controls.Add(this.leftPanel);
  54. //
  55. // splitContainer1.Panel2
  56. //
  57. this.splitContainer1.Panel2.Controls.Add(this.rightPanel);
  58. this.splitContainer1.Size = new System.Drawing.Size(700, 500);
  59. this.splitContainer1.SplitterDistance = 250;
  60. this.splitContainer1.SplitterWidth = 8;
  61. this.splitContainer1.TabIndex = 0;
  62. //
  63. // rightPanel
  64. //
  65. this.rightPanel.BackColor = System.Drawing.SystemColors.Control;
  66. this.rightPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  67. this.rightPanel.Controls.Add(this.actionsPanel);
  68. this.rightPanel.Controls.Add(this.actNextBtn);
  69. this.rightPanel.Controls.Add(this.actPrevBtn);
  70. this.rightPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  71. this.rightPanel.Location = new System.Drawing.Point(0, 0);
  72. this.rightPanel.Name = "rightPanel";
  73. this.rightPanel.Size = new System.Drawing.Size(442, 500);
  74. this.rightPanel.TabIndex = 4;
  75. //
  76. // actionsPanel
  77. //
  78. this.actionsPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  79. | System.Windows.Forms.AnchorStyles.Left)
  80. | System.Windows.Forms.AnchorStyles.Right)));
  81. this.actionsPanel.Location = new System.Drawing.Point(2, 3);
  82. this.actionsPanel.Name = "actionsPanel";
  83. this.actionsPanel.Size = new System.Drawing.Size(433, 454);
  84. this.actionsPanel.TabIndex = 0;
  85. //
  86. // actNextBtn
  87. //
  88. this.actNextBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  89. this.actNextBtn.Location = new System.Drawing.Point(348, 470);
  90. this.actNextBtn.Name = "actNextBtn";
  91. this.actNextBtn.Size = new System.Drawing.Size(75, 23);
  92. this.actNextBtn.TabIndex = 3;
  93. this.actNextBtn.Text = "Suivant";
  94. this.actNextBtn.UseVisualStyleBackColor = true;
  95. this.actNextBtn.Click += new System.EventHandler(this.actNextBtn_Click);
  96. //
  97. // actPrevBtn
  98. //
  99. this.actPrevBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  100. this.actPrevBtn.Location = new System.Drawing.Point(240, 470);
  101. this.actPrevBtn.Name = "actPrevBtn";
  102. this.actPrevBtn.Size = new System.Drawing.Size(75, 23);
  103. this.actPrevBtn.TabIndex = 2;
  104. this.actPrevBtn.Text = "Précédent";
  105. this.actPrevBtn.UseVisualStyleBackColor = true;
  106. this.actPrevBtn.Click += new System.EventHandler(this.actPrevBtn_Click);
  107. //
  108. // leftPanel
  109. //
  110. this.leftPanel.Dock = System.Windows.Forms.DockStyle.Fill;
  111. this.leftPanel.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
  112. this.leftPanel.Location = new System.Drawing.Point(0, 0);
  113. this.leftPanel.Name = "leftPanel";
  114. this.leftPanel.Size = new System.Drawing.Size(250, 500);
  115. this.leftPanel.TabIndex = 0;
  116. //
  117. // WizardUserControl
  118. //
  119. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  120. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  121. this.BackColor = System.Drawing.SystemColors.ControlLight;
  122. this.Controls.Add(this.splitContainer1);
  123. this.Name = "WizardUserControl";
  124. this.Size = new System.Drawing.Size(700, 500);
  125. this.Load += new System.EventHandler(this.WizardUserControl_Load);
  126. this.splitContainer1.Panel1.ResumeLayout(false);
  127. this.splitContainer1.Panel2.ResumeLayout(false);
  128. this.splitContainer1.ResumeLayout(false);
  129. this.rightPanel.ResumeLayout(false);
  130. this.ResumeLayout(false);
  131.  
  132. }
  133.  
  134. #endregion
  135.  
  136. private System.Windows.Forms.SplitContainer splitContainer1;
  137. private System.Windows.Forms.Panel actionsPanel;
  138. private System.Windows.Forms.Button actNextBtn;
  139. private System.Windows.Forms.Button actPrevBtn;
  140. private System.Windows.Forms.Panel rightPanel;
  141. private System.Windows.Forms.FlowLayoutPanel leftPanel;
  142. }
  143. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1715798142 15/05/2024 20:35:42
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csToolBarHomeControl.Designer.cs7.41 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.Designer.cs6.79 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanel.Designer.cs1.19 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.cs7.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csXPGroupBox.cs15.83 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.Designer.cs7.85 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csToolBarHomeControl.cs2.32 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csVersionControl.Designer.cs4.09 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.cs2.01 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxWizardXpUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.Designer.cs5.92 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxChartControl.resx6.58 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csHeaderPanel.cs35.93 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csIWizardUC.cs2.35 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxAboutUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.cs8.59 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.cs5.46 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxXPGroupBox.resx17.7 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanelNativeMethods.cs21.09 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.cs6.99 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.Designer.cs1.11 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxSystemInfoControl.resx6.22 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.Designer.cs4.79 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxHeaderPanel.resx5.85 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.cs5.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.cs4.7 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxDGVLayoutOptionsControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxWizardUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csUpdateControl.cs7.55 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.cs2.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csVersionControl.cs463 octets31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxBrolBoxUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csAboutUserControl.cs6.75 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxToolBarManagerControl.resx5.88 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.Designer.cs10.66 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIToolBarControl.cs1.07 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.cs8.11 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csImageCombo.cs15.49 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csAboutUserControl.Designer.cs12.31 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxScrollablePictureBoxUserControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.Designer.cs5.64 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxVersionControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csChartControl.Designer.cs18.45 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csUpdateControl.Designer.cs3.92 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxUpdateControl.resx5.68 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csChartControl.cs15.11 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.Designer.cs17.39 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolStrip.cs1.06 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.Designer.cs1.1 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxToolBarHomeControl.resx48.51 Ko31/10/2018 18:33:12-refusé-

Utilisation de l'explorateur de code

  • Navigation :
    • Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
    • Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
    • La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
    • Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
  • Affichage :
    • Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
  • Actions :
    • Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.

Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-broldev-source-rf-view/controls//WizardUserControl.Designer.cs.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.