CustomOpenResultFileDialog.cs
Description du code
CustomOpenResultFileDialog.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
Code c# (CustomOpenResultFileDialog.cs) (158 lignes)
using System; using System.IO; using System.Windows.Forms; using be.gaudry.model.config; using be.gaudry.model.enums; using be.gaudry.model.file; namespace be.gaudry.view.dialogs { public partial class CustomOpenResultFileDialog : Form { #region declarations, constructor ans singleton private string fileName; private const string exportActionSettingString = "display/actionOpen"; protected static CustomOpenResultFileDialog instance = null; private OPEN_FILE_ACTION action; protected CustomOpenResultFileDialog() { InitializeComponent(); } public static CustomOpenResultFileDialog Instance { get { lock(padlock) { if(instance==null) { } return instance; } } } #endregion #region public methods /* public CustomOpenResultFileDialog() { InitializeComponent(); } public void setInfoText(string infoText) { infosLbl.Text = infoText; } public void setTitle(string title) { Text = title; } public void setFileName(string fileName) { this.fileName = fileName; } */ #endregion #region persistance of prefered action private void loadPreferedAction() { try { string actionStr = settings.getSetting( exportActionSettingString, ); action = (OPEN_FILE_ACTION)Enum.Parse( actionStr, false ); } catch { action = OPEN_FILE_ACTION.Nothing; } } private void savePreferedAction() { settings.putSetting( exportActionSettingString, true ); } #endregion #region private methods private void CustomOpenResultFile_Load(object sender, EventArgs e) { this.Width = infosLbl.Width + 80; this.Height = infosLbl.Height + 250; switch (action) { } } private void CustomOpenResultFileDialog_FormClosing(object sender, FormClosingEventArgs e) { savePreferedAction(); } private void okBtn_Click(object sender, EventArgs e) { if (!string.Empty.Equals(fileName)) { { FileHelper.open(fileName); if (action != OPEN_FILE_ACTION.Open) action = OPEN_FILE_ACTION.Open; } { FileHelper.openWith(fileName); if (action != OPEN_FILE_ACTION.OpenWith) action = OPEN_FILE_ACTION.OpenWith; } { string dirName = Path.GetDirectoryName(fileName); //todo : open the explorer... if (action != OPEN_FILE_ACTION.OpenFolder) action = OPEN_FILE_ACTION.OpenFolder; } else { if (action != OPEN_FILE_ACTION.Nothing) action = OPEN_FILE_ACTION.Nothing; } } this.Close(); } #endregion #region static methods public static void Show(IWin32Window owner, string filePath, string text, string caption, MessageBoxIcon icon) { CustomOpenResultFileDialog instance = Instance; instance.fileName = filePath; instance.Text = caption; instance.infosLbl.Text = text; instance.ShowDialog(owner); } #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 | 1730781066 05/11/2024 05:31:06 |
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-broldev-source-rf-view/dialogs//CustomOpenResultFileDialog.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.