0

晚上所有,

我需要一些关于在 WinCE 中监视注册表值的建议。我正在编写一个 Windows 窗体应用程序,它需要监视注册表中的值,并在它发生变化时触发一个事件,有人能指出我如何实现这一点的正确方向吗?

提前谢谢了。

4

1 回答 1

0

我设法使用 PInvoke 代码实现了这一点:

   [DllImport("coredll.dll", SetLastError = true)]
    static extern int RegOpenKeyEx(UIntPtr hKey, string lpSubKey, uint ulOptions, int samDesired, out UIntPtr phkResult);

    [DllImport("coredll.dll", SetLastError = true)]
    static extern UIntPtr CeFindFirstRegChange(UIntPtr hKey, [In, MarshalAs(UnmanagedType.Bool)] bool bWatchSubtree, uint dwNotifyFilter);

    [DllImport("coredll.dll", SetLastError = true)]
    public static extern UInt32 WaitForSingleObject(UIntPtr Handle, UInt32 Wait);

    [DllImport("coredll.dll", SetLastError = true)]
    static extern Int32 CeFindNextRegChange(UIntPtr hChangeHandle);

    [DllImport("coredll.dll", SetLastError = true)]
    static extern Int32 CeFindCloseRegChange(UIntPtr hChangeHandle);

    [DllImport("coredll.dll", SetLastError = true)]
    public static extern int RegCloseKey(UIntPtr hKey);

并通过使用 WaitForSingleObject。

于 2012-06-08T09:52:26.093 回答