SelectRoleForm.Designer.cs

Description du code

SelectRoleForm.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 SelectRoleForm
  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 Windows Form
  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.label1 = new System.Windows.Forms.Label();
  32. this.rolesLB = new System.Windows.Forms.ListBox();
  33. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  34. this.panel1 = new System.Windows.Forms.Panel();
  35. this.cancelBtn = new System.Windows.Forms.Button();
  36. this.okBtn = new System.Windows.Forms.Button();
  37. this.tableLayoutPanel1.SuspendLayout();
  38. this.panel1.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // label1
  42. //
  43. this.label1.Location = new System.Drawing.Point(239, 0);
  44. this.label1.Name = "label1";
  45. this.label1.Size = new System.Drawing.Size(267, 293);
  46. this.label1.TabIndex = 0;
  47. this.label1.Text = "Vous pouvez sélectionner un rôle parmi les rôles suivants.\r\nSi aucun rôle ne vous" +
  48. " convient, vous pouvez cliquer sur le bouton \"Annuler\".";
  49. //
  50. // rolesLB
  51. //
  52. this.rolesLB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  53. this.rolesLB.Location = new System.Drawing.Point(3, 3);
  54. this.rolesLB.Name = "rolesLB";
  55. this.rolesLB.Size = new System.Drawing.Size(223, 290);
  56. this.rolesLB.Sorted = true;
  57. this.rolesLB.TabIndex = 5;
  58. //
  59. // tableLayoutPanel1
  60. //
  61. this.tableLayoutPanel1.ColumnCount = 2;
  62. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  63. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 278F));
  64. this.tableLayoutPanel1.Controls.Add(this.label1, 1, 0);
  65. this.tableLayoutPanel1.Controls.Add(this.rolesLB, 0, 0);
  66. this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 1);
  67. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  68. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  69. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  70. this.tableLayoutPanel1.RowCount = 2;
  71. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  72. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38F));
  73. this.tableLayoutPanel1.Size = new System.Drawing.Size(514, 342);
  74. this.tableLayoutPanel1.TabIndex = 7;
  75. //
  76. // panel1
  77. //
  78. this.tableLayoutPanel1.SetColumnSpan(this.panel1, 2);
  79. this.panel1.Controls.Add(this.cancelBtn);
  80. this.panel1.Controls.Add(this.okBtn);
  81. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  82. this.panel1.Location = new System.Drawing.Point(3, 307);
  83. this.panel1.Name = "panel1";
  84. this.panel1.Size = new System.Drawing.Size(508, 32);
  85. this.panel1.TabIndex = 8;
  86. //
  87. // cancelBtn
  88. //
  89. this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  90. this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  91. this.cancelBtn.Location = new System.Drawing.Point(344, 2);
  92. this.cancelBtn.Name = "cancelBtn";
  93. this.cancelBtn.Size = new System.Drawing.Size(75, 23);
  94. this.cancelBtn.TabIndex = 8;
  95. this.cancelBtn.Text = "Annuler";
  96. this.cancelBtn.UseVisualStyleBackColor = true;
  97. this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click);
  98. //
  99. // okBtn
  100. //
  101. this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  102. this.okBtn.Location = new System.Drawing.Point(430, 3);
  103. this.okBtn.Name = "okBtn";
  104. this.okBtn.Size = new System.Drawing.Size(75, 23);
  105. this.okBtn.TabIndex = 7;
  106. this.okBtn.Text = "OK";
  107. this.okBtn.UseVisualStyleBackColor = true;
  108. this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
  109. //
  110. // SelectRoleForm
  111. //
  112. this.AcceptButton = this.okBtn;
  113. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  114. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  115. this.CancelButton = this.cancelBtn;
  116. this.ClientSize = new System.Drawing.Size(514, 342);
  117. this.Controls.Add(this.tableLayoutPanel1);
  118. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  119. this.Name = "SelectRoleForm";
  120. this.ShowInTaskbar = false;
  121. this.Text = "Sélection d\'un rôle";
  122. this.tableLayoutPanel1.ResumeLayout(false);
  123. this.panel1.ResumeLayout(false);
  124. this.ResumeLayout(false);
  125.  
  126. }
  127.  
  128. #endregion
  129.  
  130. private System.Windows.Forms.Label label1;
  131. private System.Windows.Forms.ListBox rolesLB;
  132. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  133. private System.Windows.Forms.Button okBtn;
  134. private System.Windows.Forms.Panel panel1;
  135. private System.Windows.Forms.Button cancelBtn;
  136. }
  137. }

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 octets1718514488 16/06/2024 07:08:08
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//SelectRoleForm.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.