DgvFactory.cs
Description du code
DgvFactory.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# (DgvFactory.cs) (139 lignes)
using System; using System.Windows.Forms; using be.gaudry.model.config; using be.gaudry.model.enums; using be.gaudry.view.dialogs; using be.gaudry.view.utils.dgvFactory; namespace be.gaudry.view.utils { public static class DgvFactory { #region declarations ans initializationa private static TextDgv textDGV; private static PrintDgv printDGV; private static CSVDgv csvDGV; private static HtmlDgv htmlDGV; private static XMLDgv xmlDGV; private static ExcelDgv excelDGV; private static string exportFormatSettingString = "display/dgvOutputFormat"; #endregion #region public methods public static void save(DataGridView dgv, string documentTitle, Form ownerForm) { dlg.layoutControl.setOutputFormat(loadPreferedFormat()); setLayoutOptions(dgv, documentTitle, ownerForm); } public static void print(DataGridView dgv, string documentTitle, Form ownerForm) { dlg.layoutControl.setOutputFormat(DGV_EXPORT_FORMAT.Print); setLayoutOptions(dgv, documentTitle, ownerForm); } #endregion #region persistance of prefered output format private static DGV_EXPORT_FORMAT loadPreferedFormat() { DGV_EXPORT_FORMAT format = DGV_EXPORT_FORMAT.Text; try { string formatStr = settings.getSetting( exportFormatSettingString, ); return (DGV_EXPORT_FORMAT)Enum.Parse( formatStr, false ); } catch { return format; } } private static void savePreferedFormat(DGV_EXPORT_FORMAT format) { settings.putSetting( exportFormatSettingString, true ); } #endregion #region private methods private static bool setLayoutOptions(DataGridView dgv, string outputTitle, Form ownerForm) { dlg.layoutControl.setAvailableColumns(dgv); dlg.layoutControl.setTitle(outputTitle); DialogResult dr; if (ownerForm != null) { dr = dlg.ShowDialog(ownerForm); } else { dr = dlg.ShowDialog(); } if (dr != DialogResult.OK) return false; AbstractDgv abstractDgv = null; DGV_EXPORT_FORMAT format = dlg.layoutControl.getOutputFormat(); savePreferedFormat(format); switch (format) { case DGV_EXPORT_FORMAT.Text: abstractDgv = textDGV; ((TextDgv)abstractDgv).Separator = dlg.layoutControl.getSeparator(); break; case DGV_EXPORT_FORMAT.CSV: abstractDgv = csvDGV; ((CSVDgv)abstractDgv).Separator = dlg.layoutControl.getSeparator(); break; case DGV_EXPORT_FORMAT.Print: abstractDgv = printDGV; break; case DGV_EXPORT_FORMAT.HTML: abstractDgv = htmlDGV; break; case DGV_EXPORT_FORMAT.XML: abstractDgv = xmlDGV; break; case DGV_EXPORT_FORMAT.Excel: abstractDgv = excelDGV; break; default: abstractDgv = printDGV; break; } abstractDgv.PrintTitle = dlg.layoutControl.getTitle(); abstractDgv.PrintAllRows = dlg.layoutControl.getPrintAllRows(); abstractDgv.FitToPageWidth = dlg.layoutControl.getFitToPageWidth(); abstractDgv.SelectedColumns = dlg.layoutControl.getSelectedColumns(); abstractDgv.PageCounterFormat = dlg.layoutControl.getPageCounterFormat(); abstractDgv.DisplayDate = dlg.layoutControl.getDisplayDate(); abstractDgv.pageOrientation = dlg.layoutControl.getPageOrientation(); abstractDgv.dialogOwner = ownerForm; abstractDgv.print(dgv); return true; } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1730755653 04/11/2024 22:27:33 |
| _ | dgvFactory | 0 octets | 1541007203 31/10/2018 18:33:23 |
Icône | Nom | Taille | Modification | Action |
Icône | Nom | Taille | Modification | Action |
|.cs | DgvFactory.cs | 5.19 Ko | 31/10/2018 18:33:16 | -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-broldev-source-rf-view/utils/DgvFactory.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.