3

嘿,我正在使用 C# 尝试在 Windows 7 中向 Windows Media Center 发送键盘命令。

目前我可以发送像 4 这样的键,然后看到数字 4 出现在 windows 媒体中心。

问题是任何组合键,如 Ctrl+p(暂停电影)似乎对媒体中心没有任何影响。

任何帮助将不胜感激。这是我的代码片段。

    // Get a handle to an application window.
    [DllImport("USER32.DLL", CharSet = CharSet.Unicode)]
    public static extern IntPtr FindWindow(string lpClassName,
    string lpWindowName);

    // Activate an application window.
    [DllImport("USER32.DLL")]
    public static extern bool SetForegroundWindow(IntPtr hWnd);


    String HandleClass = "eHome Render Window";
    String HandleWindow = "Windows Media Center";

    private bool SendKeyCommand()
    {
        bool success = true;
        IntPtr PrgHandle = FindWindow(HandleClass, HandleWindow);
        if (PrgHandle == IntPtr.Zero)
        {
            MessageBox.Show(HandleWindow + " is not running");
            return false;
        }
        SetForegroundWindow(PrgHandle);
        SendKeys.SendWait("^p");
        return success;
    }
4

2 回答 2

1

我实际上无法使用 VK 类实现任何有用的东西。MediaCenter 不会响应这个 keydown/keyup 的东西。

相反,我使用这种方法将媒体中心置于最前面:

[DllImport("user32.dll")]
static extern bool SetForegroundWindow(IntPtr hWnd);

public static void activateMediaCenterForm()
{
    System.Diagnostics.Process[] p = System.Diagnostics.Process.GetProcessesByName("ehshell");
    if (p.Length > 0) //found
    {
        SetForegroundWindow(p[0].MainWindowHandle);
    }
    //else not Found -> Do nothing.
}

之后, SendKeys 应该可以工作。我只是把它包裹在 try/catch 上。

private void SendKey(string key)
{
    activateMediaCenterForm();
    try
    {
        SendKeys.SendWait(key);
    }
    catch (Exception e)
    {
        //Handle exception, if needed.
    }
}

现在SendKey("{ENTER}");以及SendKey("{RIGHT}");所有其他键在 Windows 7 上都可以正常工作。

于 2013-02-14T17:02:34.497 回答
0

实际上,我终于能够找到适用于该网站的解决方案:

http://michbex.com/wordpress/?p=3

我最终使用他的 VK Class 和 Remote Sender Class 方法来解决这个问题。Windows 媒体中心必须具有较低级别的键挂钩,并且您必须实施 keyup/keydown 发送解决方案来利用挂钩。

我终于可以暂停电影了!我将清理代码并稍后发布。

于 2010-09-25T19:15:29.053 回答