我想在按ItemSource
时更改Alt + Tab
或其他内容,以便如何执行此操作。我试过下面的代码,但它在WPF中不起作用:
void MainWindow_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Tab && (Keyboard.Modifiers & ModifierKeys.Alt) == ModifierKeys.Alt)
{
MessageBox.Show("CTRL + TAB trapped");
}
}