AbstractDgv.cs
Description du code
AbstractDgv.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# (AbstractDgv.cs) (85 lignes)
using System.Collections.Generic; using System.Windows.Forms; using be.gaudry.model.enums; using be.gaudry.view.dialogs; namespace be.gaudry.view.utils.dgvFactory { public abstract class AbstractDgv : IDgv { #region declarations and initializations protected internal PAGE_COUNTERFORMAT PageCounterFormat = PAGE_COUNTERFORMAT.pageXdeX; protected internal PAGE_ORIENTATION pageOrientation = PAGE_ORIENTATION.portrait; protected internal bool DisplayDate = true; protected internal TEXT_POSITION textPlacement = TEXT_POSITION.Header; protected internal DataGridView dgv; // Holds DataGridView Object to print its contents protected internal List<DataGridViewColumn> SelectedColumns = new List<DataGridViewColumn>(); // The Columns Selected by user to print. //private List<string> AvailableColumns = new List<string>(); // All Columns avaiable in DataGrid protected internal string PrintTitle; private string dgvLayoutOptionsDialogTitle; protected internal Form dialogOwner; protected internal bool PrintAllRows = true; // True = print all rows, False = print selected rows protected internal bool FitToPageWidth = true; // True = Fits selected columns to page width , False = Print columns as showed protected internal string authorName = "Steph";//todo : get info from dlg #endregion #region getters and setters public void setDialogOwner(Form form) { this.dialogOwner = form; } public string DGVLayoutOptionsDialogTitle { get { return dgvLayoutOptionsDialogTitle; } set { dgvLayoutOptionsDialogTitle = value; } } public DGVLayoutOptionsDialog LayoutOptionsDialog { get { return dlg; } } #endregion #region protected methods protected internal bool setLayoutOptions(string outputTitle) { /*AvailableColumns.Clear(); foreach (DataGridViewColumn c in dgv.Columns) { if (!c.Visible || c.Name.Equals("fillerCol")) continue; AvailableColumns.Add(c.HeaderText); } dlg.setSelectedColumns(AvailableColumns); dlg.layoutControl.setTitle(outputTitle); DialogResult dr; if (dialogOwner != null) { dr = dlg.ShowDialog(dialogOwner); } else { dr = dlg.ShowDialog(); } if (dr != DialogResult.OK) return false; PrintTitle = dlg.layoutControl.getTitle(); PrintAllRows = dlg.layoutControl.getPrintAllRows(); FitToPageWidth = dlg.layoutControl.getFitToPageWidth(); SelectedColumns = dlg.layoutControl.getSelectedColumns(); PageCounterFormat = dlg.layoutControl.getPageCounterFormat(); DisplayDate = dlg.layoutControl.getDisplayDate(); pageOrientation = dlg.layoutControl.getPageOrientation(); */ return true; } #endregion #region IDgv Membres public abstract void print(DataGridView dgv); //public abstract void print(DataGridView dgv, string outputTitle, Form ownerForm); #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 | 1732305930 22/11/2024 21:05:30 |
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//AbstractDgv.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.