本文介绍了防止在日期时间选择器中使用快捷键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在日期时间选择器中,按F4会弹出日历.有什么方法可以防止在按下F4时弹出日历.

In Date time picker when pressing F4 it popups the calendar. Is there any way to prevent to poput the calendar when pressing the F4.

推荐答案

private void dateTimePicker1_KeyDown(object sender, KeyEventArgs e)
        {
            if(e.KeyCode == Keys.F4)
            {
                e.SuppressKeyPress = true;
            }
        }



这将阻止F4起作用.

希望这会有所帮助.



and that will prevent F4 from working.

Hope this helps.


这篇关于防止在日期时间选择器中使用快捷键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 15:20