IconExtractor.cs
Description du code
IconExtractor.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# (IconExtractor.cs) (163 lignes)
using System; using System.Drawing; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using be.gaudry.model.enums; namespace be.gaudry.model.drawing { /// <summary> /// Provides static methods to access Icons into executable files or dll. /// </summary> public class IconExtractor { #region declarations and constructor private static string shell32Path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "shell32.dll"); private static IntPtr hInst; static IconExtractor() { hInst = Marshal.GetHINSTANCE(Assembly.GetExecutingAssembly().GetModules()[0]); } #endregion #region marshall shell32 dll [DllImport("shell32.dll", EntryPoint = "ExtractAssociatedIcon")] private static extern IntPtr ExtractAssociatedIcon( IntPtr hInst, [MarshalAs(UnmanagedType.LPStr)] string lpIconPath, ref int lpiIcon); [DllImport("shell32.dll", EntryPoint = "ExtractIcon")] private static extern IntPtr ExtractIcon( IntPtr hInst, [MarshalAs(UnmanagedType.LPStr)] string lpszExeFileName, int nIconIndex); #endregion #region public static methods /// <summary> /// Gets an Icon from the shell32.dll /// </summary> /// <param name="systemIcon">Icon identifier</param> /// <returns></returns> public static Icon getShell32Icon(SHELL32_ICON systemIcon) { try { return ExtractIcon(shell32Path, (int)systemIcon); } catch (Exception) { return null; } } /// <summary> /// Gets a Bitmap from the shell32.dll /// </summary> /// <param name="systemIcon">Icon identifier</param> /// <returns></returns> public static Bitmap getShell32Bitmap(SHELL32_ICON systemIcon) { try { return ExtractIcon(shell32Path, (int)systemIcon).ToBitmap(); } catch (Exception) { switch (systemIcon) { case SHELL32_ICON.goForwardSquare: return global::be.gaudry.Properties.Resources.wizard_big; } } } /// <summary> /// Gets the default Icon for an executable file or a dll /// </summary> /// <param name="fileName">Path of the executable file or a dll</param> /// <returns></returns> public static Icon ExtractAssociatedIcon(string fileName) { if (File.Exists(fileName) || Directory.Exists(fileName)) { int i = 0; IntPtr hIcon = ExtractAssociatedIcon(hInst, fileName, ref i); if (!hIcon.Equals(IntPtr.Zero)) { return Icon.FromHandle(hIcon); } else { return null; } } else { return null; } } /// <summary> /// Gets the first Icon of an executable file or a dll /// </summary> /// <param name="fileName">Path of the executable file or a dll</param> /// <returns></returns> public static Icon ExtractIcon(string fileName) { return ExtractIcon(fileName, 0); } /// <summary> /// Gets an Icon of an executable file or a dll /// </summary> /// <param name="fileName">Path of the executable file or a dll</param> /// <param name="index">position of the Icon in the Icons list in the file</param> /// <returns></returns> public static Icon ExtractIcon(string fileName, int index) { if (File.Exists(fileName) || Directory.Exists(fileName)) { System.IntPtr hIcon; hIcon = ExtractIcon(hInst, fileName, -1); if (hIcon.Equals(IntPtr.Zero)) { return ExtractAssociatedIcon(fileName); } else { int numOfIcons = hIcon.ToInt32(); if (0 <= index && index < numOfIcons) { hIcon = ExtractIcon(hInst, fileName, index); if (!hIcon.Equals(IntPtr.Zero)) { return Icon.FromHandle(hIcon); } else { return null; } } else { return null; } } } else { return null; } } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732346544 23/11/2024 08:22:24 |
| _ | colors | 0 octets | 1541007202 31/10/2018 18:33:22 |
| _ | chart | 0 octets | 1541007202 31/10/2018 18:33:22 |
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.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-broldev-source-rf-model/drawing/IconExtractor.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.