Delphi:加法和减法
我想在 Delphi 表单上添加和减去数字。我有两个按钮,一个标记为“+”,一个标记为“-”。
如果单击“+”按钮,显然,它需要将一个数字添加到编辑框中显示的预先存在的值中。每点击一次“+”,编辑框中的数字就需要加1。如果点击“-”,编辑框中的值需要减1。该值不能低于预先存在的值,在本例中为 35。
所以我的问题是,Delphi 中的编码如何查找这个,以及如何声明变量?
I want to add and subtract numbers on a Delphi form. I have two buttons, one marked "+" and one marked "-".
If you click on the "+" button, obviously, it needs to add a number to a pre-existing value displayed in an edit box. The number in the edit box needs to be incremented by 1 every time you click on "+". If you click on "-", 1 needs to be subtracted from the value in the edit box. The value can NOT go beneath that of the pre-existing value, which is 35 in this case.
So my question is, how does the coding in Delphi look for this, and how do you declare the variables?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在“-”button.click 事件上添加此代码
在“+”buttonclick 上添加此代码
On your "-" button.click event add this code
on your "+" buttonclick add this
将以下代码写入“+”按钮,“-”按钮并没有真正的不同:
Write following code to your "+" button, "-" is not really different though: