DirControl.cs
Description du code
DirControl.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# (DirControl.cs) (140 lignes)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; namespace be.gaudry.bibliobrol.view.controls { public partial class DirControl : UserControl { #region constructor and declaration public delegate void DirPathModifiedHandler(object sender, DirPathModifiedEventArgs e); public event DirPathModifiedHandler dirPathModified; private FolderBrowserDialog fbDia; private String path; /// <summary> /// UserControl to select a directory /// </summary> public DirControl() { InitializeComponent(); } #endregion #region getters and setters /// <summary> /// Title (directory name) /// </summary> public String DirTitle { get { return this.storeDirsLbl.Text; } set { this.storeDirsLbl.Text = "Répertoire de stockage des " + value; } } /// <summary> /// Informations to display /// </summary> public String Info { get { return this.storeDirInfosLbl.Text; } set { this.storeDirInfosLbl.Text = value; } } /// <summary> /// Path of the directory /// </summary> public String Path { get { return this.storeDirLbl.Text; } set { this.path = value; this.storeDirLbl.Text = value; } } #endregion #region overrided methods /*public override String ToString() { return "Options : " + storeDirsLbl.Text; } public override int GetHashCode() { return this.ToString().GetHashCode(); } public override bool Equals(Object o) { if (this == o) return true; if (!(o is DirControl)) return false; DirControl q = (DirControl)o; if (!this.storeDirsLbl.Text.Equals(q.storeDirsLbl.Text)) return false; return true; }*/ #endregion #region events private void modifyPath(String newPath) { if (dirPathModified != null && storeDirLbl.Text !=null && !newPath.Equals(path)) { if (!System.IO.Directory.Exists(newPath)) { DialogResult r = MessageBox.Show( this, String.Format("Le répertoire {0} n'existe pas,\nle sélectionner quand-même ?",newPath), "Sélection de répertoire", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1); if (!r.Equals(DialogResult.Yes)) return; } storeDirLbl.Text = newPath; path = newPath; } } private void browseBtn_Click(object sender, EventArgs e) { if (fbDia == null) { fbDia.Description = storeDirInfosLbl.Text; fbDia.ShowNewFolderButton = true; fbDia.SelectedPath = storeDirLbl.Text; } if (fbDia.ShowDialog(this) == DialogResult.OK) { modifyPath(fbDia.SelectedPath); } } private void editBtn_Click(object sender, EventArgs e) { if (editTB.Visible) { modifyPath(editTB.Text); editTB.Visible = false; editBtn.Text = "Modifier"; editBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolEditBtn; browseBtn.Enabled = true; } else { editTB.Text = storeDirLbl.Text; editTB.Visible = true; editBtn.Text = "Appliquer"; editBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolSaveBtn; browseBtn.Enabled = false; } #endregion } } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1736377283 09/01/2025 00:01:23 |
| _ | dao | 0 octets | 1541007199 31/10/2018 18:33:19 |
| _ | toolBars | 0 octets | 1541007200 31/10/2018 18:33:20 |
| _ | webInfo | 0 octets | 1541007201 31/10/2018 18:33:21 |
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.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 16/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-bibliobrol-source-rf-view/controls/DirControl.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.