Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WPF ウィンドウで発生するすべてのキーボード イベントを、UI スレッドとは別のスレッドで処理したいと考えています。UI レンダリングとキーボード キャプチャを分離するにはどうすればよいですか?
ありがとうございました!
これを行うための非常にエレガントな方法はないと思います。他に何かしたいですか...
private void KeyPress(object sender, RoutedEventArgs e) { bgWorkerKeyPress.RunWorkerAsync(); }