在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
C#中e.Handle是什么意思 取消事件
举个例子:
private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = true;
}
将 Handled 设置为 true,以取消 KeyPress 事件 只要程序运行到 e.Handle=true; 就退出。
评论
请发表评论