Visual C 中按钮单击的事件处理
我想通过单击按钮从文本字段检索数据。
I want to retrive the data from a textfield on the click of a button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想通过单击按钮从文本字段检索数据。
I want to retrive the data from a textfield on the click of a button.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
将“Visual C++/CLR/Windows 窗体应用程序”类型的新项目添加到您的解决方案中。
向设计器添加按钮和文本框。
双击设计器上的按钮。这将带您进入表单代码,其中将创建并注册事件处理程序。
在该事件处理程序的主体中,您可以使用设计中的名称访问文本字段(通过右键单击表单设计器中的项目并选择“属性”来查看/修改该名称)。
编辑:
我通常不会将 C++ 用于 Windows 窗体应用程序,但此示例似乎有效:
Add a new project of type "Visual C++/CLR/Windows Forms Application" to your solution.
Add a button and textbox to the designer.
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.
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:
没关系
this is ok