ToolBarShortCutsControl.cs
Description du code
ToolBarShortCutsControl.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
Code c# (ToolBarShortCutsControl.cs) (168 lignes)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using be.gaudry.view.controls; namespace be.gaudry.bibliobrol.view.controls.toolBars { public partial class ToolBarShortCutsControl : UserControl, IToolBarControl { #region declarations and constructors public ToolBarShortCutsControl() { InitializeComponent(); } #endregion #region properties [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ManageActors button") ] public event System.EventHandler onManageActors_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ManageBrols button") ] public event System.EventHandler onManageBrols_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ManageMediaBrols button") ] public event System.EventHandler onManageMediaBrols_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ShowStats button") ] public event System.EventHandler onShowStats_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ShowExplorer button") ] public event System.EventHandler onShowExplorer_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ShowPhotobrol button") ] public event System.EventHandler onShowPhotobrol_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the ShowWelcomeWizard button") ] public event System.EventHandler onShowWelcomeWizard_Click; [ Category("Shortcuts"), Browsable(true), Description("Event called on click on the CheckUpdate button") ] public event System.EventHandler onCheckUpdate_Click; #endregion #region private methods private void personsTSB_Click(object sender, EventArgs e) { if (onManageActors_Click != null) { onManageActors_Click(sender, e); } } private void brolsTSB_Click(object sender, EventArgs e) { if (onManageBrols_Click != null) { onManageBrols_Click(sender, e); } } private void mediabrolsTSB_Click(object sender, EventArgs e) { if (onManageMediaBrols_Click != null) { onManageMediaBrols_Click(sender, e); } } private void statsTSB_Click(object sender, EventArgs e) { if (onShowStats_Click != null) { onShowStats_Click(sender, e); } } private void brolXplorerTSB_Click(object sender, EventArgs e) { if (onShowExplorer_Click != null) { onShowExplorer_Click(sender, e); } } private void showPhotobrolTSB_Click(object sender, EventArgs e) { if (onShowPhotobrol_Click != null) { onShowPhotobrol_Click(sender, e); } } private void welcomeWizardTSB_Click(object sender, EventArgs e) { if (onShowWelcomeWizard_Click != null) { onShowWelcomeWizard_Click(sender, e); } } private void updateTSB_Click(object sender, EventArgs e) { if (onCheckUpdate_Click != null) { onCheckUpdate_Click(sender, e); } } #endregion #region IToolBarControl Members public string ToolBarText { get { return "Raccourcis"; } } public Image ToolBarImage { get { Image img = global::be.gaudry.bibliobrol.Properties.Resources.brolWindows; return img; } } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731653762 15/11/2024 07:56:02 |
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/ToolBarShortCutsControl.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.