我正在开发GST功能,提示用户输入GST百分比,该百分比将自动计算并显示在文本框中。但是,它会继续显示有关txtGST.Text
Dim GSTPrice As Double = txtGst.Text
Dim GrandTotal As Double = TotalPrice + GSTPrice
txtSubTotal.Text = "" & TotalPrice.ToString("f2")
txtGst.Text = "" & GSTPrice.ToString("f2")
txtTotalPrice.Text = "" & GrandTotal.ToString("f2")