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.
WinformsElementHostにWPFウィンドウがあります。KeyDownイベントとPreviewKeyDownイベントは、ウィンドウのTabキーと矢印キーに対して発生しません。
KeyUpとPreviewKeyUpは、AZ、0-9などの他のほとんどのキーのPreviewKeyDownと同様に、正常に機能しているようです。
問題は、ウィンドウがWinformsアプリケーションから開かれたことでした。ElementHost.EnableModelessKeyboardInterop()メソッドは私の問題を解決しました。
var myWindow = new MyWindow(); ElementHost.EnableModelessKeyboardInterop(myWindow); myWindow.Show();