Visual C 中按钮单击的事件处理

发布于 2024-08-27 00:30:16 字数 25 浏览 8 评论 0原文

我想通过单击按钮从文本字段检索数据。

I want to retrive the data from a textfield on the click of a button.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静水深流 2024-09-03 00:30:16
  1. 将“Visual C++/CLR/Windows 窗体应用程序”类型的新项目添加到您的解决方案中。

  2. 向设计器添加按钮和文本框。

  3. 双击设计器上的按钮。这将带您进入表单代码,其中将创建并注册事件处理程序。

  4. 在该事件处理程序的主体中,您可以使用设计中的名称访问文本字段(通过右键单击表单设计器中的项目并选择“属性”来查看/修改该名称)。

编辑:
我通常不会将 C++ 用于 Windows 窗体应用程序,但此示例似乎有效:

 private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
             System::String^ txt = this->textBox1->Text;
             txt += " augmented";
             this->textBox1->Text = txt;
           }
  1. Add a new project of type "Visual C++/CLR/Windows Forms Application" to your solution.

  2. Add a button and textbox to the designer.

  3. Double-click the button on the designer. This should take you to the form code, where an event handler will have been created and registered for you.

  4. In the body of that event handler, you may access the text field using its name from the design (the name is viewed/modified by right-clicking the item in the form designer and selecting "Properties").

Edit:
I typically don't use C++ for Windows Forms applications, but this example seems to work:

 private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {
             System::String^ txt = this->textBox1->Text;
             txt += " augmented";
             this->textBox1->Text = txt;
           }
半城柳色半声笛 2024-09-03 00:30:16
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)      
{           
    label1 -> Text= "Hello Yashan";  
}

没关系

private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)      
{           
    label1 -> Text= "Hello Yashan";  
}

this is ok

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文