注册全局热键进行复制

时间:2014-02-17 13:56:02

标签: c# wpf global copy-paste registerhotkey

我需要帮助解决这个问题:

我尝试注册一个全局工作的热键(Ctrl + Shift + C)(也在其他应用程序中)。当它被按下时,它应该得到我选择的对象(字符串,文件,......这里没有定义)。申请应该是WPF项目。

我找到了一些代码部分,但最后却没有用。

我尝试做什么?我尝试制作剪贴板帮助工具,我可以存储多个项目

很多谢谢

戴蒙


热键代码

public sealed class HotKey : IDisposable
{
    public event Action<HotKey> HotKeyPressed;

    private readonly int _id;
    private bool _isKeyRegistered;
    readonly IntPtr _handle;

    public HotKey(ModifierKeys modifierKeys, System.Windows.Forms.Keys key, System.Windows.Window window)
        : this(modifierKeys, key, new WindowInteropHelper(window))
    {
        Contract.Requires(window != null);
    }

    public HotKey(ModifierKeys modifierKeys, System.Windows.Forms.Keys key, WindowInteropHelper window)
        : this(modifierKeys, key, window.Handle)
    {
        Contract.Requires(window != null);
    }

    public HotKey(ModifierKeys modifierKeys, System.Windows.Forms.Keys key, IntPtr windowHandle)
    {
        Contract.Requires(modifierKeys != ModifierKeys.None || key != System.Windows.Forms.Keys.None);
        Contract.Requires(windowHandle != IntPtr.Zero);

        Key = key;
        KeyModifier = modifierKeys;
        _id = GetHashCode();
        _handle = windowHandle;
        RegisterHotKey();
        ComponentDispatcher.ThreadPreprocessMessage += ThreadPreprocessMessageMethod;
    }

    ~HotKey()
    {
        Dispose();
    }

    public System.Windows.Forms.Keys Key { get; private set; }

    public ModifierKeys KeyModifier { get; private set; }

    public void RegisterHotKey()
    {
        if (Key == System.Windows.Forms.Keys.None)
            return;
        if (_isKeyRegistered)
            UnregisterHotKey();
        _isKeyRegistered = HotKeyWinApi.RegisterHotKey(_handle, _id, KeyModifier, Key);
        if (!_isKeyRegistered)
            throw new ApplicationException("Hotkey already in use");
    }

    public void UnregisterHotKey()
    {
        _isKeyRegistered = !HotKeyWinApi.UnregisterHotKey(_handle, _id);
    }

    public void Dispose()
    {
        ComponentDispatcher.ThreadPreprocessMessage -= ThreadPreprocessMessageMethod;
        UnregisterHotKey();
    }

    private void ThreadPreprocessMessageMethod(ref MSG msg, ref bool handled)
    {
        if (!handled)
        {
            if (msg.message == HotKeyWinApi.WmHotKey
                && (int)(msg.wParam) == _id)
            {
                OnHotKeyPressed();
                handled = true;
            }
        }
    }

    private void OnHotKeyPressed()
    {
        if (HotKeyPressed != null)
            HotKeyPressed(this);
    }
}

internal class HotKeyWinApi
{
    public const int WmHotKey = 0x0312;

    [DllImport("user32.dll", SetLastError = true)]
    public static extern bool RegisterHotKey(IntPtr hWnd, int id, ModifierKeys fsModifiers, System.Windows.Forms.Keys vk);

    [DllImport("user32.dll", SetLastError = true)]
    public static extern bool UnregisterHotKey(IntPtr hWnd, int id);
}

主要申请

    private HotKey _hotkey;
    public MainWindow()
    {
        InitializeComponent();
        Loaded += (s, e) =>
        {
            _hotkey = new HotKey(ModifierKeys.Control | ModifierKeys.Shift, System.Windows.Forms.Keys.C, this);
            _hotkey.HotKeyPressed += (k) => DoIt();
        };


    }

    public static void DoIt()
    {
        MessageBox.Show("HotKey pressed!");
    }

1 个答案:

答案 0 :(得分:0)

您应该尝试以下博文:Installing a global hot key with C#

至于获取所选文本,您找到的代码here缺少用于获取选择边界的EM_GETSEL消息。您可以将以下内容添加到代码中,它应该可以工作:

        //Get the text of a control with its handle
        private string GetText(IntPtr handle)
        {
            int maxLength = 100;
            IntPtr buffer = Marshal.AllocHGlobal((maxLength + 1) * 2);
            SendMessageW(handle, WM_GETTEXT, maxLength, buffer);
            int selectionStart = -1;
            int selectionEnd = -1;
            SendMessage(handle, EM_GETSEL, out selectionStart, out selectionEnd);
            string w = Marshal.PtrToStringUni(buffer);
            Marshal.FreeHGlobal(buffer);
            if (selectionStart > 0 && selectionEnd >0)
            {
                w = w.Substring(selectionStart, selectionEnd - selectionStart); //We need to send the length
            }
            return w;
        }

    [DllImport("user32.dll")]
    public static extern int SendMessage(IntPtr hWnd, uint Msg, out int wParam, out int lParam);

    public const uint EM_GETSEL = 0xB0;