像 Keydown 和 Keydown 这样的事件添加 OpenTK.Control 后按键不起作用?
我正在使用 C# 在 VS 中创建一个 winform 应用程序。以下工作正常,但在 nutget 中添加 OpenTK.GLControl 后,这些键盘事件对于 GLControl 和表单本身都不再起作用。现在知道为什么以及如何解决它吗?谢谢。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show("Test");
}
}
}
I am creating a winform app in VS using C#. The following works fine but after adding OpenTK.GLControl in nutget these keyboard events don't work anymore both for the GLControl and the form itself. Does anymore know why and how to fix it? Thanks.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
MessageBox.Show("Test");
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论