我尝试使用WinForms构建一个应用程序,我需要像JDialog框架一样在其中插入几个TextBox(Java中的JTextField)以及两个按钮(OK和Cancel),但我还没有找到任何合适的Windows形成。有什么建议吗?
答案 0 :(得分:0)
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;
}
}