SerieEditControl.Designer.cs

Description du code

SerieEditControl.Designer.cs est un fichier du projet BiblioBrol.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.

Projet BiblioBrol :

Gestion de media en CSharp.

Pour plus d'infos, vous pouvez consulter la brève analyse.

Code source ou contenu du fichier

  1. namespace be.gaudry.bibliobrol.view.controls
  2. {
  3. partial class SerieEditControl
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SerieEditControl));
  32. this.nameLbl = new System.Windows.Forms.Label();
  33. this.nameTB = new System.Windows.Forms.TextBox();
  34. this.saveBtn = new System.Windows.Forms.Button();
  35. this.brolsBySerieDGV = new System.Windows.Forms.DataGridView();
  36. this.showBrolsBtn = new System.Windows.Forms.Button();
  37. this.idCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.nameCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.typeCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.availableCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. ((System.ComponentModel.ISupportInitialize)(this.brolsBySerieDGV)).BeginInit();
  42. this.SuspendLayout();
  43. //
  44. // nameLbl
  45. //
  46. this.nameLbl.AutoSize = true;
  47. this.nameLbl.Location = new System.Drawing.Point(11, 26);
  48. this.nameLbl.Name = "nameLbl";
  49. this.nameLbl.Size = new System.Drawing.Size(34, 15);
  50. this.nameLbl.TabIndex = 0;
  51. this.nameLbl.Text = "Nom";
  52. //
  53. // nameTB
  54. //
  55. this.nameTB.Location = new System.Drawing.Point(46, 23);
  56. this.nameTB.Name = "nameTB";
  57. this.nameTB.Size = new System.Drawing.Size(371, 20);
  58. this.nameTB.TabIndex = 1;
  59. //
  60. // saveBtn
  61. //
  62. this.saveBtn.Image = ((System.Drawing.Image)(resources.GetObject("saveBtn.Image")));
  63. this.saveBtn.Location = new System.Drawing.Point(342, 49);
  64. this.saveBtn.Name = "saveBtn";
  65. this.saveBtn.Size = new System.Drawing.Size(75, 23);
  66. this.saveBtn.TabIndex = 4;
  67. this.saveBtn.Text = "Sauver";
  68. this.saveBtn.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  69. this.saveBtn.UseVisualStyleBackColor = true;
  70. this.saveBtn.Click += new System.EventHandler(this.saveBtn_Click);
  71. //
  72. // brolsBySerieDGV
  73. //
  74. this.brolsBySerieDGV.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  75. | System.Windows.Forms.AnchorStyles.Left)
  76. | System.Windows.Forms.AnchorStyles.Right)));
  77. this.brolsBySerieDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  78. this.brolsBySerieDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  79. this.idCol,
  80. this.nameCol,
  81. this.typeCol,
  82. this.availableCol});
  83. this.brolsBySerieDGV.Location = new System.Drawing.Point(14, 118);
  84. this.brolsBySerieDGV.Name = "brolsBySerieDGV";
  85. this.brolsBySerieDGV.Size = new System.Drawing.Size(403, 188);
  86. this.brolsBySerieDGV.TabIndex = 5;
  87. this.brolsBySerieDGV.Visible = false;
  88. //
  89. // showBrolsBtn
  90. //
  91. this.showBrolsBtn.Location = new System.Drawing.Point(14, 48);
  92. this.showBrolsBtn.Name = "showBrolsBtn";
  93. this.showBrolsBtn.Size = new System.Drawing.Size(151, 23);
  94. this.showBrolsBtn.TabIndex = 6;
  95. this.showBrolsBtn.Text = "Afficher les ouvrages";
  96. this.showBrolsBtn.UseVisualStyleBackColor = true;
  97. this.showBrolsBtn.Click += new System.EventHandler(this.showBrolsBtn_Click);
  98. //
  99. // idCol
  100. //
  101. this.idCol.HeaderText = "Id";
  102. this.idCol.Name = "idCol";
  103. //
  104. // nameCol
  105. //
  106. this.nameCol.HeaderText = "Nom";
  107. this.nameCol.Name = "nameCol";
  108. //
  109. // typeCol
  110. //
  111. this.typeCol.HeaderText = "Type";
  112. this.typeCol.Name = "typeCol";
  113. //
  114. // availableCol
  115. //
  116. this.availableCol.HeaderText = "Disponible";
  117. this.availableCol.Name = "availableCol";
  118. //
  119. // SerieEditControl
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.Controls.Add(this.showBrolsBtn);
  124. this.Controls.Add(this.brolsBySerieDGV);
  125. this.Controls.Add(this.saveBtn);
  126. this.Controls.Add(this.nameTB);
  127. this.Controls.Add(this.nameLbl);
  128. this.Name = "SerieEditControl";
  129. this.Size = new System.Drawing.Size(432, 327);
  130. ((System.ComponentModel.ISupportInitialize)(this.brolsBySerieDGV)).EndInit();
  131. this.ResumeLayout(false);
  132. this.PerformLayout();
  133.  
  134. }
  135.  
  136. #endregion
  137.  
  138. private System.Windows.Forms.Label nameLbl;
  139. private System.Windows.Forms.TextBox nameTB;
  140. private System.Windows.Forms.Button saveBtn;
  141. private System.Windows.Forms.DataGridView brolsBySerieDGV;
  142. private System.Windows.Forms.DataGridViewTextBoxColumn idCol;
  143. private System.Windows.Forms.DataGridViewTextBoxColumn nameCol;
  144. private System.Windows.Forms.DataGridViewTextBoxColumn typeCol;
  145. private System.Windows.Forms.DataGridViewTextBoxColumn availableCol;
  146. private System.Windows.Forms.Button showBrolsBtn;
  147. }
  148. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/ 
IcôneNomTailleModification
IcôneNomTailleModification
| _ Répertoire parent0 octets1718697156 18/06/2024 09:52:36
| _dao0 octets1541007199 31/10/2018 18:33:19
| _toolBars0 octets1541007200 31/10/2018 18:33:20
| _webInfo0 octets1541007201 31/10/2018 18:33:21
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csPersonSelectControl.cs4.89 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csCreateStructureControl.cs7.49 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDBSelectControl.cs3.23 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonInfoControl.Designer.cs13.13 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxDirControl.resx5.68 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxBrolInfoControl.resx6.06 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolEditControl.cs25.36 Ko31/10/2018 18:32:55-refusé-
Afficher le fichier .cs|.csPersonEditControl.cs15.67 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSearchControl.cs18.88 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxDBSelectControl.resx5.88 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolInfoControl.Designer.cs22.81 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csInfoControl.cs2.04 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirControl.Designer.cs5.83 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseControl.cs5.49 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csPersonSelectedEventArgs.cs779 octets31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxSelectConsoleVerboseControl.resx5.68 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csTodoControl.cs13.73 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseControl.Designer.cs45.29 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csBrolEditControl.Designer.cs40.09 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDBSelectControl.Designer.cs6.71 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonEditControl.Designer.cs27.54 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxPersonInfoControl.resx6.42 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csCreateStructureControl.Designer.cs5 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirPathModifiedEventArgs.cs871 octets31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csInfoControl.Designer.cs3.18 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csBrolInfoControl.cs5.14 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxBrolEditControl.resx6.04 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csPersonInfoControl.cs2.22 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxInfoControl.resx5.68 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csDirControl.cs4.51 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .resx|.resxCreateStructureControl.resx6.44 Ko31/10/2018 18:32:56-refusé-
Afficher le fichier .cs|.csSerieEditControl.cs2.58 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxSerieEditControl.resx7.45 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxTodoControl.resx6.76 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csTodoControl.Designer.cs28.27 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxSearchControl.resx6.43 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csPersonSelectControl.Designer.cs14.74 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSearchControl.Designer.cs25.75 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .resx|.resxPersonEditControl.resx7.96 Ko31/10/2018 18:32:57-refusé-
Afficher le fichier .cs|.csSerieEditControl.Designer.cs6.65 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxPersonSelectControl.resx5.68 Ko31/10/2018 18:32:57-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-bibliobrol-source-rf-view/controls/SerieEditControl.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.