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.

ToolBarHelpStartControl.cs

Description du code

ToolBarHelpStartControl.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. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using be.gaudry.view.controls;
  9.  
  10. namespace be.gaudry.bibliobrol.view.controls.toolBars
  11. {
  12. public partial class ToolBarHelpStartControl : UserControl, IToolBarControl
  13. {
  14. #region declarations and constructors
  15. public ToolBarHelpStartControl()
  16. {
  17. InitializeComponent();
  18. }
  19. #endregion
  20.  
  21. #region properties
  22. [
  23. Category("Help"),
  24. Browsable(true),
  25. Description("Event called on click on the onlineHelp link")
  26. ]
  27. public event System.EventHandler onShowOnLineHelp_Click;
  28. [
  29. Category("Help"),
  30. Browsable(true),
  31. Description("Event called on click on the sources link")
  32. ]
  33. public event System.EventHandler onShowSources_Click;
  34. [
  35. Category("Help"),
  36. Browsable(true),
  37. Description("Event called on click on the options link")
  38. ]
  39. public event System.EventHandler onShowOptions_Click;
  40. #endregion
  41.  
  42. #region private methods
  43. private void onLineHelpLL_Click(object sender, EventArgs e)
  44. {
  45. if (onShowOnLineHelp_Click != null)
  46. {
  47. onShowOnLineHelp_Click(sender, e);
  48. }
  49. }
  50.  
  51. private void sourcesLL_Click(object sender, EventArgs e)
  52. {
  53. if (onShowSources_Click != null)
  54. {
  55. onShowSources_Click(sender, e);
  56. }
  57. }
  58.  
  59. private void optionsLL_Click(object sender, EventArgs e)
  60. {
  61. if (onShowOptions_Click != null)
  62. {
  63. onShowOptions_Click(sender, e);
  64. }
  65. }
  66. #endregion
  67.  
  68. #region IToolBarControl Members
  69.  
  70. public string ToolBarText
  71. {
  72. get
  73. {
  74. return "Installation";
  75. }
  76. }
  77.  
  78. public Image ToolBarImage
  79. {
  80. get
  81. {
  82. Image img = setupHP.PanelIcon.ToBitmap();
  83. return img;
  84. }
  85. }
  86.  
  87. #endregion
  88. }
  89. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/toolBars/ 
IcôneNomTailleModification
Pas de sous-répertoires.
IcôneNomTailleModification
| _ Répertoire parent0 octets1719842349 01/07/2024 15:59:09
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/view/controls/toolBars/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csToolBarHelpStartControl.cs2.26 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .cs|.csToolBarConsoleControl.Designer.cs9.06 Ko31/10/2018 18:33:19-refusé-
Afficher le fichier .cs|.csToolBarHelpPersonControl.Designer.cs8.22 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .cs|.csToolBarHelpStartControl.Designer.cs9.63 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .resx|.resxToolBarHelpPersonControl.resx156.6 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .resx|.resxToolBarShortCutsControl.resx6.07 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .cs|.csToolBarShortCutsControl.Designer.cs11.97 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .resx|.resxToolBarConsoleControl.resx154.56 Ko31/10/2018 18:33:19-refusé-
Afficher le fichier .cs|.csToolBarHelpPersonControl.cs2.26 Ko31/10/2018 18:33:19-refusé-
Afficher le fichier .cs|.csToolBarShortCutsControl.cs4.5 Ko31/10/2018 18:33:20-refusé-
Afficher le fichier .cs|.csToolBarConsoleControl.cs2.69 Ko31/10/2018 18:33:19-refusé-
Afficher le fichier .resx|.resxToolBarHelpStartControl.resx76.95 Ko31/10/2018 18:33:20-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/controls/toolBars//ToolBarHelpStartControl.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.