WinForms(Windows Forms)的等效 JDialog 是什么?

What is the equivalent JDialog for WinForms(Windows Forms)?

我尝试使用 WinForms 构建一个应用程序,我需要类似 JDialog 框架的东西来在其中插入几个文本框(Java 中的 JTextField)以及两个按钮(确定和取消),但我没有尚未找到任何合适的 Windows 形式。有什么建议吗?

C#没有提示对话框。您可以创建一个自定义提示框来执行此操作。

  public static class Prompt
    {
        public static int ShowDialog(string text, string caption)
        {
            Form prompt = new Form();
            prompt.Width = 500;
            prompt.Height = 100;
            prompt.Text = caption;
            Label textLabel = new Label() { Left = 50, Top=20, Text=text };
            NumericUpDown inputBox = new NumericUpDown () { Left = 50, Top=50, Width=400 };
            Button confirmation = new Button() { Text = "Ok", Left=350, Width=100, Top=70 };
            confirmation.Click += (sender, e) => { prompt.Close(); };
            prompt.Controls.Add(confirmation);
            prompt.Controls.Add(textLabel);
            prompt.Controls.Add(inputBox);
            prompt.ShowDialog();
            return (int)inputBox.Value;
        }
    }

然后调用它:

int promptValue = Prompt.ShowDialog("Test", "123");

我从 here

那里得到了这个

或者使用这个:

using( MyDialog dialog = new MyDialog() )
{
    DialogResult result = dialog.ShowDialog();

    switch (result)
    {
    // put in how you want the various results to be handled
    // if ok, then something like var x = dialog.MyX;
    }

}