在 C# 中显示带有文本输入的对话框

发布于 2024-11-06 19:24:16 字数 399 浏览 4 评论 0原文

可能的重复:
使用哪个控件进行快速文本输入(输入框)?

我需要显示一个包含输入文本的对话框,让用户键入一些内容并按“确定”,这样我就可以阅读键入的文本并执行其他操作。

有谁知道它的名字吗?

Possible Duplicate:
Which control to use for quick text input (inputbox)?

I need to display a dialog box which contains an input text to let the user type something and press ok, so I can read the typed text and do other things.

Is there anyone who knows the name of it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

枫以 2024-11-13 19:24:16

C#中没有这样的东西。您必须自己创建带有输入的对话框。看一下这里,有一个很好的示例如何做到这一点。

There is no such a thing in C#. You have to create dialogbox with input on your own. Take a look here, there is a good example how to do that.

ㄟ。诗瑗 2024-11-13 19:24:16

您可以使用 Interaction.InputBox() 方法,它位于 Microsoft.VisualBasic 命名空间内。您只需添加 Microsoft.VisualBasic.dll 程序集引用即可在 C# 项目中使用它。

You can use Interaction.InputBox() method, which comes within Microsoft.VisualBasic namespace. You can use it in C# project by simply adding Microsoft.VisualBasic.dll assembly reference.

仅冇旳回忆 2024-11-13 19:24:16

您可以通过引用 DLL 来使用 VB6 中的 InputBox。以下是有关如何在 C# 中执行此操作的链接:

http://www.codeproject.com /KB/edit/InputBox.aspx

You can use the InputBox from VB6 by referencing the DLL. Here is a link on how to do this in C#:

http://www.codeproject.com/KB/edit/InputBox.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文