SystemInfoControl.cs
Description du code
SystemInfoControl.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# (SystemInfoControl.cs) (154 lignes)
using System; using System.Collections; using System.Collections.Generic; using System.Reflection; using System.Windows.Forms; using be.gaudry.model; using be.gaudry.model.config; namespace be.gaudry.view.controls { public partial class SystemInfoControl : UserControl { #region declarations and constructors private DataGridViewCellStyle dgvTitleStyle; private Assembly assembly; public SystemInfoControl() { InitializeComponent(); initDgvTitleStyle(); } #endregion #region private methods private void initDgvTitleStyle() { dgvTitleStyle.BackColor = System.Drawing.SystemColors.ControlLight; dgvTitleStyle.ForeColor = System.Drawing.SystemColors.ControlDarkDark; dgvTitleStyle.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold); dgvTitleStyle.SelectionBackColor = dgvTitleStyle.BackColor; dgvTitleStyle.SelectionForeColor = dgvTitleStyle.ForeColor; } private void displayDGV() { addTitle(getClientName()); envDGV.Rows.Add("Version de l'application locale", getClientVersion(), ""); if (System.Deployment.Application.ApplicationDeployment.IsNetworkDeployed) { envDGV.Rows.Add("Version de déploiement", System.Deployment.Application.ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString()); } else { envDGV.Rows.Add("Version de déploiement", " (Version non déployée)"); } envDGV.Rows.Add("Répertoire d'exécution", getExecDir(), ""); envDGV.Rows.Add("Mémoire allouée à BiblioBrol", Units.getLengthString(Environment.WorkingSet), ""); addApplCmdLines(); envDGV.Rows.Add("Version du framework .NET", Environment.Version.ToString(), ""); addTitle("Plugins"); if (PluginsManager.Count > 0) { foreach (Plugin plugin in PluginsManager.Plugins) { envDGV.Rows.Add(plugin.Name, String.Format("Version {0}", plugin.Version), ""); } } else envDGV.Rows.Add("Aucun", "", ""); addTitle("Environnement"); addEnvVars(); } private object getExecDir() { String exepath = Environment.GetCommandLineArgs()[0]; return exepath.Substring(0, exepath.LastIndexOf('\\')); } private void addApplCmdLines() { String[] args = Environment.GetCommandLineArgs(); String f = "Argument brol {0}"; for (int i = 0; i < args.Length; i++) envDGV.Rows.Add(String.Format(f, i), args[i]); } private void addEnvVars() { IDictionary envVars = Environment.GetEnvironmentVariables(); foreach (String keyStr in envVars.Keys) envKeys.Add(keyStr); envKeys.Sort(); foreach (String keyStr in envKeys) envDGV.Rows.Add(keyStr, envVars[keyStr]); /* IDictionary envVars = Environment.GetEnvironmentVariables(); foreach (DictionaryEntry de in envVars) envDGV.Rows.Add(de.Key, de.Value); */ } private string getClientVersion() { /*FileVersionInfo ver = FileVersionInfo.GetVersionInfo(Environment.GetCommandLineArgs()[0]); return ver.FileVersion;*/ /*Assembly assembly = Assembly.LoadFile(Application.StartupPath + "BiblioBrol.exe"); assembly.GetName(); assembly.*/ if (assembly == null) { assembly = Assembly.GetExecutingAssembly(); } AssemblyName name = assembly.GetName(); return name.Version.ToString(); } private string getClientName() { if (assembly == null) { assembly = Assembly.GetExecutingAssembly(); } return assembly.GetName().Name; } #endregion private void SystemInfoControl_Load(object sender, EventArgs e) { displayDGV(); } /// <summary> /// Used to retreive application name, version, etc. /// </summary> /// <param name="assembly"></param> public void setAssembly(Assembly assembly) { this.assembly = assembly; } public void addTitle(string title) { row.DefaultCellStyle = dgvTitleStyle; row.CreateCells(envDGV); row.Cells[0].Value = title; envDGV.Rows.Add(row); /*row = new DataGridViewRow(); row.DefaultCellStyle = dgvTitleStyle; row.CreateCells(envDGV); row.Cells[0].Value = "Nom de variable"; row.Cells[1].Value = "Valeur"; envDGV.Rows.Add(row);*/ } public void addItem(string itemName, string itemValue) { envDGV.Rows.Add(itemName,itemValue); } } }
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 | 1732239889 22/11/2024 02:44:49 |
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
22/11/2024 02:44:49 Cette version de la page est en cache (à la date du 22/11/2024 02:44:49) 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-broldev-source-rf-view/controls/SystemInfoControl.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.