3 changed files with 66 additions and 1 deletions
@ -0,0 +1,36 @@ |
|||
using System; |
|||
using System.Runtime.InteropServices; |
|||
|
|||
namespace WebTest |
|||
{ |
|||
public class ShellExecuteHelper |
|||
{ |
|||
public enum ShowCommands : int |
|||
{ |
|||
SW_HIDE = 0, |
|||
SW_SHOWNORMAL = 1, |
|||
SW_NORMAL = 1, |
|||
SW_SHOWMINIMIZED = 2, |
|||
SW_SHOWMAXIMIZED = 3, |
|||
SW_MAXIMIZE = 3, |
|||
SW_SHOWNOACTIVATE = 4, |
|||
SW_SHOW = 5, |
|||
SW_MINIMIZE = 6, |
|||
SW_SHOWMINNOACTIVE = 7, |
|||
SW_SHOWNA = 8, |
|||
SW_RESTORE = 9, |
|||
SW_SHOWDEFAULT = 10, |
|||
SW_FORCEMINIMIZE = 11, |
|||
SW_MAX = 11 |
|||
} |
|||
|
|||
[DllImport("shell32.dll")] |
|||
public static extern IntPtr ShellExecute( |
|||
IntPtr hwnd, |
|||
string lpOperation, |
|||
string lpFile, |
|||
string lpParameters, |
|||
string lpDirectory, |
|||
ShowCommands nShowCmd); |
|||
} |
|||
} |
Loading…
Reference in new issue