14
private void button2_Click(object sender, EventArgs e)
        {
            ChangeLink cl = new ChangeLink();
            // Show testDialog as a modal dialog and determine if DialogResult = OK.
            if (cl.ShowDialog() == DialogResult.OK)
            {
                // Read the contents of testDialog's TextBox. 
               // cl.AcceptButton.DialogResult = DialogResult.OK;
                this.label4.Text = cl.textBox1Text;
            }
            else
            {
                this.label4.Text = "Cancelled";
            }
            cl.Dispose();

        }

当我单击按钮时,我会在新表单中看到新表单和 textBox1。我可以在 textBox1 中输入一些东西,但是我在任何地方都看不到 OK 或 CANCEL 按钮。我应该在新的表单设计器中手动添加它们吗?以及如何使用它们呢?

这是我的新表单中的代码我想要做的是在新表单 textBox1 中输入一些内容并将 textBox1 中的文本传递给 Form1 label4。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace GatherLinks
{
    public partial class ChangeLink : Form
    {
        public ChangeLink()
        {
            InitializeComponent();


        }

        public string textBox1Text
        {
            get
            {
                return textBox1Text = textBox1.Text;
            }
            set
            {
               
            }
        }
    }
}

那么Form.ShowDialog的OK和CANCEL按钮在哪里呢?

4

5 回答 5

29

您需要自己添加它们,您可以将按钮添加到您的Form并设置它们的DialogResult属性。这将返回 DialogResult 并关闭表单,而无需连接任何代码。这是一个使用方法返回 Form2 上的 TextBox 值的示例(Form2 上有两个按钮,它们的 DialogResults 分别设置为 Cancel 和 Ok)。

表格1

public partial class Form1 : Form
{
    Form2 frm2;
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        frm2 = new Form2();
        DialogResult dr = frm2.ShowDialog(this);
        if (dr == DialogResult.Cancel)
        {
            frm2.Close();
        }
        else if (dr == DialogResult.OK)
        {
            textBox1.Text = frm2.getText();
            frm2.Close();
        }
    }
}

表格2

public partial class Form2 : Form
{
    public Form2()
    {
        InitializeComponent();
    }

    public string getText()
    {
        return textBox1.Text;
    }
}
于 2012-09-16T02:56:59.907 回答
4

鉴于您唯一的标签是 C#,并且您期望一个确定和取消按钮,在我看来,您实际上是在寻找 MessageBox 函数。仅仅为了显示消息框对话框而创建和处理表单是不必要的。

if (MessageBox.Show("boxtext", "boxcaption" MessageBoxButtons.OKCancel) == DialogResult.OK) 
{
// Read the contents of testDialog's TextBox. 
// cl.AcceptButton.DialogResult = DialogResult.OK;
this.label4.Text = cl.textBox1Text;
}else
{
    this.label4.Text = "Cancelled";
}

MessageBox是同名 WIN32 API 函数的包装器:

int WINAPI MessageBox(
  _In_opt_  HWND hWnd,
  _In_opt_  LPCTSTR lpText,
  _In_opt_  LPCTSTR lpCaption,
  _In_      UINT uType
);

注意:如果您已经有一个窗口句柄/表单,请确保将其作为第一个参数传递给 MessageBox。

于 2013-09-30T11:41:01.613 回答
1

https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form.dialogresult?view=net-5.0

提供显示“确定”和“取消”按钮如何链接的最佳方式您需要手动添加 2 个按钮,例如 button1 和 button2

    // Set the accept button of the form to button1.
      form1.AcceptButton = button1;
     // Set the cancel button of the form to button2.
       form1.CancelButton = button2;

Acceptbutton,button1被认为是OK按钮。CancelButton, button2 被认为是取消按钮。

坦率地说,没有一个答案明确提到这一点。所以,我不得不提出这个答案。

此外,您可以查看 MSDN 文档,

https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form.dialogresult?view=net-5.0

于 2021-09-15T20:01:20.990 回答
0

你想要的是visualbasic命名空间的输入框,是的,你可以在c#中使用它

Microsoft.VisualBasic.Interaction.InputBox

于 2012-09-16T02:57:33.380 回答
0

如果您从基本表单类创建表单,则需要定义一个返回按钮DialogResult属性的按钮。

FileDialog这些在类是 MS 定义形式的MessageBox等中最有用。

于 2012-09-16T03:01:54.797 回答