SelectSerieItemDialog. Designer. cs

Description du code

SelectSerieItemDialog.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 SelectSerieItemDialog
  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.seriesListBox = new System.Windows.Forms.ListBox();
  32. this.rankTB = new System.Windows.Forms.TextBox();
  33. this.seriesLbl = new System.Windows.Forms.Label();
  34. this.rankLbl = new System.Windows.Forms.Label();
  35. this.okBtn = new System.Windows.Forms.Button();
  36. this.cancelBtn = new System.Windows.Forms.Button();
  37. this.SuspendLayout();
  38. //
  39. // seriesListBox
  40. //
  41. this.seriesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  42. | System.Windows.Forms.AnchorStyles.Left)
  43. | System.Windows.Forms.AnchorStyles.Right)));
  44. this.seriesListBox.DisplayMember = "name";
  45. this.seriesListBox.FormattingEnabled = true;
  46. this.seriesListBox.Location = new System.Drawing.Point(12, 38);
  47. this.seriesListBox.Name = "seriesListBox";
  48. this.seriesListBox.Size = new System.Drawing.Size(230, 303);
  49. this.seriesListBox.Sorted = true;
  50. this.seriesListBox.TabIndex = 1;
  51. this.seriesListBox.ValueMember = "id";
  52. //
  53. // rankTB
  54. //
  55. this.rankTB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  56. this.rankTB.Location = new System.Drawing.Point(248, 38);
  57. this.rankTB.Name = "rankTB";
  58. this.rankTB.Size = new System.Drawing.Size(170, 20);
  59. this.rankTB.TabIndex = 2;
  60. //
  61. // seriesLbl
  62. //
  63. this.seriesLbl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  64. | System.Windows.Forms.AnchorStyles.Right)));
  65. this.seriesLbl.Location = new System.Drawing.Point(12, 4);
  66. this.seriesLbl.Name = "seriesLbl";
  67. this.seriesLbl.Size = new System.Drawing.Size(230, 23);
  68. this.seriesLbl.TabIndex = 3;
  69. this.seriesLbl.Text = "Séries :";
  70. this.seriesLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  71. //
  72. // rankLbl
  73. //
  74. this.rankLbl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  75. | System.Windows.Forms.AnchorStyles.Right)));
  76. this.rankLbl.Location = new System.Drawing.Point(247, 4);
  77. this.rankLbl.Name = "rankLbl";
  78. this.rankLbl.Size = new System.Drawing.Size(171, 23);
  79. this.rankLbl.TabIndex = 4;
  80. this.rankLbl.Text = "Identifiant (facultatif) :";
  81. this.rankLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  82. //
  83. // okBtn
  84. //
  85. this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  86. this.okBtn.DialogResult = System.Windows.Forms.DialogResult.OK;
  87. this.okBtn.Location = new System.Drawing.Point(262, 325);
  88. this.okBtn.Name = "okBtn";
  89. this.okBtn.Size = new System.Drawing.Size(75, 23);
  90. this.okBtn.TabIndex = 5;
  91. this.okBtn.Text = "&OK";
  92. this.okBtn.UseVisualStyleBackColor = true;
  93. //
  94. // cancelBtn
  95. //
  96. this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  97. this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  98. this.cancelBtn.Location = new System.Drawing.Point(343, 325);
  99. this.cancelBtn.Name = "cancelBtn";
  100. this.cancelBtn.Size = new System.Drawing.Size(75, 23);
  101. this.cancelBtn.TabIndex = 6;
  102. this.cancelBtn.Text = "&Annuler";
  103. this.cancelBtn.UseVisualStyleBackColor = true;
  104. //
  105. // SelectSerieItemDialog
  106. //
  107. this.AcceptButton = this.okBtn;
  108. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  109. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  110. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  111. this.CancelButton = this.cancelBtn;
  112. this.ClientSize = new System.Drawing.Size(430, 360);
  113. this.ControlBox = false;
  114. this.Controls.Add(this.cancelBtn);
  115. this.Controls.Add(this.okBtn);
  116. this.Controls.Add(this.rankLbl);
  117. this.Controls.Add(this.seriesLbl);
  118. this.Controls.Add(this.rankTB);
  119. this.Controls.Add(this.seriesListBox);
  120. this.KeyPreview = true;
  121. this.Name = "SelectSerieItemDialog";
  122. this.ShowInTaskbar = false;
  123. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
  124. this.Text = "Sélection d\'une série";
  125. this.TopMost = true;
  126. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SelectSerieItemDialog_FormClosed);
  127. this.Load += new System.EventHandler(this.SelectSerieItemDialog_Load);
  128. this.ResumeLayout(false);
  129. this.PerformLayout();
  130.  
  131. }
  132.  
  133. #endregion
  134.  
  135. private System.Windows.Forms.ListBox seriesListBox;
  136. private System.Windows.Forms.TextBox rankTB;
  137. private System.Windows.Forms.Label seriesLbl;
  138. private System.Windows.Forms.Label rankLbl;
  139. private System.Windows.Forms.Button okBtn;
  140. private System.Windows.Forms.Button cancelBtn;
  141. }
  142. }

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 octets1715994311 18/05/2024 03:05:11
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/SelectSerieItemDialog.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.