我正在创建这个绘画应用程序,我想知道用户是否同时按下了 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
}
}
`
将其添加到 ctor 中
this.KeyPreview = true;