展开全部
这个需要退位键吗,你可以借助API sendkey,好像是的,或者最简单的方法:
textbox.text=textbox.text.substring(0,textbox.text.length-1-2);
textbox.text=textbox.text.substring(0,textbox.text.length-1-2);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
个字符?
string test = textbox.Text;
if (!string.IsNullOrEmpty(test))
{
test = test.Substring(0, test.Length - 1);
}
textbox.Text = test;
string test = textbox.Text;
if (!string.IsNullOrEmpty(test))
{
test = test.Substring(0, test.Length - 1);
}
textbox.Text = test;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询