本文介绍了"按Ctrl + C"按钮按下手柄C#控制台应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何处理同时按下(按Ctrl+C'),而不是在WindowsForms应用程序,但在控制台C#应用程序两个按钮?

How can I handle two buttons pressed simultaneously ('Ctrl' + 'C'), not in the WindowsForms application, but in console C# application?

推荐答案

我怀疑你想设置的以真正。 (假设你的的希望这种终止应用程序。)

I suspect you want to set Console.TreatCtrlCAsInput to true. (Assuming you don't want this to terminate the app.)

这篇关于"按Ctrl + C"按钮按下手柄C#控制台应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 21:09