public class product
{
string name;
int singlePrice;
int count;
int totalPrice;
public string Name
{
get { return name; }
set { name = value; }
}
public int SinglePrice
{
get { return singlePrice; }
set { singlePrice = value; }
}
public int Count
{
get { return count; }
set { count = value; }
}
public int TotalPrice
{
get { return totalPrice; }
set { totalPrice = value; }
}
}
windows中:
... // 其他代码
product.TotalPrice = product.SinglePrice * product.Count;
textbox1.text = product.TotalPrice.ToString(); // 显示到一个控件中
这很简单啊,就楼上的那样,你应该是初学者吧。
你还不如说让谁给你个系统得了