1

我有 WPF 应用程序。在 Windows7 上测试我的应用程序并意识到打开帮助不起作用后。

基本上要打开我调用的 chm 帮助文件:

Process.Start("help.chm");

什么也没有发生。我也在 Vista SP1 上尝试过我的应用程序,结果相同。我是两个操作系统的管理员

我已经用谷歌搜索了这个问题,但没有找到解决方案。

有没有办法解决这个问题?

您是否遇到过这种类型的不兼容问题。

谢谢你!

4

3 回答 3

3

你试过 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

于 2009-05-13T20:31:13.957 回答
1

这个SO 线程应该可以帮助你。另外,这里有一篇关于 UAC 以及如何提升的非常详细的文章。

于 2009-05-13T05:50:50.947 回答
1

它只是 .chm 文件吗?如果是这样,它可能无法打开,因为默认情况下,不受信任位置的 chm 文件被阻止。请参阅:KB902225。从这篇文章看来,您可以通过编程方式解除对它们的阻止,即使它只是首先启动 Sysinternals streams.exe(如文章中所引用)。

于 2009-05-13T20:40:06.487 回答