winform计算器退格
时间: 2023-10-03 08:08:05 浏览: 88
winform计算器退格的实现方法是通过捕捉退格按钮的点击事件,在事件处理方法中删除当前显示结果中的最后一个字符。具体的实现代码可以参考以下示例:
private void butback_Click(object sender, EventArgs e)
{
if (i == 1)
{
if (txt1.Text.Length > 0)
{
txt1.Text = txt1.Text.Substring(0, txt1.Text.Length - 1);
}
}
else if (i == 2)
{
if (txt3.Text.Length > 0)
{
txt3.Text = txt3.Text.Substring(0, txt3.Text.Length - 1);
}
}
}
在上述代码中,使用了条件判断来确定当前是第一个操作数还是第二个操作数,然后通过Substring方法删除相应文本框中的最后一个字符。
阅读全文