使用以下代码,我在 TextBox 中逐行删除(0, 39)。现在在最后一个地方有一个金额(1 any Articel 10.00),我想从总金额中扣除。为此,我使用Substring. 但是我得到了错误,因为可能没有解释空格。有没有简单的解决方案?谢谢
private void btnDelete_Click(object sender, EventArgs e)
{
if (TextBox1.Text.Length > 0)
{
txtTotal.Text = (Double.Parse(txtTotal.Text) - Double.Parse(TextBox1.Text.Substring(8, 2))).ToString("0.00");
TextBox1.Text = TextBox1.Text.Remove(0, 39);
}
if (TextBox1.Text.Length == 0)
{
MessageBox.Show("The cart is empty");
收到一只叮咚
相关分类