![]() |
Der Typ oder Name 'DllImport' konnte nicht gefunden werden
Ich will Icons aus DLLs laden, dazu verwende ich folgende kleine Klasse:
Code:
Doch der Compiler bringt mir folgende Meldung:
using System;
using System.Drawing; namespace RunAsTray.Util { /// <summary> /// Description of IconLoader. /// </summary> public class IconLoader { [DllImport("shell32.dll")] private static extern IntPtr ExtractIcon(int hInst, string file, int index); public static Icon load(string filename, int idx) { return Icon.FromHandle(ExtractIcon(GetModuleHandle(String.Empty), filename, index); } } } Zitat:
Muss ich da noch irgendwas zusätzlich einstellen? |
Re: Der Typ oder Name 'DllImport' konnte nicht gefunden werd
Verdammt, wieder das alte Spiel:
Ich hab die Lösung gefunden... Man muss noch einen Namespace einbinden:
Code:
using System;
using System.Drawing; using System.Runtime.InteropServices; namespace RunAsTray.Util { /// <summary> /// Description of IconLoader. /// </summary> public class IconLoader { [DllImport("shell32.dll")] private static extern IntPtr ExtractIcon(int hInst, string file, int index); public static Icon load(string filename, int idx) { return Icon.FromHandle(ExtractIcon(GetModuleHandle(String.Empty), filename, index)); } } } |
Re: Der Typ oder Name 'DllImport' konnte nicht gefunden werd
Zitat:
DllImportAttribute IST eine Klasse. Wobei Nachfahren von Attribute ein wenig besonders behandelt werden. ;) Präventiv, bevor du in weitere Probleme rennst: Was du da über die Methode gesetzt hast ist im Prinzip ein call auf den Constructor von DllImportAttribute. Das ganze muss konstant zur Compile time sein, damit sichergestellt werden kann, dass zur Laufzeit sehr schnell Instanzen davon angelegt werden können. ;). |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:27 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz