如何查找用户是否在我的 wpf 应用程序中按下了 ctrl + '+' 键

问题描述 投票:0回答:1

我正在创建这个绘画应用程序,我想知道用户是否同时按下了 ctrl+'+' 以便我可以增加笔的宽度。(我仍在学习)但对我来说没有任何作用。我真的会如果有人可以帮助我,我很感激。

`

public Paint()
{
    InitializeComponent();
    this.KeyDown += Keydown;
}




private void Keydown(object sender,KeyEventArgs e)
 {
     if (e.Control && e.KeyCode == Keys.Oemplus)
     {
         cnt++;
// if cnt>0 i can call increaseWidth method
     }
 }

`

c# wpf
1个回答
0
投票

将其添加到 ctor 中

this.KeyPreview = true;
© www.soinside.com 2019 - 2024. All rights reserved.