EditBorrowForm.Designer.cs

Description du code

EditBorrowForm.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.dialogs
  2. {
  3. partial class EditBorrowForm
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EditBorrowForm));
  32. this.startDateLbl = new System.Windows.Forms.Label();
  33. this.startDateDTP = new System.Windows.Forms.DateTimePicker();
  34. this.planDateDTP = new System.Windows.Forms.DateTimePicker();
  35. this.planDateLbl = new System.Windows.Forms.Label();
  36. this.endDateDTP = new System.Windows.Forms.DateTimePicker();
  37. this.endDateLbl = new System.Windows.Forms.Label();
  38. this.commentRTB = new System.Windows.Forms.RichTextBox();
  39. this.commentLbl = new System.Windows.Forms.Label();
  40. this.borrowerLbl = new System.Windows.Forms.Label();
  41. this.borrowerDisplayLbl = new System.Windows.Forms.Label();
  42. this.borrowerEditBtn = new System.Windows.Forms.Button();
  43. this.showDTPPlanDateBtn = new System.Windows.Forms.Button();
  44. this.showDTPEndDateBtn = new System.Windows.Forms.Button();
  45. this.OKBtn = new System.Windows.Forms.Button();
  46. this.cancelBtn = new System.Windows.Forms.Button();
  47. this.cleanDTPPlanDateBtn = new System.Windows.Forms.Button();
  48. this.cleanDTPEndDateBtn = new System.Windows.Forms.Button();
  49. this.refreshBtn = new System.Windows.Forms.Button();
  50. this.SuspendLayout();
  51. //
  52. // startDateLbl
  53. //
  54. this.startDateLbl.AutoSize = true;
  55. this.startDateLbl.Location = new System.Drawing.Point(24, 23);
  56. this.startDateLbl.Name = "startDateLbl";
  57. this.startDateLbl.Size = new System.Drawing.Size(84, 15);
  58. this.startDateLbl.TabIndex = 0;
  59. this.startDateLbl.Text = "Date de début";
  60. //
  61. // startDateDTP
  62. //
  63. this.startDateDTP.Location = new System.Drawing.Point(121, 19);
  64. this.startDateDTP.Name = "startDateDTP";
  65. this.startDateDTP.Size = new System.Drawing.Size(200, 20);
  66. this.startDateDTP.TabIndex = 1;
  67. //
  68. // planDateDTP
  69. //
  70. this.planDateDTP.Location = new System.Drawing.Point(121, 45);
  71. this.planDateDTP.Name = "planDateDTP";
  72. this.planDateDTP.Size = new System.Drawing.Size(200, 20);
  73. this.planDateDTP.TabIndex = 3;
  74. this.planDateDTP.Visible = false;
  75. //
  76. // planDateLbl
  77. //
  78. this.planDateLbl.AutoSize = true;
  79. this.planDateLbl.Location = new System.Drawing.Point(24, 49);
  80. this.planDateLbl.Name = "planDateLbl";
  81. this.planDateLbl.Size = new System.Drawing.Size(77, 15);
  82. this.planDateLbl.TabIndex = 2;
  83. this.planDateLbl.Text = "Retour prévu";
  84. //
  85. // endDateDTP
  86. //
  87. this.endDateDTP.Location = new System.Drawing.Point(121, 71);
  88. this.endDateDTP.Name = "endDateDTP";
  89. this.endDateDTP.Size = new System.Drawing.Size(200, 20);
  90. this.endDateDTP.TabIndex = 5;
  91. this.endDateDTP.Visible = false;
  92. //
  93. // endDateLbl
  94. //
  95. this.endDateLbl.AutoSize = true;
  96. this.endDateLbl.Location = new System.Drawing.Point(24, 75);
  97. this.endDateLbl.Name = "endDateLbl";
  98. this.endDateLbl.Size = new System.Drawing.Size(85, 15);
  99. this.endDateLbl.TabIndex = 4;
  100. this.endDateLbl.Text = "Date de retour";
  101. //
  102. // commentRTB
  103. //
  104. this.commentRTB.Location = new System.Drawing.Point(27, 121);
  105. this.commentRTB.MaxLength = 70;
  106. this.commentRTB.Name = "commentRTB";
  107. this.commentRTB.Size = new System.Drawing.Size(294, 84);
  108. this.commentRTB.TabIndex = 6;
  109. this.commentRTB.Text = "";
  110. this.commentRTB.TextChanged += new System.EventHandler(this.commentRTB_TextChanged);
  111. //
  112. // commentLbl
  113. //
  114. this.commentLbl.AutoSize = true;
  115. this.commentLbl.Location = new System.Drawing.Point(25, 105);
  116. this.commentLbl.Name = "commentLbl";
  117. this.commentLbl.Size = new System.Drawing.Size(82, 15);
  118. this.commentLbl.TabIndex = 7;
  119. this.commentLbl.Text = "Commentaire";
  120. //
  121. // borrowerLbl
  122. //
  123. this.borrowerLbl.AutoSize = true;
  124. this.borrowerLbl.Location = new System.Drawing.Point(56, 221);
  125. this.borrowerLbl.Name = "borrowerLbl";
  126. this.borrowerLbl.Size = new System.Drawing.Size(72, 15);
  127. this.borrowerLbl.TabIndex = 8;
  128. this.borrowerLbl.Text = "Emprunteur";
  129. //
  130. // borrowerDisplayLbl
  131. //
  132. this.borrowerDisplayLbl.AutoSize = true;
  133. this.borrowerDisplayLbl.Location = new System.Drawing.Point(123, 221);
  134. this.borrowerDisplayLbl.Name = "borrowerDisplayLbl";
  135. this.borrowerDisplayLbl.Size = new System.Drawing.Size(32, 15);
  136. this.borrowerDisplayLbl.TabIndex = 9;
  137. this.borrowerDisplayLbl.Text = "nom";
  138. //
  139. // borrowerEditBtn
  140. //
  141. this.borrowerEditBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolUsrEdit;
  142. this.borrowerEditBtn.Location = new System.Drawing.Point(27, 216);
  143. this.borrowerEditBtn.Name = "borrowerEditBtn";
  144. this.borrowerEditBtn.Size = new System.Drawing.Size(23, 23);
  145. this.borrowerEditBtn.TabIndex = 10;
  146. this.borrowerEditBtn.UseVisualStyleBackColor = true;
  147. this.borrowerEditBtn.Click += new System.EventHandler(this.borrowerEditBtn_Click);
  148. //
  149. // showDTPPlanDateBtn
  150. //
  151. this.showDTPPlanDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolCalendar;
  152. this.showDTPPlanDateBtn.Location = new System.Drawing.Point(121, 42);
  153. this.showDTPPlanDateBtn.Name = "showDTPPlanDateBtn";
  154. this.showDTPPlanDateBtn.Size = new System.Drawing.Size(25, 23);
  155. this.showDTPPlanDateBtn.TabIndex = 11;
  156. this.showDTPPlanDateBtn.UseVisualStyleBackColor = true;
  157. this.showDTPPlanDateBtn.Click += new System.EventHandler(this.showDTPPlanDateBtn_Click);
  158. //
  159. // showDTPEndDateBtn
  160. //
  161. this.showDTPEndDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolCalendar;
  162. this.showDTPEndDateBtn.Location = new System.Drawing.Point(121, 70);
  163. this.showDTPEndDateBtn.Name = "showDTPEndDateBtn";
  164. this.showDTPEndDateBtn.Size = new System.Drawing.Size(25, 23);
  165. this.showDTPEndDateBtn.TabIndex = 12;
  166. this.showDTPEndDateBtn.UseVisualStyleBackColor = true;
  167. this.showDTPEndDateBtn.Click += new System.EventHandler(this.showDTPEndDateBtn_Click);
  168. //
  169. // OKBtn
  170. //
  171. this.OKBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
  172. this.OKBtn.Location = new System.Drawing.Point(165, 257);
  173. this.OKBtn.Name = "OKBtn";
  174. this.OKBtn.Size = new System.Drawing.Size(75, 23);
  175. this.OKBtn.TabIndex = 13;
  176. this.OKBtn.Text = "OK";
  177. this.OKBtn.UseVisualStyleBackColor = true;
  178. this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
  179. //
  180. // cancelBtn
  181. //
  182. this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  183. this.cancelBtn.Location = new System.Drawing.Point(246, 257);
  184. this.cancelBtn.Name = "cancelBtn";
  185. this.cancelBtn.Size = new System.Drawing.Size(75, 23);
  186. this.cancelBtn.TabIndex = 14;
  187. this.cancelBtn.Text = "Annuler";
  188. this.cancelBtn.UseVisualStyleBackColor = true;
  189. this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click);
  190. //
  191. // cleanDTPPlanDateBtn
  192. //
  193. this.cleanDTPPlanDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDelBtn;
  194. this.cleanDTPPlanDateBtn.Location = new System.Drawing.Point(327, 44);
  195. this.cleanDTPPlanDateBtn.Name = "cleanDTPPlanDateBtn";
  196. this.cleanDTPPlanDateBtn.Size = new System.Drawing.Size(25, 23);
  197. this.cleanDTPPlanDateBtn.TabIndex = 15;
  198. this.cleanDTPPlanDateBtn.UseVisualStyleBackColor = true;
  199. this.cleanDTPPlanDateBtn.Visible = false;
  200. this.cleanDTPPlanDateBtn.Click += new System.EventHandler(this.cleanDTPPlanDateBtn_Click);
  201. //
  202. // cleanDTPEndDateBtn
  203. //
  204. this.cleanDTPEndDateBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolDelBtn;
  205. this.cleanDTPEndDateBtn.Location = new System.Drawing.Point(328, 70);
  206. this.cleanDTPEndDateBtn.Name = "cleanDTPEndDateBtn";
  207. this.cleanDTPEndDateBtn.Size = new System.Drawing.Size(25, 23);
  208. this.cleanDTPEndDateBtn.TabIndex = 16;
  209. this.cleanDTPEndDateBtn.UseVisualStyleBackColor = true;
  210. this.cleanDTPEndDateBtn.Visible = false;
  211. this.cleanDTPEndDateBtn.Click += new System.EventHandler(this.cleanDTPEndDateBtn_Click);
  212. //
  213. // refreshBtn
  214. //
  215. this.refreshBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolRefreshBtn;
  216. this.refreshBtn.Location = new System.Drawing.Point(327, 257);
  217. this.refreshBtn.Name = "refreshBtn";
  218. this.refreshBtn.Size = new System.Drawing.Size(23, 23);
  219. this.refreshBtn.TabIndex = 17;
  220. this.refreshBtn.UseVisualStyleBackColor = true;
  221. this.refreshBtn.Click += new System.EventHandler(this.refreshBtn_Click);
  222. //
  223. // EditBorrowForm
  224. //
  225. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  226. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  227. this.ClientSize = new System.Drawing.Size(365, 292);
  228. this.Controls.Add(this.refreshBtn);
  229. this.Controls.Add(this.cleanDTPEndDateBtn);
  230. this.Controls.Add(this.cleanDTPPlanDateBtn);
  231. this.Controls.Add(this.cancelBtn);
  232. this.Controls.Add(this.OKBtn);
  233. this.Controls.Add(this.showDTPEndDateBtn);
  234. this.Controls.Add(this.showDTPPlanDateBtn);
  235. this.Controls.Add(this.borrowerEditBtn);
  236. this.Controls.Add(this.borrowerDisplayLbl);
  237. this.Controls.Add(this.borrowerLbl);
  238. this.Controls.Add(this.commentLbl);
  239. this.Controls.Add(this.commentRTB);
  240. this.Controls.Add(this.endDateDTP);
  241. this.Controls.Add(this.endDateLbl);
  242. this.Controls.Add(this.planDateDTP);
  243. this.Controls.Add(this.planDateLbl);
  244. this.Controls.Add(this.startDateDTP);
  245. this.Controls.Add(this.startDateLbl);
  246. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  247. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  248. this.Name = "EditBorrowForm";
  249. this.Text = "Edition d\'un emprunt";
  250. this.ResumeLayout(false);
  251. this.PerformLayout();
  252.  
  253. }
  254.  
  255. #endregion
  256.  
  257. private System.Windows.Forms.Label startDateLbl;
  258. private System.Windows.Forms.DateTimePicker startDateDTP;
  259. private System.Windows.Forms.DateTimePicker planDateDTP;
  260. private System.Windows.Forms.Label planDateLbl;
  261. private System.Windows.Forms.DateTimePicker endDateDTP;
  262. private System.Windows.Forms.Label endDateLbl;
  263. private System.Windows.Forms.RichTextBox commentRTB;
  264. private System.Windows.Forms.Label commentLbl;
  265. private System.Windows.Forms.Label borrowerLbl;
  266. private System.Windows.Forms.Label borrowerDisplayLbl;
  267. private System.Windows.Forms.Button borrowerEditBtn;
  268. private System.Windows.Forms.Button showDTPPlanDateBtn;
  269. private System.Windows.Forms.Button showDTPEndDateBtn;
  270. private System.Windows.Forms.Button OKBtn;
  271. private System.Windows.Forms.Button cancelBtn;
  272. private System.Windows.Forms.Button cleanDTPPlanDateBtn;
  273. private System.Windows.Forms.Button cleanDTPEndDateBtn;
  274. private System.Windows.Forms.Button refreshBtn;
  275. }
  276. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/view/dialogs/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1718485863 15/06/2024 23:11:03
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/view/dialogs/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .resx|.resxAboutBibliobrolDialog.resx5.68 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csSelectSerieItemDialog.Designer.cs6.84 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csEditBrolForm.Designer.cs9.93 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csEditBorrowForm.Designer.cs13.58 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .resx|.resxEditRoleForm.resx5.68 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csBrolPropertiesForm.Designer.cs3.5 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csVersionForm.cs729 octets31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csAboutBibliobrolDialog.Designer.cs2.29 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseDialog.cs581 octets31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxImportedImagesForm.resx188.76 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csEditSeriesForm.Designer.cs8.55 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csEditBrolForm.cs3.37 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csCommentForm.cs1.47 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csEditRoleForm.Designer.cs7.86 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csMediabrolPropertiesForm.Designer.cs3.57 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxVersionForm.resx43.11 Ko31/10/2018 18:33:03-refusé-
Afficher le fichier .cs|.csPersonInfoForm.cs1.13 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csImportedImagesForm.Designer.cs5.86 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csSelectCategoryDialog.Designer.cs5.71 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxBrolPropertiesForm.resx5.87 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csSelectConsoleVerboseDialog.Designer.cs3.77 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxMediaBrolsByBrolForm.resx6.39 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxMediabrolPropertiesForm.resx5.87 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxSelectCategoryDialog.resx5.68 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csOptionsForm.cs7.57 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxSelectSerieItemDialog.resx5.68 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxCommentForm.resx187.31 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .resx|.resxPersonInfoForm.resx40.67 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csImportedImagesForm.cs914 octets31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csEditBorrowForm.cs4.83 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csPersonInfoForm.Designer.cs3.03 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csAboutBibliobrolDialog.cs416 octets31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csMediaBrolsByBrolForm.cs1.47 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csEditSeriesForm.cs2.2 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csSelectRoleForm.Designer.cs6.57 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxSelectConsoleVerboseDialog.resx5.68 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csSelectRoleForm.cs996 octets31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csInfobrolForm.cs404 octets31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csMediaBrolsByBrolForm.Designer.cs6.86 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxDiaSetActorRole.resx5.68 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csSelectCategoryDialog.cs2.68 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csDiaSetActorRole.cs6.51 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .resx|.resxSelectRoleForm.resx5.68 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csVersionForm.Designer.cs7.25 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csSelectSerieItemDialog.cs1.92 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxOptionsForm.resx38.91 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csEditRoleForm.cs1.35 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .cs|.csCommentForm.Designer.cs3.09 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csUserForm.Designer.cs65.04 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxEditBorrowForm.resx187.31 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csDiaSetActorRole.Designer.cs7.98 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .resx|.resxEditBrolForm.resx11.3 Ko31/10/2018 18:33:00-refusé-
Afficher le fichier .resx|.resxUserForm.resx42.02 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .cs|.csBrolPropertiesForm.cs652 octets31/10/2018 18:32:58-refusé-
Afficher le fichier .resx|.resxInfobrolForm.resx40.95 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csUserForm.cs9.99 Ko31/10/2018 18:33:02-refusé-
Afficher le fichier .resx|.resxDiaSelectActor.resx5.68 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csDiaSelectActor.cs1.87 Ko31/10/2018 18:32:58-refusé-
Afficher le fichier .cs|.csDiaSelectActor.Designer.cs4.15 Ko31/10/2018 18:32:59-refusé-
Afficher le fichier .cs|.csOptionsForm.Designer.cs18.22 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csMediabrolPropertiesForm.cs690 octets31/10/2018 18:33:01-refusé-
Afficher le fichier .cs|.csInfobrolForm.Designer.cs2.46 Ko31/10/2018 18:33:01-refusé-
Afficher le fichier .resx|.resxEditSeriesForm.resx38.91 Ko31/10/2018 18:33:00-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/dialogs//EditBorrowForm.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.