我有 WPF 应用程序。在 Windows7 上测试我的应用程序并意识到打开帮助不起作用后。
基本上要打开我调用的 chm 帮助文件:
Process.Start("help.chm");
什么也没有发生。我也在 Vista SP1 上尝试过我的应用程序,结果相同。我是两个操作系统的管理员
我已经用谷歌搜索了这个问题,但没有找到解决方案。
有没有办法解决这个问题?
您是否遇到过这种类型的不兼容问题。
谢谢你!
我有 WPF 应用程序。在 Windows7 上测试我的应用程序并意识到打开帮助不起作用后。
基本上要打开我调用的 chm 帮助文件:
Process.Start("help.chm");
什么也没有发生。我也在 Vista SP1 上尝试过我的应用程序,结果相同。我是两个操作系统的管理员
我已经用谷歌搜索了这个问题,但没有找到解决方案。
有没有办法解决这个问题?
您是否遇到过这种类型的不兼容问题。
谢谢你!
你试过 ShellExecute 吗?
使用 System.Runtime.InteropServices;
[DllImport("shell32.dll", CharSet = CharSet.Auto)] static extern bool ShellExecuteEx(ref SHELLEXECUTEINFO lpExecInfo);
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct SHELLEXECUTEINFO
{
public int cbSize;
public uint fMask;
public IntPtr hwnd;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpVerb;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpFile;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpParameters;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpDirectory;
public int nShow;
public IntPtr hInstApp;
public IntPtr lpIDList;
[MarshalAs(UnmanagedType.LPTStr)]
public string lpClass;
public IntPtr hkeyClass;
public uint dwHotKey;
public IntPtr hIcon;
public IntPtr hProcess;
}
您可以尝试使用以下方法开始流程:
SHELLEXECUTEINFO info = new SHELLEXECUTEINFO();
info.cbSize = System.Runtime.InteropServices.Marshal.SizeOf(info);
info.lpVerb = "open";
info.lpFile = "help.chm";
info.nShow = 5;
info.fMask = 12;
ShellExecuteEx(ref info);
(http://www.pinvoke.net/default.aspx/shell32.ShellExecuteEx)