-7

我该如何做一个按钮show textbox,在里面textbox输入名称并按回车键,然后它会创建一个按钮,其名称放在textbox面板中?

4

1 回答 1

0

不幸的是,C# 中没有 InputMessageBox。但是您可以使用 Interaction.InputBox 引用“Microsoft.VisualBasic”和 dann。

using Microsoft.VisualBasic;


  // Click-Event
  private void btn_GetName_Click(object sender, EventArgs e)
  {
        string btnTxt = Interaction.InputBox("Title", "Message", "defaultValue", 10, 10);

        Button button1 = new Button();
        button1.Location = new Point(20, 10);
        button1.Text = btnTxt;
        this.Controls.Add(button1);
  }

这是一个非常简单的任务,请下次使用 Google 或发布一些代码来调试您的错误。

顺便说一句:StackOverflow 中有很多其他解决方案。

于 2013-06-11T07:17:18.107 回答