No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

MediaBrolsByBrolForm. Designer. cs

Description du code

MediaBrolsByBrolForm.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 MediaBrolsByBrolForm
  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.mediabrolsDGV = new System.Windows.Forms.DataGridView();
  32. this.id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.name = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.owner = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.insertionDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  37. this.brolTitleLbl = new System.Windows.Forms.Label();
  38. ((System.ComponentModel.ISupportInitialize)(this.mediabrolsDGV)).BeginInit();
  39. this.tableLayoutPanel1.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // mediabrolsDGV
  43. //
  44. this.mediabrolsDGV.AllowUserToAddRows = false;
  45. this.mediabrolsDGV.AllowUserToDeleteRows = false;
  46. this.mediabrolsDGV.AllowUserToOrderColumns = true;
  47. this.mediabrolsDGV.BackgroundColor = System.Drawing.SystemColors.Control;
  48. this.mediabrolsDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  49. this.id,
  50. this.name,
  51. this.owner,
  52. this.insertionDate});
  53. this.mediabrolsDGV.Dock = System.Windows.Forms.DockStyle.Fill;
  54. this.mediabrolsDGV.GridColor = System.Drawing.Color.SlateGray;
  55. this.mediabrolsDGV.Location = new System.Drawing.Point(3, 53);
  56. this.mediabrolsDGV.Name = "mediabrolsDGV";
  57. this.mediabrolsDGV.ReadOnly = true;
  58. this.mediabrolsDGV.RowHeadersVisible = false;
  59. this.mediabrolsDGV.Size = new System.Drawing.Size(623, 122);
  60. this.mediabrolsDGV.TabIndex = 2;
  61. //
  62. // id
  63. //
  64. this.id.DataPropertyName = "id";
  65. this.id.HeaderText = "id";
  66. this.id.Name = "id";
  67. this.id.ReadOnly = true;
  68. this.id.Visible = false;
  69. //
  70. // name
  71. //
  72. this.name.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  73. this.name.DataPropertyName = "name";
  74. this.name.HeaderText = "Nom";
  75. this.name.Name = "name";
  76. this.name.ReadOnly = true;
  77. //
  78. // owner
  79. //
  80. this.owner.DataPropertyName = "owner";
  81. this.owner.HeaderText = "Propriétaire";
  82. this.owner.Name = "owner";
  83. this.owner.ReadOnly = true;
  84. this.owner.Width = 150;
  85. //
  86. // insertionDate
  87. //
  88. this.insertionDate.DataPropertyName = "insertionDate";
  89. this.insertionDate.HeaderText = "Date";
  90. this.insertionDate.Name = "insertionDate";
  91. this.insertionDate.ReadOnly = true;
  92. this.insertionDate.Width = 75;
  93. //
  94. // tableLayoutPanel1
  95. //
  96. this.tableLayoutPanel1.ColumnCount = 1;
  97. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  98. this.tableLayoutPanel1.Controls.Add(this.mediabrolsDGV, 0, 1);
  99. this.tableLayoutPanel1.Controls.Add(this.brolTitleLbl, 0, 0);
  100. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  101. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  102. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  103. this.tableLayoutPanel1.RowCount = 2;
  104. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
  105. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
  106. this.tableLayoutPanel1.Size = new System.Drawing.Size(629, 178);
  107. this.tableLayoutPanel1.TabIndex = 3;
  108. //
  109. // brolTitleLbl
  110. //
  111. this.brolTitleLbl.AutoSize = true;
  112. this.brolTitleLbl.Dock = System.Windows.Forms.DockStyle.Fill;
  113. this.brolTitleLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  114. this.brolTitleLbl.Location = new System.Drawing.Point(3, 0);
  115. this.brolTitleLbl.Name = "brolTitleLbl";
  116. this.brolTitleLbl.Size = new System.Drawing.Size(623, 50);
  117. this.brolTitleLbl.TabIndex = 3;
  118. this.brolTitleLbl.Text = "label1";
  119. this.brolTitleLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  120. //
  121. // MediaBrolsByBrolForm
  122. //
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.ClientSize = new System.Drawing.Size(629, 178);
  126. this.Controls.Add(this.tableLayoutPanel1);
  127. this.Name = "MediaBrolsByBrolForm";
  128. this.ShowIcon = false;
  129. this.Text = "Exemplaires associés à cet ouvrage";
  130. ((System.ComponentModel.ISupportInitialize)(this.mediabrolsDGV)).EndInit();
  131. this.tableLayoutPanel1.ResumeLayout(false);
  132. this.tableLayoutPanel1.PerformLayout();
  133. this.ResumeLayout(false);
  134.  
  135. }
  136.  
  137. #endregion
  138.  
  139. private System.Windows.Forms.DataGridView mediabrolsDGV;
  140. private System.Windows.Forms.DataGridViewTextBoxColumn id;
  141. private System.Windows.Forms.DataGridViewTextBoxColumn name;
  142. private System.Windows.Forms.DataGridViewTextBoxColumn owner;
  143. private System.Windows.Forms.DataGridViewTextBoxColumn insertionDate;
  144. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  145. private System.Windows.Forms.Label brolTitleLbl;
  146. }
  147. }

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 octets1719429292 26/06/2024 21:14:52
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.

English translation

You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.

If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.

Thank you in advance.

Document created the 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-bibliobrol-source-rf-view/dialogs/MediaBrolsByBrolForm.Designer.cs.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.