在控制台应用程序中禁用用户输入

编程入门 行业动态 更新时间:2024-10-13 20:20:51
本文介绍了在控制台应用程序中禁用用户输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我正在制作一个基于 C# 控制台文本的游戏,并且因为我希望它看起来更老派,所以我添加了一种效果,使任何文本(描述、教程、对话)看起来都像是正在输入的,并且它看起来像这样:

I am making a C# console text-based game, and because I wanted it to look more old-school, I've added an effect so that any text (descriptions, tutorials, dialogues) looks like it's being typed, and it looks like this:

public static int pauseTime = 50; class Writer { public void WriteLine(string myText) { int pauseTime = MainClass.time; for (int i = 0; i < myText.Length; i++) { Console.Write(myText[i]); System.Threading.Thread.Sleep(pauseTime); } Console.WriteLine(""); } }

但后来我觉得这可能很烦人,我想添加一个选项来跳过效果并让所有文本立即出现.所以我选择了 Enter 键作为跳过"键,它使文本立即出现,但按 Enter 键也会创建一个新的文本行,打乱文本.

But then I thought that this might be annoying and I thought about adding an option to skip the effect and make all the text appear at once. So I chose the Enter key to be the "skip" key, and it makes the text appear at once, but pressing the enter key also creates a new text line, scrambling the text.

所以我想以某种方式禁用用户输入,以便用户无法在控制台中写入任何内容.有没有办法,例如,禁用命令提示符(命令提示符不是指 cmd.exe,而是闪烁的_"下划线符号)?

So I want to somehow disable user input, so that the user cannot write anything in the console. Is there a way to, for example, disable the command prompt (and by command prompt I don't mean cmd.exe, but the flashing "_" underscore sign)?

推荐答案

我认为你想要的是 Console.ReadKey(true) 它将拦截按下的键并且不会显示它.

I think what you want is Console.ReadKey(true) which will intercept the pressed key and won't display it.

class Writer { public void WriteLine(string myText) { for (int i = 0; i < myText.Length; i++) { if (Console.KeyAvailable && Console.ReadKey(true).Key == ConsoleKey.Enter) { Console.Write(myText.Substring(i, myText.Length - i)); break; } Console.Write(myText[i]); System.Threading.Thread.Sleep(pauseTime); } Console.WriteLine(""); } }

来源:MSDN 文章

更多推荐

在控制台应用程序中禁用用户输入

本文发布于:2023-11-17 08:54:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1609529.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:控制台   应用程序   用户

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!