在 Visual Basic 中连接按钮和文本框

发布于 2024-07-14 09:54:52 字数 66 浏览 9 评论 0原文

我坚持这个要求我创建一个文本框和一个按钮的练习。 每次按下按钮时,文本框都会加 1。 有人知道如何解决这个问题吗?

I'm stuck on this exercise that asks me to create a text box and a button. Each time the button is pressed it is supposed to add 1 to the text box. Anyone know how to approach this?

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

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

发布评论

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

评论(2

离笑几人歌 2024-07-21 09:54:52
Public Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim i as Integer = int.Parse(TextBox1.Text)
    i += 1
    TextBox1.Text = i.ToString()
End Sub

您还需要保护任何在文本框中按键的尝试或将其设置为 Enabled=true。

Public Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim i as Integer = int.Parse(TextBox1.Text)
    i += 1
    TextBox1.Text = i.ToString()
End Sub

You will also want to protect any attempt to key press in the textbox or set it where Enabled=true.

三生池水覆流年 2024-07-21 09:54:52
  1. 向按钮添加事件处理程序
  2. 触发事件时:
  3. 读取文本框中的文本值
  4. 将其转换为数字
  5. 将数字值加一
  6. 将数字放回文本框
  7. PROFIT :)
  1. Add an event handler to the button
  2. When the event is triggered:
  3. Read the text value in the text box
  4. Convert it to a number
  5. Increase the value of the number by one
  6. Put that number back to the textbox
  7. PROFIT :)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文