c#-为Label控件创建KeyDown事件处理程序
作者:互联网
我确定您都知道Label Control没有KeyDown处理程序的事实(为什么呢?)…无论如何,我需要Label Control的KeyDown处理程序,并且希望使用任何指针/建议让我开始.
我到处搜索,但未找到有关为标签控件创建自己的事件处理程序的任何信息.可以用C#完成吗?
谢谢
解决方法:
我在构造函数中执行了以下操作:
SetStyle(ControlStyles.Selectable,true);
并重写OnMouseDown方法:
protected override void onm ouseDown(MouseEventArgs e)
{
base.OnMouseDown(e);
if (this.CanSelect) this.Select();
}
完成后,您的控件应收到键盘事件.但是,如果您想在标签外创建类似控件的TextBox,将需要大量工作…
标签:event-handling,label,c,winforms 来源: https://codeday.me/bug/20191106/2001160.html