我需要这个问题的帮助:
我尝试注册一个全局工作的热键(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!");
}
您应该尝试此博客文章:使用 C# 安装全局热键
至于获取所选文本,您在此处找到的代码缺少获取选择边界的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;