EditRoleForm.Designer.cs

Description du code

EditRoleForm.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 EditRoleForm
  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. this.components = new System.ComponentModel.Container();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.personLbl = new System.Windows.Forms.Label();
  37. this.roleLbl = new System.Windows.Forms.Label();
  38. this.brolTitleLbl = new System.Windows.Forms.Label();
  39. this.okBtn = new System.Windows.Forms.Button();
  40. this.cancelBtn = new System.Windows.Forms.Button();
  41. this.infoTB = new be.gaudry.view.controls.TextBoxDragDrop(this.components);
  42. this.SuspendLayout();
  43. //
  44. // label1
  45. //
  46. this.label1.AutoSize = true;
  47. this.label1.Location = new System.Drawing.Point(12, 18);
  48. this.label1.Name = "label1";
  49. this.label1.Size = new System.Drawing.Size(58, 13);
  50. this.label1.TabIndex = 0;
  51. this.label1.Text = "Personne :";
  52. //
  53. // label2
  54. //
  55. this.label2.AutoSize = true;
  56. this.label2.Location = new System.Drawing.Point(12, 42);
  57. this.label2.Name = "label2";
  58. this.label2.Size = new System.Drawing.Size(35, 13);
  59. this.label2.TabIndex = 1;
  60. this.label2.Text = "Rôle :";
  61. //
  62. // label3
  63. //
  64. this.label3.AutoSize = true;
  65. this.label3.Location = new System.Drawing.Point(12, 65);
  66. this.label3.Name = "label3";
  67. this.label3.Size = new System.Drawing.Size(95, 13);
  68. this.label3.TabIndex = 2;
  69. this.label3.Text = "Titre de l\'ouvrage :";
  70. //
  71. // label4
  72. //
  73. this.label4.AutoSize = true;
  74. this.label4.Location = new System.Drawing.Point(12, 91);
  75. this.label4.Name = "label4";
  76. this.label4.Size = new System.Drawing.Size(40, 13);
  77. this.label4.TabIndex = 3;
  78. this.label4.Text = "Détail :";
  79. //
  80. // personLbl
  81. //
  82. this.personLbl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  83. | System.Windows.Forms.AnchorStyles.Right)));
  84. this.personLbl.Location = new System.Drawing.Point(76, 18);
  85. this.personLbl.Name = "personLbl";
  86. this.personLbl.Size = new System.Drawing.Size(451, 13);
  87. this.personLbl.TabIndex = 4;
  88. this.personLbl.Text = "...";
  89. //
  90. // roleLbl
  91. //
  92. this.roleLbl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  93. | System.Windows.Forms.AnchorStyles.Right)));
  94. this.roleLbl.Location = new System.Drawing.Point(53, 42);
  95. this.roleLbl.Name = "roleLbl";
  96. this.roleLbl.Size = new System.Drawing.Size(474, 13);
  97. this.roleLbl.TabIndex = 5;
  98. this.roleLbl.Text = "...";
  99. //
  100. // brolTitleLbl
  101. //
  102. this.brolTitleLbl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  103. | System.Windows.Forms.AnchorStyles.Right)));
  104. this.brolTitleLbl.Location = new System.Drawing.Point(113, 65);
  105. this.brolTitleLbl.Name = "brolTitleLbl";
  106. this.brolTitleLbl.Size = new System.Drawing.Size(414, 13);
  107. this.brolTitleLbl.TabIndex = 6;
  108. this.brolTitleLbl.Text = "...";
  109. //
  110. // okBtn
  111. //
  112. this.okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
  113. this.okBtn.Location = new System.Drawing.Point(452, 118);
  114. this.okBtn.Name = "okBtn";
  115. this.okBtn.Size = new System.Drawing.Size(75, 23);
  116. this.okBtn.TabIndex = 8;
  117. this.okBtn.Text = "OK";
  118. this.okBtn.UseVisualStyleBackColor = true;
  119. this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
  120. //
  121. // cancelBtn
  122. //
  123. this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  124. this.cancelBtn.Location = new System.Drawing.Point(371, 118);
  125. this.cancelBtn.Name = "cancelBtn";
  126. this.cancelBtn.Size = new System.Drawing.Size(75, 23);
  127. this.cancelBtn.TabIndex = 9;
  128. this.cancelBtn.Text = "Annuler";
  129. this.cancelBtn.UseVisualStyleBackColor = true;
  130. //
  131. // infoTB
  132. //
  133. this.infoTB.AllowDrop = true;
  134. this.infoTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  135. | System.Windows.Forms.AnchorStyles.Right)));
  136. this.infoTB.Location = new System.Drawing.Point(59, 91);
  137. this.infoTB.Name = "infoTB";
  138. this.infoTB.Size = new System.Drawing.Size(468, 20);
  139. this.infoTB.TabIndex = 10;
  140. //
  141. // EditRoleForm
  142. //
  143. this.AcceptButton = this.okBtn;
  144. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  145. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  146. this.CancelButton = this.cancelBtn;
  147. this.ClientSize = new System.Drawing.Size(539, 153);
  148. this.Controls.Add(this.infoTB);
  149. this.Controls.Add(this.cancelBtn);
  150. this.Controls.Add(this.okBtn);
  151. this.Controls.Add(this.brolTitleLbl);
  152. this.Controls.Add(this.roleLbl);
  153. this.Controls.Add(this.personLbl);
  154. this.Controls.Add(this.label4);
  155. this.Controls.Add(this.label3);
  156. this.Controls.Add(this.label2);
  157. this.Controls.Add(this.label1);
  158. this.Name = "EditRoleForm";
  159. this.ShowIcon = false;
  160. this.Text = "Edition d\'un rôle";
  161. this.ResumeLayout(false);
  162. this.PerformLayout();
  163.  
  164. }
  165.  
  166. #endregion
  167.  
  168. private System.Windows.Forms.Label label1;
  169. private System.Windows.Forms.Label label2;
  170. private System.Windows.Forms.Label label3;
  171. private System.Windows.Forms.Label label4;
  172. private System.Windows.Forms.Label personLbl;
  173. private System.Windows.Forms.Label roleLbl;
  174. private System.Windows.Forms.Label brolTitleLbl;
  175. private System.Windows.Forms.Button okBtn;
  176. private System.Windows.Forms.Button cancelBtn;
  177. private be.gaudry.view.controls.TextBoxDragDrop infoTB;
  178.  
  179. }
  180. }

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 octets1718698224 18/06/2024 10:10:24
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/EditRoleForm.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.