BorrowsForm.Designer.cs

Description du code

BorrowsForm.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
  2. {
  3. partial class BorrowsForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BorrowsForm));
  34. this.borrowsDGV = new System.Windows.Forms.DataGridView();
  35. this.startDateTBC = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.planDateTBC = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.endDateTBC = new System.Windows.Forms.DataGridViewTextBoxColumn();
  38. this.id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.title = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.biblioItemName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.borrowerTBC = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.borrowsTC = new System.Windows.Forms.TabControl();
  43. this.borrowsListTP = new System.Windows.Forms.TabPage();
  44. ((System.ComponentModel.ISupportInitialize)(this.borrowsDGV)).BeginInit();
  45. this.borrowsTC.SuspendLayout();
  46. this.borrowsListTP.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // borrowsDGV
  50. //
  51. this.borrowsDGV.AllowUserToAddRows = false;
  52. this.borrowsDGV.AllowUserToDeleteRows = false;
  53. this.borrowsDGV.AllowUserToOrderColumns = true;
  54. this.borrowsDGV.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  55. this.borrowsDGV.BackgroundColor = System.Drawing.SystemColors.Control;
  56. this.borrowsDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  57. this.startDateTBC,
  58. this.planDateTBC,
  59. this.endDateTBC,
  60. this.id,
  61. this.title,
  62. this.biblioItemName,
  63. this.borrowerTBC});
  64. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  65. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
  66. dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  67. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
  68. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  69. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  70. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  71. this.borrowsDGV.DefaultCellStyle = dataGridViewCellStyle1;
  72. this.borrowsDGV.Dock = System.Windows.Forms.DockStyle.Fill;
  73. this.borrowsDGV.GridColor = System.Drawing.Color.SlateGray;
  74. this.borrowsDGV.Location = new System.Drawing.Point(3, 3);
  75. this.borrowsDGV.MultiSelect = false;
  76. this.borrowsDGV.Name = "borrowsDGV";
  77. this.borrowsDGV.ReadOnly = true;
  78. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  79. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
  80. dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  81. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
  82. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  83. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  84. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  85. this.borrowsDGV.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
  86. this.borrowsDGV.RowHeadersVisible = false;
  87. this.borrowsDGV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  88. this.borrowsDGV.Size = new System.Drawing.Size(569, 283);
  89. this.borrowsDGV.TabIndex = 1;
  90. //
  91. // startDateTBC
  92. //
  93. this.startDateTBC.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  94. this.startDateTBC.DataPropertyName = "startDate";
  95. this.startDateTBC.HeaderText = "Début d\'emprunt";
  96. this.startDateTBC.Name = "startDateTBC";
  97. this.startDateTBC.ReadOnly = true;
  98. this.startDateTBC.Width = 110;
  99. //
  100. // planDateTBC
  101. //
  102. this.planDateTBC.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  103. this.planDateTBC.DataPropertyName = "planDate";
  104. this.planDateTBC.HeaderText = "Retour prévu";
  105. this.planDateTBC.Name = "planDateTBC";
  106. this.planDateTBC.ReadOnly = true;
  107. this.planDateTBC.Width = 94;
  108. //
  109. // endDateTBC
  110. //
  111. this.endDateTBC.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.ColumnHeader;
  112. this.endDateTBC.DataPropertyName = "endDate";
  113. this.endDateTBC.HeaderText = "Fin d\'emprunt";
  114. this.endDateTBC.Name = "endDateTBC";
  115. this.endDateTBC.ReadOnly = true;
  116. this.endDateTBC.Width = 95;
  117. //
  118. // id
  119. //
  120. this.id.DataPropertyName = "id";
  121. this.id.HeaderText = "id";
  122. this.id.Name = "id";
  123. this.id.ReadOnly = true;
  124. this.id.Visible = false;
  125. //
  126. // title
  127. //
  128. this.title.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  129. this.title.DataPropertyName = "title";
  130. this.title.HeaderText = "Titre";
  131. this.title.Name = "title";
  132. this.title.ReadOnly = true;
  133. this.title.Width = 53;
  134. //
  135. // biblioItemName
  136. //
  137. this.biblioItemName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
  138. this.biblioItemName.DataPropertyName = "name";
  139. this.biblioItemName.HeaderText = "Nom d\'exemplaire";
  140. this.biblioItemName.Name = "biblioItemName";
  141. this.biblioItemName.ReadOnly = true;
  142. this.biblioItemName.Width = 115;
  143. //
  144. // borrowerTBC
  145. //
  146. this.borrowerTBC.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  147. this.borrowerTBC.DataPropertyName = "borrower";
  148. this.borrowerTBC.HeaderText = "Emprunteur";
  149. this.borrowerTBC.Name = "borrowerTBC";
  150. this.borrowerTBC.ReadOnly = true;
  151. //
  152. // borrowsTC
  153. //
  154. this.borrowsTC.Controls.Add(this.borrowsListTP);
  155. this.borrowsTC.Dock = System.Windows.Forms.DockStyle.Fill;
  156. this.borrowsTC.Location = new System.Drawing.Point(0, 0);
  157. this.borrowsTC.Name = "borrowsTC";
  158. this.borrowsTC.SelectedIndex = 0;
  159. this.borrowsTC.Size = new System.Drawing.Size(583, 315);
  160. this.borrowsTC.TabIndex = 2;
  161. //
  162. // borrowsListTP
  163. //
  164. this.borrowsListTP.Controls.Add(this.borrowsDGV);
  165. this.borrowsListTP.Location = new System.Drawing.Point(4, 22);
  166. this.borrowsListTP.Name = "borrowsListTP";
  167. this.borrowsListTP.Padding = new System.Windows.Forms.Padding(3);
  168. this.borrowsListTP.Size = new System.Drawing.Size(575, 289);
  169. this.borrowsListTP.TabIndex = 0;
  170. this.borrowsListTP.Text = "Liste";
  171. this.borrowsListTP.UseVisualStyleBackColor = true;
  172. //
  173. // BorrowsForm
  174. //
  175. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  176. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  177. this.ClientSize = new System.Drawing.Size(583, 315);
  178. this.Controls.Add(this.borrowsTC);
  179. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  180. this.Name = "BorrowsForm";
  181. this.ShowInTaskbar = false;
  182. this.Text = "Emprunts";
  183. ((System.ComponentModel.ISupportInitialize)(this.borrowsDGV)).EndInit();
  184. this.borrowsTC.ResumeLayout(false);
  185. this.borrowsListTP.ResumeLayout(false);
  186. this.ResumeLayout(false);
  187.  
  188. }
  189.  
  190. #endregion
  191.  
  192. private System.Windows.Forms.DataGridView borrowsDGV;
  193. private System.Windows.Forms.DataGridViewTextBoxColumn startDateTBC;
  194. private System.Windows.Forms.DataGridViewTextBoxColumn planDateTBC;
  195. private System.Windows.Forms.DataGridViewTextBoxColumn endDateTBC;
  196. private System.Windows.Forms.DataGridViewTextBoxColumn id;
  197. private System.Windows.Forms.DataGridViewTextBoxColumn title;
  198. private System.Windows.Forms.DataGridViewTextBoxColumn biblioItemName;
  199. private System.Windows.Forms.DataGridViewTextBoxColumn borrowerTBC;
  200. private System.Windows.Forms.TabControl borrowsTC;
  201. private System.Windows.Forms.TabPage borrowsListTP;
  202.  
  203.  
  204. }
  205. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/view/ 
IcôneNomTailleModification
IcôneNomTailleModification
| _ Répertoire parent0 octets1719387005 26/06/2024 09:30:05
| _wizards0 octets1541007184 31/10/2018 18:33:04
| _utils0 octets1541007184 31/10/2018 18:33:04
| _controls0 octets1541007178 31/10/2018 18:32:58
| _dialogs0 octets1541007183 31/10/2018 18:33:03
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/view/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .resx|.resxMediabrolForm.resx32.55 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .resx|.resxAWSForm.resx188.27 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .resx|.resxMainForm.resx6.07 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .resx|.resxConsoleForm.resx256.48 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .cs|.csAWSForm.Designer.cs23.45 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csActorForm.cs9.09 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csBiblioBrolAboutBox.Designer.cs11.22 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csAWSForm.cs7.68 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csBorrowsForm.cs1.66 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csCopy of MainForm.Designer.cs16.91 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .cs|.csConsoleForm.Designer.cs2.71 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .cs|.csWebServiceForm.cs6.34 Ko31/10/2018 18:32:29-refusé-
Afficher le fichier .resx|.resxOldMainForm.resx58.06 Ko31/10/2018 18:32:28-refusé-
Afficher le fichier .cs|.csCopy of MainForm.cs30.81 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .resx|.resxActorForm.resx44.98 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .resx|.resxBorrowsForm.resx73.4 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .cs|.csMainForm.cs37.45 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .resx|.resxWebServiceForm.resx9.71 Ko31/10/2018 18:32:29-refusé-
Afficher le fichier .cs|.csMainForm.Designer.cs7.16 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .cs|.csBorrowsForm.Designer.cs10.51 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csTasksForm.cs389 octets31/10/2018 18:32:28-refusé-
Afficher le fichier .resx|.resxBiblioBrolAboutBox.resx5.68 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csBrolForm.cs25.87 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .cs|.csWebServiceForm.Designer.cs13.12 Ko31/10/2018 18:32:29-refusé-
Afficher le fichier .cs|.csMediabrolForm.Designer.cs142.05 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .cs|.csConsoleForm.cs2.79 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .cs|.csBrolForm.designer.cs41.73 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .cs|.csMediabrolForm.cs31.94 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .cs|.csStatsForm.Designer.cs11.59 Ko31/10/2018 18:32:28-refusé-
Afficher le fichier .cs|.csActorForm.Designer.cs28.26 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csOldMainForm.Designer.cs83.98 Ko31/10/2018 18:32:28-refusé-
Afficher le fichier .cs|.csStatsForm.cs5 Ko31/10/2018 18:32:28-refusé-
Afficher le fichier .cs|.csBiblioBrolAboutBox.cs5.51 Ko31/10/2018 18:32:25-refusé-
Afficher le fichier .cs|.csOldMainForm.cs27.08 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .resx|.resxTasksForm.resx187.31 Ko31/10/2018 18:32:29-refusé-
Afficher le fichier .cs|.csTasksForm.Designer.cs2.26 Ko31/10/2018 18:32:28-refusé-
Afficher le fichier .resx|.resxBrolForm.resx45.52 Ko31/10/2018 18:32:26-refusé-
Afficher le fichier .resx|.resxCopy of MainForm.resx7.53 Ko31/10/2018 18:32:27-refusé-
Afficher le fichier .resx|.resxStatsForm.resx187.5 Ko31/10/2018 18:32:28-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//BorrowsForm.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.