CustomOpenResultFileDialog. Designer. cs

Description du code

CustomOpenResultFileDialog.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.dialogs
  2. {
  3. partial class CustomOpenResultFileDialog
  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.components = new System.ComponentModel.Container();
  32. this.okBtn = new System.Windows.Forms.Button();
  33. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  34. this.openRB = new System.Windows.Forms.RadioButton();
  35. this.openWithRB = new System.Windows.Forms.RadioButton();
  36. this.openFolderRB = new System.Windows.Forms.RadioButton();
  37. this.closeRB = new System.Windows.Forms.RadioButton();
  38. this.infosLbl = new System.Windows.Forms.Label();
  39. this.actionGB = new System.Windows.Forms.GroupBox();
  40. this.actionGB.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // okBtn
  44. //
  45. this.okBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  46. this.okBtn.Location = new System.Drawing.Point(187, 185);
  47. this.okBtn.Name = "okBtn";
  48. this.okBtn.Size = new System.Drawing.Size(75, 23);
  49. this.okBtn.TabIndex = 0;
  50. this.okBtn.Text = "OK";
  51. this.toolTip1.SetToolTip(this.okBtn, "Effectuer l\'action sélectionnée");
  52. this.okBtn.UseVisualStyleBackColor = true;
  53. this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
  54. //
  55. // openRB
  56. //
  57. this.openRB.AutoSize = true;
  58. this.openRB.Location = new System.Drawing.Point(6, 17);
  59. this.openRB.Name = "openRB";
  60. this.openRB.Size = new System.Drawing.Size(53, 17);
  61. this.openRB.TabIndex = 2;
  62. this.openRB.Text = "Ouvrir";
  63. this.toolTip1.SetToolTip(this.openRB, "Ouvrir avec l\'éditeur par défaut...");
  64. this.openRB.UseVisualStyleBackColor = true;
  65. //
  66. // openWithRB
  67. //
  68. this.openWithRB.AutoSize = true;
  69. this.openWithRB.Location = new System.Drawing.Point(6, 40);
  70. this.openWithRB.Name = "openWithRB";
  71. this.openWithRB.Size = new System.Drawing.Size(89, 17);
  72. this.openWithRB.TabIndex = 4;
  73. this.openWithRB.Text = "Ouvrir avec...";
  74. this.toolTip1.SetToolTip(this.openWithRB, "Sélectionner l\'application pour ouvrir le fichier...");
  75. this.openWithRB.UseVisualStyleBackColor = true;
  76. //
  77. // openFolderRB
  78. //
  79. this.openFolderRB.AutoSize = true;
  80. this.openFolderRB.Location = new System.Drawing.Point(6, 63);
  81. this.openFolderRB.Name = "openFolderRB";
  82. this.openFolderRB.Size = new System.Drawing.Size(111, 17);
  83. this.openFolderRB.TabIndex = 5;
  84. this.openFolderRB.Text = "Ouvrir le répertoire";
  85. this.toolTip1.SetToolTip(this.openFolderRB, "Ouvrir le répertoire qui contient le fichier...");
  86. this.openFolderRB.UseVisualStyleBackColor = true;
  87. this.openFolderRB.Visible = false;
  88. //
  89. // closeRB
  90. //
  91. this.closeRB.AutoSize = true;
  92. this.closeRB.Checked = true;
  93. this.closeRB.Location = new System.Drawing.Point(6, 86);
  94. this.closeRB.Name = "closeRB";
  95. this.closeRB.Size = new System.Drawing.Size(120, 17);
  96. this.closeRB.TabIndex = 6;
  97. this.closeRB.TabStop = true;
  98. this.closeRB.Text = "Fermer cette fenêtre";
  99. this.toolTip1.SetToolTip(this.closeRB, "Ouvrir le répertoire qui contient le fichier...");
  100. this.closeRB.UseVisualStyleBackColor = true;
  101. //
  102. // infosLbl
  103. //
  104. this.infosLbl.AutoSize = true;
  105. this.infosLbl.Location = new System.Drawing.Point(12, 22);
  106. this.infosLbl.Name = "infosLbl";
  107. this.infosLbl.Size = new System.Drawing.Size(244, 13);
  108. this.infosLbl.TabIndex = 3;
  109. this.infosLbl.Text = "Désirez-vous effectuer une action avec le fichier ?";
  110. this.infosLbl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  111. //
  112. // actionGB
  113. //
  114. this.actionGB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  115. | System.Windows.Forms.AnchorStyles.Right)));
  116. this.actionGB.Controls.Add(this.openFolderRB);
  117. this.actionGB.Controls.Add(this.closeRB);
  118. this.actionGB.Controls.Add(this.openRB);
  119. this.actionGB.Controls.Add(this.openWithRB);
  120. this.actionGB.Location = new System.Drawing.Point(12, 49);
  121. this.actionGB.Name = "actionGB";
  122. this.actionGB.Size = new System.Drawing.Size(244, 125);
  123. this.actionGB.TabIndex = 7;
  124. this.actionGB.TabStop = false;
  125. this.actionGB.Text = "Action";
  126. //
  127. // CustomOpenResultFileDialog
  128. //
  129. this.AcceptButton = this.okBtn;
  130. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  131. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  132. this.ClientSize = new System.Drawing.Size(274, 220);
  133. this.Controls.Add(this.actionGB);
  134. this.Controls.Add(this.infosLbl);
  135. this.Controls.Add(this.okBtn);
  136. this.MinimumSize = new System.Drawing.Size(274, 256);
  137. this.Name = "CustomOpenResultFileDialog";
  138. this.Text = "Fichier";
  139. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CustomOpenResultFileDialog_FormClosing);
  140. this.Load += new System.EventHandler(this.CustomOpenResultFile_Load);
  141. this.actionGB.ResumeLayout(false);
  142. this.actionGB.PerformLayout();
  143. this.ResumeLayout(false);
  144. this.PerformLayout();
  145.  
  146. }
  147.  
  148. #endregion
  149.  
  150. private System.Windows.Forms.Button okBtn;
  151. private System.Windows.Forms.ToolTip toolTip1;
  152. private System.Windows.Forms.RadioButton openRB;
  153. private System.Windows.Forms.Label infosLbl;
  154. private System.Windows.Forms.RadioButton openWithRB;
  155. private System.Windows.Forms.RadioButton openFolderRB;
  156. private System.Windows.Forms.RadioButton closeRB;
  157. private System.Windows.Forms.GroupBox actionGB;
  158. }
  159. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/dialogs/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1717007444 29/05/2024 20:30:44
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/broldev/src/view/dialogs/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csTrackIntParameterDialog.cs4.2 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csHSLDialog.cs8.25 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csExceptionDialog.cs3.58 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csVersionForm.Designer.cs6.72 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxCriticalExceptionDialog.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxTrackFloatParameterDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsDialog.designer.cs5.12 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csExceptionDialog.Designer.cs6.2 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxCustomOpenResultFileDialog.resx6.06 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxVersionForm.resx42.91 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csAboutBrolDevlDialog.Designer.cs2.24 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxDGVLayoutOptionsDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxInfobrolForm.resx40.95 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csTrackFloatParameterDialog.cs2.41 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxUpdateDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csCustomOpenResultFileDialog.Designer.cs7.44 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csCriticalExceptionDialog.Designer.cs8.88 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csTrackIntParameterDialog.Designer.cs8.02 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csDGVLayoutOptionsDialog.cs1.05 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csUpdateDialog.Designer.cs2.02 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csUpdateDialog.cs360 octets31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csAboutBrolDevlDialog.cs230 octets31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csCustomOpenResultFileDialog.cs4.84 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .resx|.resxExceptionDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxHSLDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .resx|.resxAboutBrolDevlDialog.resx5.68 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csTrackFloatParameterDialog.Designer.cs6.31 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxResizeDialog.resx5.68 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csHSLDialog.Designer.cs14.28 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csResizeDialog.cs1.09 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csCriticalExceptionDialog.cs1.87 Ko31/10/2018 18:33:13-refusé-
Afficher le fichier .cs|.csVersionForm.cs1.16 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .resx|.resxTrackIntParameterDialog.resx5.68 Ko31/10/2018 18:33:15-refusé-
Afficher le fichier .cs|.csInfobrolForm.cs198 octets31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csInfobrolForm.Designer.cs2.45 Ko31/10/2018 18:33:14-refusé-
Afficher le fichier .cs|.csResizeDialog.Designer.cs5.3 Ko31/10/2018 18:33:14-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/dialogs//CustomOpenResultFileDialog.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.