计算器中后退功能用c#代码怎么编

用WinForm做的
2025-04-08 09:08:54
推荐回答(1个)
回答1:

string s = textbox.Text;
s = s.SubString(0,s.lenght - 2);
textbox.Text = s;