创建返回值的自定义对话框的最简单方法是什么? [英] Easiest way to create a custom dialog box which returns a value?

查看:22
本文介绍了创建返回值的自定义对话框的最简单方法是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为我的 C# 项目创建一个自定义对话框.我想在这个自定义对话框中有一个DataGridView,而且还会有一个按钮.当用户单击该按钮时,将向调用者返回一个整数值,然后对话框自行终止.

I want to create a custom dialog box for my C# project. I want to have a DataGridView in this custom dialog box, and there will also be a button. When the user clicks this button, an integer value is returned to the caller, and the dialog box then terminates itself.

我怎样才能做到这一点?

How can I achieve this?

推荐答案

C#中没有提示对话框.您可以创建一个自定义提示框来代替.

There is no prompt dialog box in C#. You can create a custom prompt box to do this instead.

  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");

这篇关于创建返回值的自定义对话框的最简单方法是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆