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 | 1731661143 15/11/2024 09:59:03 |
| _ | 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.
Version en cache
15/11/2024 09:59:03 Cette version de la page est en cache (à la date du 15/11/2024 09:59:03) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-bibliobrol-source-rf-view/controls//DirControl.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.