两个tbx.txt相乘问题
public double Multiplication(double price,double weight){
return price * weight;
}
public void Multiplication_1(object sender,EventArgs e)
{
string str单价 = tbx产品单价.Text;
string str重量 = tbx产品重量.Text;
if(str单价!="")
{
try
{
tbx产品总价.Text = Multiplication(double.Parse(str单价),double.Parse(str重量)).ToString();
}
catch
{
MessageBox.Show("请输入正确的数字!");
}
}
}
[ 本帖最后由 gg100200 于 2014-3-13 14:59 编辑 ]