本文介绍了使用按钮clik给出评级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的要求是:
当我点击按钮时,评分计数将以1递增。
My Requirement is:
When iam clicking a button the Rating count will be incremented with 1.
推荐答案
int rating=0;
private void button1_Click(object sender, EventArgs e)
{
rating++;
txtrating.Text = rating.toString();
}
这篇关于使用按钮clik给出评级的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!