Comment utiliser [DllImport ("")] dans C#?
j'ai trouvé beaucoup de questions à ce sujet, mais n'explique pas comment je peux l'utiliser.
j'ai ceci:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Microsoft.FSharp.Linq.RuntimeHelpers;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.IO;
public class WindowHandling
{
public void ActivateTargetApplication(string processName, List<string> barcodesList)
{
[DllImport("User32.dll")]
public static extern int SetForegroundWindow(IntPtr point);
Process p = Process.Start("notepad++.exe");
p.WaitForInputIdle();
IntPtr h = p.MainWindowHandle;
SetForegroundWindow(h);
SendKeys.SendWait("k");
IntPtr processFoundWindow = p.MainWindowHandle;
}
}
quelqu'un Peut-il m'aider à comprendre pourquoi il me donne une erreur sur le DllImport
et sur la ligne public static
ligne?
quelqu'un a une idée, que puis-je faire? Remercier.
27
demandé sur
Peter Hall
2013-10-18 17:22:23
1 réponses
Vous ne pouvez pas déclarer une extern
méthode à l'intérieur d'une méthode ou toute autre méthode avec un attribut. Déplacer votre DLL d'importation dans la classe:
using System.Runtime.InteropServices;
public class WindowHandling
{
[DllImport("User32.dll")]
public static extern int SetForegroundWindow(IntPtr point);
public void ActivateTargetApplication(string processName, List<string> barcodesList)
{
Process p = Process.Start("notepad++.exe");
p.WaitForInputIdle();
IntPtr h = p.MainWindowHandle;
SetForegroundWindow(h);
SendKeys.SendWait("k");
IntPtr processFoundWindow = p.MainWindowHandle;
}
}
54
répondu
vcsjones
2018-01-22 13:51:12