ScrollablePictureBoxUserControl. Designer. cs

Description du code

ScrollablePictureBoxUserControl.Designer.cs est un fichier du projet BrolDev.
Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.

Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.

Code source ou contenu du fichier

  1. namespace be.gaudry.view.controls
  2. {
  3. partial class ScrollablePictureBoxUserControl
  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 de composants
  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.thumbPanel = new System.Windows.Forms.Panel();
  32. this.thumbPB = new System.Windows.Forms.PictureBox();
  33. this.thumbSizeLbl = new System.Windows.Forms.Label();
  34. this.zoomThumbTrkB = new System.Windows.Forms.TrackBar();
  35. this.thumbPanel.SuspendLayout();
  36. ((System.ComponentModel.ISupportInitialize)(this.thumbPB)).BeginInit();
  37. ((System.ComponentModel.ISupportInitialize)(this.zoomThumbTrkB)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // thumbPanel
  41. //
  42. this.thumbPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  43. | System.Windows.Forms.AnchorStyles.Left)
  44. | System.Windows.Forms.AnchorStyles.Right)));
  45. this.thumbPanel.AutoScroll = true;
  46. this.thumbPanel.Controls.Add(this.thumbPB);
  47. this.thumbPanel.Location = new System.Drawing.Point(0, 0);
  48. this.thumbPanel.Margin = new System.Windows.Forms.Padding(0);
  49. this.thumbPanel.Name = "thumbPanel";
  50. this.thumbPanel.Size = new System.Drawing.Size(160, 200);
  51. this.thumbPanel.TabIndex = 99;
  52. this.thumbPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.thumbPanel_Paint);
  53. //
  54. // thumbPB
  55. //
  56. this.thumbPB.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.thumbPB.Location = new System.Drawing.Point(0, 0);
  58. this.thumbPB.Name = "thumbPB";
  59. this.thumbPB.Size = new System.Drawing.Size(160, 200);
  60. this.thumbPB.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  61. this.thumbPB.TabIndex = 0;
  62. this.thumbPB.TabStop = false;
  63. this.thumbPB.Paint += new System.Windows.Forms.PaintEventHandler(this.thumbPB_Paint);
  64. //
  65. // thumbSizeLbl
  66. //
  67. this.thumbSizeLbl.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  68. this.thumbSizeLbl.AutoSize = true;
  69. this.thumbSizeLbl.Location = new System.Drawing.Point(12, 251);
  70. this.thumbSizeLbl.Name = "thumbSizeLbl";
  71. this.thumbSizeLbl.Size = new System.Drawing.Size(35, 13);
  72. this.thumbSizeLbl.TabIndex = 101;
  73. this.thumbSizeLbl.Text = "label1";
  74. this.thumbSizeLbl.Visible = false;
  75. //
  76. // zoomThumbTrkB
  77. //
  78. this.zoomThumbTrkB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  79. | System.Windows.Forms.AnchorStyles.Right)));
  80. this.zoomThumbTrkB.LargeChange = 25;
  81. this.zoomThumbTrkB.Location = new System.Drawing.Point(1, 203);
  82. this.zoomThumbTrkB.Maximum = 210;
  83. this.zoomThumbTrkB.Minimum = 5;
  84. this.zoomThumbTrkB.Name = "zoomThumbTrkB";
  85. this.zoomThumbTrkB.Size = new System.Drawing.Size(156, 45);
  86. this.zoomThumbTrkB.SmallChange = 10;
  87. this.zoomThumbTrkB.TabIndex = 100;
  88. this.zoomThumbTrkB.TickFrequency = 10;
  89. this.zoomThumbTrkB.Value = 100;
  90. this.zoomThumbTrkB.Visible = false;
  91. this.zoomThumbTrkB.Scroll += new System.EventHandler(this.zoomThumbTrkB_Scroll);
  92. //
  93. // ScrollablePictureBoxUserControl
  94. //
  95. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  96. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  97. this.Controls.Add(this.thumbSizeLbl);
  98. this.Controls.Add(this.zoomThumbTrkB);
  99. this.Controls.Add(this.thumbPanel);
  100. this.Margin = new System.Windows.Forms.Padding(0);
  101. this.Name = "ScrollablePictureBoxUserControl";
  102. this.Size = new System.Drawing.Size(160, 277);
  103. this.thumbPanel.ResumeLayout(false);
  104. ((System.ComponentModel.ISupportInitialize)(this.thumbPB)).EndInit();
  105. ((System.ComponentModel.ISupportInitialize)(this.zoomThumbTrkB)).EndInit();
  106. this.ResumeLayout(false);
  107. this.PerformLayout();
  108.  
  109. }
  110.  
  111. #endregion
  112.  
  113. private System.Windows.Forms.Panel thumbPanel;
  114. private System.Windows.Forms.Label thumbSizeLbl;
  115. private System.Windows.Forms.TrackBar zoomThumbTrkB;
  116. private System.Windows.Forms.PictureBox thumbPB;
  117. }
  118. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1714609882 02/05/2024 02:31:22
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/controls/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csToolBarHomeControl.Designer.cs7.41 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.Designer.cs6.79 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanel.Designer.cs1.19 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.cs7.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csXPGroupBox.cs15.83 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.Designer.cs7.85 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csToolBarHomeControl.cs2.32 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csVersionControl.Designer.cs4.09 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csWizardUserControl.cs2.01 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxWizardXpUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.Designer.cs5.92 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxChartControl.resx6.58 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csHeaderPanel.cs35.93 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csIWizardUC.cs2.35 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxAboutUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.cs8.59 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.cs5.46 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxXPGroupBox.resx17.7 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csHeaderPanelNativeMethods.cs21.09 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.cs6.99 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csTextBoxDragDrop.Designer.cs1.11 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxSystemInfoControl.resx6.22 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csSystemInfoControl.Designer.cs4.79 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxHeaderPanel.resx5.85 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.cs5.55 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csBrolBoxUserControl.cs4.7 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxDGVLayoutOptionsControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxWizardUserControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csUpdateControl.cs7.55 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.cs2.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csVersionControl.cs463 octets31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxBrolBoxUserControl.resx5.68 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csAboutUserControl.cs6.75 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxToolBarManagerControl.resx5.88 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csToolBarManagerControl.Designer.cs10.66 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIToolBarControl.cs1.07 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csWizardXpUserControl.cs8.11 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csImageCombo.cs15.49 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csAboutUserControl.Designer.cs12.31 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .resx|.resxScrollablePictureBoxUserControl.resx5.68 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csScrollablePictureBoxUserControl.Designer.cs5.64 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxVersionControl.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csChartControl.Designer.cs18.45 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csUpdateControl.Designer.cs3.92 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .resx|.resxUpdateControl.resx5.68 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csChartControl.cs15.11 Ko31/10/2018 18:33:10-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsControl.Designer.cs17.39 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .cs|.csToolStrip.cs1.06 Ko31/10/2018 18:33:12-refusé-
Afficher le fichier .cs|.csIconList.Designer.cs1.1 Ko31/10/2018 18:33:11-refusé-
Afficher le fichier .resx|.resxToolBarHomeControl.resx48.51 Ko31/10/2018 18:33:12-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-broldev-source-rf-view/controls/ScrollablePictureBoxUserControl.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.