C#启动一个外部程序(方法1) - WinExec

调用Win32 API。

1.
C#启动一个外部程序(方法1) - WinExec using  System.Runtime.InteropServices;


2.
C#启动一个外部程序(方法1) - WinExec //
C#启动一个外部程序(方法1) - WinExec
// #define SW_HIDE 0  // 隐藏窗口,活动状态给令一个窗口
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWNORMAL 1  // 用原来的大小和位置显示一个窗口,同时令其进入活动状态
C#启动一个外部程序(方法1) - WinExec
// #define SW_NORMAL 1
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWMINIMIZED 2
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWMAXIMIZED 3
C#启动一个外部程序(方法1) - WinExec
// #define SW_MAXIMIZE 3
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWNOACTIVATE 4  // 用最近的大小和位置显示一个窗口,同时不改变活动窗口
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOW 5  // 用当前的大小和位置显示一个窗口,同时令其进入活动状态
C#启动一个外部程序(方法1) - WinExec
// #define SW_MINIMIZE 6  // 最小化窗口,活动状态给令一个窗口
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWMINNOACTIVE 7  // 最小化一个窗口,同时不改变活动窗口
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWNA 8  // 用当前的大小和位置显示一个窗口,不改变活动窗口
C#启动一个外部程序(方法1) - WinExec
// #define SW_RESTORE 9  // 与 SW_SHOWNORMAL 1 相同
C#启动一个外部程序(方法1) - WinExec
// #define SW_SHOWDEFAULT 10
C#启动一个外部程序(方法1) - WinExec
// #define SW_FORCEMINIMIZE 11
C#启动一个外部程序(方法1) - WinExec
// #define SW_MAX 11
C#启动一个外部程序(方法1) - WinExec
[DllImport( " kernel32.dll " )]
C#启动一个外部程序(方法1) - WinExec
public   static   extern   int  WinExec( string  exeName,  int  operType);


3.
C#启动一个外部程序(方法1) - WinExec WinExec( @" C:\WINDOWS\system32\cmd.exe " , 5 ); 
C#启动一个外部程序(方法1) - WinExec

你可能感兴趣的:(exec)