我正在使用System.Windows.Forms,但奇怪的是没有创建它们的能力。

没有javascript,如何获得类似javascript提示对话框的内容?

MessageBox很不错,但是用户无法输入输入。

我希望用户输入任何可能的文本输入。

最佳答案

您需要创建自己的提示对话框。您也许可以为此创建一个类。

public static class Prompt
{
    public static string ShowDialog(string text, string caption)
    {
        Form prompt = new Form()
        {
            Width = 500,
            Height = 150,
            FormBorderStyle = FormBorderStyle.FixedDialog,
            Text = caption,
            StartPosition = FormStartPosition.CenterScreen
        };
        Label textLabel = new Label() { Left = 50, Top=20, Text=text };
        TextBox textBox = new TextBox() { Left = 50, Top=50, Width=400 };
        Button confirmation = new Button() { Text = "Ok", Left=350, Width=100, Top=70, DialogResult = DialogResult.OK };
        confirmation.Click += (sender, e) => { prompt.Close(); };
        prompt.Controls.Add(textBox);
        prompt.Controls.Add(confirmation);
        prompt.Controls.Add(textLabel);
        prompt.AcceptButton = confirmation;

        return prompt.ShowDialog() == DialogResult.OK ? textBox.Text : "";
    }
}

并调用它:
string promptValue = Prompt.ShowDialog("Test", "123");

更新:

添加了默认按钮(输入键)和基于注释和another question的初始焦点。

10-07 19:56