我有一个非常简单的计数器应用程序,我用 C# 制作。现在我想知道是否可以克隆表单设计和代码,所以有 2 个计数器而不是 1 个。用一个按钮。
他们都必须工作。
我是初学者..所以这就是为什么我问这是否可能。
所以从这里(这是我目前拥有的,没有克隆按钮):
http://i.stack.imgur.com/ASMY4.jpg
对此:
http://i.stack.imgur.com/acluZ.jpg
这是我的代码:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public void counteradd()
{
int current1 = Convert.ToInt32(totaltb.Text);
current1++;
totaltb.Text = Convert.ToString(current1);
}
public void counterreduce()
{
int current2 = Convert.ToInt32(totaltb.Text);
current2--;
totaltb.Text = Convert.ToString(current2);
}
public void counterreset()
{
totaltb.Text = ("0");
}
private void reducebttn_Click(object sender, EventArgs e)
{
counterreduce();
}
private void resetbttn_Click(object sender, EventArgs e)
{
counterreset();
}
private void addbttn_Click(object sender, EventArgs e)
{
counteradd();
}
}